Bug 178369 - [exp-run] switch default version for USE_TCL and USE_TK from 85 to 86
Summary: [exp-run] switch default version for USE_TCL and USE_TK from 85 to 86
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pietro Cerutti
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-05-06 15:20 UTC by Pietro Cerutti
Modified: 2013-05-21 10:06 UTC (History)
0 users

See Also:


Attachments
file.diff (2.99 KB, patch)
2013-05-06 15:20 UTC, Pietro Cerutti
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Pietro Cerutti freebsd_committer freebsd_triage 2013-05-06 15:20:00 UTC
8.6 is the new official branch of Tcl/Tk, released on Dec. 20th, 2012 [1].

I would like to switch the default version of Tcl/Tk when using USE_TCL= yes or USE_TK= yes to 8.6. I need an exp-run to see how many ports it breaks.


[1] http://www.tcl.tk/software/tcltk/8.6.html

Fix: Patch attached with submission follows:
Comment 1 Pietro Cerutti freebsd_committer freebsd_triage 2013-05-06 15:21:37 UTC
Responsible Changed
From-To: freebsd-ports-bugs->portmgr

exp-run request
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2013-05-11 14:15:19 UTC
Responsible Changed
From-To: portmgr->miwi

I'll take it.
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2013-05-21 09:19:53 UTC
Responsible Changed
From-To: miwi->gahr

over to submitter
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-05-21 09:59:15 UTC
Author: gahr
Date: Tue May 21 08:59:02 2013
New Revision: 318663
URL: http://svnweb.freebsd.org/changeset/ports/318663

Log:
  - Switch default version of Tcl/Tk from 8.5 to 8.6
  
  PR:		178369
  Submitted by:	gahr
  Approved by:	portmgr (after exp-run)

Modified:
  head/Mk/bsd.tcl.mk

Modified: head/Mk/bsd.tcl.mk
==============================================================================
--- head/Mk/bsd.tcl.mk	Tue May 21 08:56:40 2013	(r318662)
+++ head/Mk/bsd.tcl.mk	Tue May 21 08:59:02 2013	(r318663)
@@ -13,7 +13,7 @@ Tcl_Include_MAINTAINER=		mm@FreeBSD.org
 #			  via the port or by the user via defined variable try to find the highest
 #			  stable installed version.
 #			  Available values: yes 86+ 85+ 84+ 85 84
-#			  NOTE: - default value 85 is used in case of USE_TCL=yes
+#			  NOTE: - default value 86 is used in case of USE_TCL=yes
 #
 # USE_TCL_BUILD		- Add buildtime dependency on Tcl (tclsh).
 #			  Available values: see USE_TCL
@@ -28,12 +28,12 @@ Tcl_Include_MAINTAINER=		mm@FreeBSD.org
 #			  a specific tclsh version may use this.
 #			  The tclsh wrapper script installs into ${LOCALBASE}/bin/tclsh
 #			  NOTE: - USE_TCL_WRAPPER and USE_TCL can be used together
-#			        - ports using the wrapper should support default Tcl (8.5)
+#			        - ports using the wrapper should support default Tcl (8.6)
 ##
 # INVALID_TCL_VER	- This variable contains a list of Tcl versions not supported by the port.
-#			  This setting is effective only when USE_TCL is set to a range (e.g. 84+)
+#			  This setting is effective only when USE_TCL is set to a range (e.g. 85+)
 # WITH_TCL_VER		- User defined global variable to set Tcl version
-#			  This variable is effective only if USE_TCL is set to a range (e.g. 84+)
+#			  This variable is effective only if USE_TCL is set to a range (e.g. 85+)
 #			  and WITH_TCL_VER points inside that range.
 #			  NOTE: INVALID_TCL_VER takes precedence
 # <UNIQUENAME>_WITH_TCL_VER	- User defined port specific variable to set Tcl version
@@ -46,7 +46,7 @@ Tcl_Include_MAINTAINER=		mm@FreeBSD.org
 #			  stable installed version.
 #			  Avaliable values: yes 86+ 85+ 84+ 85 84
 #			  NOTE: - overrides USE_TCL
-#			        - default value 85 is used in case of USE_TK=yes
+#			        - default value 86 is used in case of USE_TK=yes
 #
 # USE_TK_BUILD		- Add buildtime dependency on Tk (wish).
 #			  Available values: see USE_TK
@@ -61,12 +61,12 @@ Tcl_Include_MAINTAINER=		mm@FreeBSD.org
 #			  a specific wish version may use this.
 #			  The wish wrapper script installs into ${LOCALBASE}/bin/wish
 #			  NOTE: - USE_TK_WRAPPER and USE_TK can be used together.
-#			        - ports using the wrapper should support default Tk (8.5)
+#			        - ports using the wrapper should support default Tk (8.6)
 ##
 # INVALID_TK_VER	- This variable contains a list of Tk versions not supported by the port
-#			  This setting is effective only when USE_TK is set to a range (e.g. 84+)
+#			  This setting is effective only when USE_TK is set to a range (e.g. 85+)
 # WITH_TK_VER		- User defined global variable to set Tk version.
-#			  This variable is effective only if USE_TK is set to a range (e.g. 84+)
+#			  This variable is effective only if USE_TK is set to a range (e.g. 85+)
 #			  and WITH_TK_VER points inside that range.
 #			  NOTE: overrides WITH_TCL_VER.
 # <UNIQUENAME>_WITH_TK_VER	- User defined port specific variable to set Tk version
@@ -157,7 +157,7 @@ INVALID_TCL_VER:=	${INVALID_TK_VER}
 #
 . if defined(USE_TCL)
 
-_TCL_DEFAULT_VERSION=		85
+_TCL_DEFAULT_VERSION=		86
 _TCL_VERSIONS=			86 85 84
 _TCL_RANGE_VERSIONS= 		86+ 85+ 84+
 
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 5 Pietro Cerutti freebsd_committer freebsd_triage 2013-05-21 10:06:39 UTC
State Changed
From-To: open->closed

Committed. Thanks!