rpms/tcldom/devel tcldom.patch,1.1,1.2 tcldom.spec,1.1,1.2

Michael Thomas (wart) fedora-extras-commits at redhat.com
Thu Jan 12 04:21:44 UTC 2006


Author: wart

Update of /cvs/extras/rpms/tcldom/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30498

Modified Files:
	tcldom.patch tcldom.spec 
Log Message:
Fix quoting bug that is exposed by bash >= 3.1



tcldom.patch:

Index: tcldom.patch
===================================================================
RCS file: /cvs/extras/rpms/tcldom/devel/tcldom.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tcldom.patch	15 Dec 2005 04:58:00 -0000	1.1
+++ tcldom.patch	12 Jan 2006 04:21:43 -0000	1.2
@@ -29,7 +29,7 @@
  namespace eval xmlswitch {
 diff -Naur --exclude '*.swp' tcldom-3.1/src/configure tcldom-3.1.new/src/configure
 --- tcldom-3.1/src/configure	2003-04-04 14:07:50.000000000 -0800
-+++ tcldom-3.1.new/src/configure	2005-11-27 13:50:34.000000000 -0800
++++ tcldom-3.1.new/src/configure	2006-01-11 20:13:39.000000000 -0800
 @@ -1898,10 +1898,12 @@
  
  	    # check in a few common install locations
@@ -44,9 +44,18 @@
  			`ls -d /usr/lib 2>/dev/null` \
  			; do
  		    if test -f "$i/tclConfig.sh" ; then
+@@ -2249,7 +2251,7 @@
+ 	    # results, and the version is kept in special file).
+ 	
+ 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
+-		system=MP-RAS-`awk '{print }' /etc/.relid'`
++		system=MP-RAS-`awk '{print }' /etc/.relid`
+ 	    fi
+ 	    if test "`uname -s`" = "AIX" ; then
+ 		system=AIX-`uname -v`.`uname -r`
 diff -Naur --exclude '*.swp' tcldom-3.1/src-libxml2/configure tcldom-3.1.new/src-libxml2/configure
 --- tcldom-3.1/src-libxml2/configure	2005-11-03 22:36:59.000000000 -0800
-+++ tcldom-3.1.new/src-libxml2/configure	2005-11-27 13:40:37.000000000 -0800
++++ tcldom-3.1.new/src-libxml2/configure	2006-01-11 20:14:10.000000000 -0800
 @@ -1539,10 +1539,12 @@
  
  	    # check in a few common install locations
@@ -61,6 +70,15 @@
  			`ls -d /usr/lib 2>/dev/null` \
  			; do
  		    if test -f "$i/tclConfig.sh" ; then
+@@ -3780,7 +3782,7 @@
+ 	    # results, and the version is kept in special file).
+ 	
+ 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
+-		system=MP-RAS-`awk '{print }' /etc/.relid'`
++		system=MP-RAS-`awk '{print }' /etc/.relid`
+ 	    fi
+ 	    if test "`uname -s`" = "AIX" ; then
+ 		system=AIX-`uname -v`.`uname -r`
 @@ -5330,9 +5332,11 @@
  
  LIBXML2_LIBDIR=""
@@ -90,7 +108,7 @@
      if test -f "$d/libxml2.so" ; then
 diff -Naur --exclude '*.swp' tcldom-3.1/tclconfig/tcl.m4 tcldom-3.1.new/tclconfig/tcl.m4
 --- tcldom-3.1/tclconfig/tcl.m4	2003-12-03 12:18:44.000000000 -0800
-+++ tcldom-3.1.new/tclconfig/tcl.m4	2005-11-27 13:37:00.000000000 -0800
++++ tcldom-3.1.new/tclconfig/tcl.m4	2006-01-11 20:13:52.000000000 -0800
 @@ -73,10 +73,12 @@
  
  	    # check in a few common install locations
@@ -105,3 +123,12 @@
  			`ls -d /usr/lib 2>/dev/null` \
  			; do
  		    if test -f "$i/tclConfig.sh" ; then
+@@ -759,7 +761,7 @@
+ 	    # results, and the version is kept in special file).
+ 	
+ 	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
+-		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
++		system=MP-RAS-`awk '{print $3}' /etc/.relid`
+ 	    fi
+ 	    if test "`uname -s`" = "AIX" ; then
+ 		system=AIX-`uname -v`.`uname -r`


Index: tcldom.spec
===================================================================
RCS file: /cvs/extras/rpms/tcldom/devel/tcldom.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tcldom.spec	15 Dec 2005 04:58:00 -0000	1.1
+++ tcldom.spec	12 Jan 2006 04:21:43 -0000	1.2
@@ -1,7 +1,7 @@
 Summary: TclDOM is a package that provides a DOM binding for the Tcl scripting language
 Name: tcldom
 Version: 3.1
-Release: 2%{?dist}
+Release: 3%{?dist}
 License: BSD
 Group: Development/Libraries
 URL:	http://tclxml.sourceforge.net/
@@ -78,6 +78,8 @@
 %{_libdir}/%{name}_libxml2%{version}/*.a
 
 %changelog
+* Wed Jan 11 2006 Wart <wart at kobold.org> - 3.1-3
+- Fix quoting bug that is exposed by bash >= 3.1
 * Tue Dec 13 2005 Wart <wart at kobold.org> - 3.1-2
 - Update patch to fix version numbers that weren't updated upstream
 * Sun Nov 27 2005 Wart <wart at kobold.org> - 3.1-1




More information about the fedora-extras-commits mailing list