rpms/dejagnu/F-12 dejagnu-1.4.4-utils-speedup.patch, NONE, 1.1 dejagnu.spec, 1.14, 1.15

Jiří Moskovčák jmoskovc at fedoraproject.org
Fri Jan 22 09:50:27 UTC 2010


Author: jmoskovc

Update of /cvs/extras/rpms/dejagnu/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv29555

Modified Files:
	dejagnu.spec 
Added Files:
	dejagnu-1.4.4-utils-speedup.patch 
Log Message:
added utlis speedup patch
Resolves: #557564


dejagnu-1.4.4-utils-speedup.patch:
 utils.exp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- NEW FILE dejagnu-1.4.4-utils-speedup.patch ---
--- dejagnu-1.4.4/lib/utils.exp	2009-10-16 12:58:38.000000000 +0200
+++ dejagnu-1.4.4/lib/utils.exp	2010-01-21 21:12:54.144855458 +0100
@@ -106,7 +106,7 @@ proc find { rootdir pattern } {
     foreach i $dirs {
 	verbose "Looking in $i" 3
 	foreach match [glob -nocomplain $i/$pattern] {
-	    if ![file isdirectory $match] {
+	    if {![file isdirectory $match]} {
 		lappend files $match
 		verbose "Adding $match to file list" 3
 	    }
@@ -216,7 +216,7 @@ proc prune { list pattern } {
     set tmp {}
     foreach i $list {
 	verbose "Checking pattern \"$pattern\" against $i" 3
-	if ![string match $pattern $i] {
+	if {![string match $pattern $i]} {
 	    lappend tmp $i
 	} else {
 	    verbose "Removing element $i from list" 3


Index: dejagnu.spec
===================================================================
RCS file: /cvs/extras/rpms/dejagnu/F-12/dejagnu.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -p -r1.14 -r1.15
--- dejagnu.spec	16 Oct 2009 10:54:13 -0000	1.14
+++ dejagnu.spec	22 Jan 2010 09:50:27 -0000	1.15
@@ -1,7 +1,7 @@
 Summary: A front end for testing other programs
 Name: dejagnu
 Version: 1.4.4
-Release: 16%{?dist}
+Release: 17%{?dist}
 Epoch: 1
 License: GPLv2+
 Source: ftp://ftp.gnu.org/gnu/dejagnu/dejagnu-%{version}.tar.gz
@@ -15,6 +15,7 @@ BuildRequires: expect screen texinfo
 Patch1: dejagnu-1.4.4-smp-1.patch
 Patch3: dejagnu-1.4.4-testsuite.patch
 Patch4: dejagnu-1.4.4-runtest.patch
+Patch5: dejagnu-1.4.4-utils-speedup.patch
 
 %description
 DejaGnu is an Expect/Tcl based framework for testing other programs.
@@ -29,6 +30,7 @@ into software development).
 %patch1 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
 %configure -v
@@ -78,6 +80,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_infodir}/*
 
 %changelog
+* Fri Jan 22 2010 Jiri Moskovcak <jmoskovc at redhat.com> - 1.4.4-17
+- added utils speedup patch from jakub at redhat.com
+- Resolves: #557564
+
 * Fri Oct 16 2009 Jiri Moskovcak <jmoskovc at redhat.com> - 1.4.4-16
 - fixed installation with --excludedocs rhbz#515949
 



More information about the scm-commits mailing list