rpms/tcl/F-8 .cvsignore, 1.20, 1.21 sources, 1.21, 1.22 tcl-8.4.7-path.patch, 1.2, 1.3 tcl-confi.patch, 1.3, 1.4 tcl.spec, 1.63, 1.64

Marcela Mašláňová (mmaslano) fedora-extras-commits at redhat.com
Wed Jan 23 15:00:56 UTC 2008


Author: mmaslano

Update of /cvs/pkgs/rpms/tcl/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv16510

Modified Files:
	.cvsignore sources tcl-8.4.7-path.patch tcl-confi.patch 
	tcl.spec 
Log Message:
update 8.4.17



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/tcl/F-8/.cvsignore,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- .cvsignore	31 Jul 2007 09:54:53 -0000	1.20
+++ .cvsignore	23 Jan 2008 15:00:09 -0000	1.21
@@ -1,2 +1,4 @@
 tcl8.4.15-src.tar.gz
 tcl8.4.15-html.tar.gz
+tcl8.4.17-src.tar.gz
+tcl8.4.17-html.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/tcl/F-8/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources	31 Jul 2007 09:54:53 -0000	1.21
+++ sources	23 Jan 2008 15:00:09 -0000	1.22
@@ -1,2 +1,4 @@
 5e1b71eef1f75a294072aa3218f62b66  tcl8.4.15-src.tar.gz
 0086ef1a2d057ac59c2446c4bc1756d6  tcl8.4.15-html.tar.gz
+d2af2c45189c8c7fd1bfdd2a19b0fa30  tcl8.4.17-src.tar.gz
+a51ccf48125081065ab2acd44b545c88  tcl8.4.17-html.tar.gz

tcl-8.4.7-path.patch:

Index: tcl-8.4.7-path.patch
===================================================================
RCS file: /cvs/pkgs/rpms/tcl/F-8/tcl-8.4.7-path.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tcl-8.4.7-path.patch	26 Sep 2007 07:27:21 -0000	1.2
+++ tcl-8.4.7-path.patch	23 Jan 2008 15:00:09 -0000	1.3
@@ -1,26 +1,24 @@
---- tcl8.4.7/library/init.tcl.patch	2004-05-04 02:40:31.000000000 +0200
-+++ tcl8.4.7/library/init.tcl	2007-07-17 09:56:42.000000000 +0200
-@@ -39,13 +39,17 @@
+diff -up tcl-8.4.17/tcl8.4.17/library/init.tcl.old tcl-8.4.17/tcl8.4.17/library/init.tcl
+--- tcl8.4.17/library/init.tcl.old	2007-07-05 20:03:45.000000000 +0200
++++ tcl8.4.17/library/init.tcl	2008-01-23 15:16:42.000000000 +0100
+@@ -39,13 +39,16 @@ package require -exact Tcl 8.4
  #       On Windows, it is not used
  #	On Macintosh it is "Tool Command Language" in the Extensions folder
  
 -if {![info exists auto_path]} {
 -    if {[info exists env(TCLLIBPATH)]} {
 -	set auto_path $env(TCLLIBPATH)
--    } else {
--	set auto_path ""
--    }
 +if {[info exists env(TCLLIBPATH)]} {
 +    set auto_path $env(TCLLIBPATH)
 +} else {
-+if {[file exists "/usr/lib64/tclX8.3"]} {
-+    set auto_path "/usr/share/tcl8.4 /usr/share /usr/lib64 /usr/lib"
-+} else {
-+    set auto_path ""
++    if {[file exists "/usr/lib64/tclX8.3"]} {
++        set auto_path "/usr/share/tcl8.4 /usr/share /usr/lib64 /usr/lib"
+     } else {
+-	set auto_path ""
++        set auto_path ""
+     }
  }
-+}
-+
 +
  namespace eval tcl {
      variable Dir
-     if {[info library] != ""} {
+     if {[info library] ne ""} {

tcl-confi.patch:

Index: tcl-confi.patch
===================================================================
RCS file: /cvs/pkgs/rpms/tcl/F-8/tcl-confi.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tcl-confi.patch	9 Aug 2007 08:07:35 -0000	1.3
+++ tcl-confi.patch	23 Jan 2008 15:00:09 -0000	1.4
@@ -1,53 +1,31 @@
---- tcl8.4.15/unix/configure.in.confi	2007-05-24 22:40:13.000000000 +0200
-+++ tcl8.4.15/unix/configure.in	2007-08-08 12:50:16.000000000 +0200
-@@ -246,7 +246,7 @@
- 	}], tcl_cv_strstr_unbroken=ok, tcl_cv_strstr_unbroken=broken,
- 	    tcl_cv_strstr_unbroken=broken)])
-     if test $tcl_cv_strstr_unbroken = broken; then
--        LIBOBJS="$LIBOBJS strstr.o"
-+        AC_LIBOBJ([strstr])
-     fi
- fi
- 
-@@ -278,7 +278,7 @@
-     fi
- fi
- if test $tcl_ok = 0; then
--    LIBOBJS="$LIBOBJS strtoul.o"
-+    AC_LIBOBJ([strtoul])
- fi
- 
- #--------------------------------------------------------------------
-@@ -308,7 +308,7 @@
-     fi
- fi
- if test $tcl_ok = 0; then
--    LIBOBJS="$LIBOBJS strtod.o"
-+    AC_LIBOBJ([strtod])
- fi
- 
- #--------------------------------------------------------------------
-@@ -387,7 +387,7 @@
-     AC_CHECK_LIB(inet, strncasecmp, tcl_ok=1, tcl_ok=0)
- fi
- if test "$tcl_ok" = 0; then
--    LIBOBJS="$LIBOBJS strncasecmp.o"
-+    AC_LIBOBJ([strncasecmp])
- fi
- 
- #--------------------------------------------------------------------
-@@ -642,7 +642,7 @@
+diff -up tcl-8.4.17/unix/Makefile.in.old tcl-8.4.17/tcl8.4.17/unix/Makefile.in
+--- tcl-8.4.17/unix/Makefile.in.old	2008-01-23 15:26:16.000000000 +0100
++++ tcl-8.4.17/unix/Makefile.in	2008-01-23 15:27:05.000000000 +0100
+@@ -634,7 +634,7 @@ install-binaries: binaries
+ 	    fi
+ 	@echo "Installing $(LIB_FILE) to $(LIB_INSTALL_DIR)/"
+ 	@@INSTALL_LIB@
+-	@chmod 555 $(LIB_INSTALL_DIR)/$(LIB_FILE)
++	@chmod 755 $(LIB_INSTALL_DIR)/$(LIB_FILE)
+ 	@if test "$(TCL_BUILD_EXP_FILE)" != ""; then \
+ 	    echo "Installing $(TCL_EXP_FILE) to $(LIB_INSTALL_DIR)/"; \
+ 	    $(INSTALL_DATA) $(TCL_BUILD_EXP_FILE) \
+diff -up tcl-8.4.17/unix/configure.in.old tcl-8.4.17/tcl8.4.17/unix/configure.in
+--- tcl-8.4.17/unix/configure.in.old	2008-01-23 15:22:01.000000000 +0100
++++ tcl-8.4.17/unix/configure.in	2008-01-23 15:22:37.000000000 +0100
+@@ -672,7 +672,7 @@ if test "$FRAMEWORK_BUILD" = "1" ; then
  elif test "$prefix" != "$exec_prefix"; then
-     TCL_PACKAGE_PATH="${libdir} ${prefix}/lib"
+     TCL_PACKAGE_PATH="${libdir} ${prefix}/lib ${TCL_PACKAGE_PATH}"
  else
--    TCL_PACKAGE_PATH="${prefix}/lib"
+-    TCL_PACKAGE_PATH="${prefix}/lib ${TCL_PACKAGE_PATH}"
 +    TCL_PACKAGE_PATH="${libdir} ${prefix}/share ${prefix}/share/tcl8.4 ${libdir}/tcl8.4"
  fi
  
  #--------------------------------------------------------------------
---- tcl8.4.15/unix/tcl.m4.confi	2007-05-24 22:40:13.000000000 +0200
-+++ tcl8.4.15/unix/tcl.m4	2007-08-09 07:51:59.000000000 +0200
-@@ -1124,7 +1124,7 @@
+diff -up tcl-8.4.17/unix/tcl.m4.old tcl-8.4.17/tcl8.4.17/unix/tcl.m4
+--- tcl-8.4.17/unix/tcl.m4.old	2008-01-23 15:22:50.000000000 +0100
++++ tcl-8.4.17/unix/tcl.m4	2008-01-23 15:26:04.000000000 +0100
+@@ -1124,7 +1124,7 @@ dnl AC_CHECK_TOOL(AR, ar)
  
  	    # AIX v<=4.1 has some different flags than 4.2+
  	    if test "$system" = "AIX-4.1" -o "`uname -v`" -lt "4" ; then
@@ -56,7 +34,7 @@
  		DL_LIBS="-lld"
  	    fi
  
-@@ -1345,11 +1345,11 @@
+@@ -1345,11 +1345,11 @@ dnl AC_CHECK_TOOL(AR, ar)
  	    #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES -D__NO_MATH_INLINES"
  
  	    if test "$have_dl" = yes; then
@@ -70,7 +48,7 @@
  		LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS}
  	    else
  		AC_CHECK_HEADER(dld.h, [
-@@ -1381,7 +1381,7 @@
+@@ -1381,7 +1381,7 @@ dnl AC_CHECK_TOOL(AR, ar)
  	    # is kind of overkill but it works.
  	    # Disable inlining only when one of the
  	    # files in compat/*.c is being linked in.
@@ -79,23 +57,13 @@
  	        CFLAGS="$CFLAGS -fno-inline"
  	    fi
  
-@@ -2633,7 +2633,7 @@
+@@ -2643,7 +2643,7 @@ AC_DEFUN([SC_BUGGY_STRTOD], [
  		}], tcl_cv_strtod_buggy=ok, tcl_cv_strtod_buggy=buggy,
  		    tcl_cv_strtod_buggy=buggy)])
  	if test "$tcl_cv_strtod_buggy" = buggy; then
 -	    LIBOBJS="$LIBOBJS fixstrtod.o"
-+	    AC_LIBOBJ([fixstrtod])
++		AC_LIBOBJ([fixstrtod])
  	    AC_DEFINE(strtod, fixstrtod)
  	fi
      fi
---- tcl8.4.15/unix/Makefile.in.confi	2007-05-24 22:40:13.000000000 +0200
-+++ tcl8.4.15/unix/Makefile.in	2007-08-08 12:50:16.000000000 +0200
-@@ -628,7 +628,7 @@
- 	    fi
- 	@echo "Installing $(LIB_FILE) to $(LIB_INSTALL_DIR)/"
- 	@@INSTALL_LIB@
--	@chmod 555 $(LIB_INSTALL_DIR)/$(LIB_FILE)
-+	@chmod 755 $(LIB_INSTALL_DIR)/$(LIB_FILE)
- 	@if test "$(TCL_BUILD_EXP_FILE)" != ""; then \
- 	    echo "Installing $(TCL_EXP_FILE) to $(LIB_INSTALL_DIR)/"; \
- 	    $(INSTALL_DATA) $(TCL_BUILD_EXP_FILE) \
+diff -up tcl-8.4.17/library/init.tcl.old tcl-8.4.17/tcl8.4.17/library/init.tcl


Index: tcl.spec
===================================================================
RCS file: /cvs/pkgs/rpms/tcl/F-8/tcl.spec,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- tcl.spec	26 Sep 2007 07:27:21 -0000	1.63
+++ tcl.spec	23 Jan 2008 15:00:09 -0000	1.64
@@ -2,8 +2,8 @@
 
 Summary: Tcl scripting language development environment
 Name: tcl
-Version: %{majorver}.15
-Release: 5%{?dist}
+Version: %{majorver}.17
+Release: 1%{?dist}
 Epoch: 1 
 License: TCL
 Group: Development/Languages
@@ -13,7 +13,6 @@
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Buildrequires: autoconf
 Provides: tcl(abi) = %{majorver}
-##Conflicts: tcldict
 Patch1: tcl-confi.patch
 Patch2: tcl-8.4.7-path.patch
 
@@ -142,6 +141,9 @@
 %doc %{name}%{version}/html/*
 
 %changelog
+* Wed Jan 23 2008 Marcela Maslanova <mmaslano at redhat.com> - 1:8.4.17-1
+- update 8.4.17
+
 * Wed Sep 26 2007 Marcela Maslanova <mmaslano at redhat.com> - 1:8.4.15-5
 - fix of patch - set auto_path was broken
 - Resolves: rhbz#306321




More information about the fedora-extras-commits mailing list