Hello community,

here is the log from the commit of package make for openSUSE:Factory checked in 
at 2014-11-04 17:27:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/make (Old)
 and      /work/SRC/openSUSE:Factory/.make.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "make"

Changes:
--------
--- /work/SRC/openSUSE:Factory/make/make.changes        2014-09-07 
11:11:44.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.make.new/make.changes   2014-11-04 
17:27:22.000000000 +0100
@@ -1,0 +2,14 @@
+Wed Oct 15 22:21:06 UTC 2014 - [email protected]
+
+- make 4.1:
+  * New variables: $(MAKE_TERMOUT) and $(MAKE_TERMERR) are set to
+    non-empty values if stdout or stderr, respectively, are
+    believed to be writing to a terminal.  These variables are
+    exported by default.
+  * Allow a no-text-argument form of the $(file ...) function.
+  * Change the fatal error for mixed explicit and implicit rules
+- refresh for contect changes:
+  * make-library-search-path.diff
+  * make-testcases_timeout.diff
+
+-------------------------------------------------------------------

Old:
----
  make-4.0.tar.bz2
  make-4.0.tar.bz2.sig

New:
----
  make-4.1.tar.bz2
  make-4.1.tar.bz2.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ make.spec ++++++
--- /var/tmp/diff_new_pack.ad99RW/_old  2014-11-04 17:27:23.000000000 +0100
+++ /var/tmp/diff_new_pack.ad99RW/_new  2014-11-04 17:27:23.000000000 +0100
@@ -20,7 +20,7 @@
 Url:            http://www.gnu.org/software/make/make.html
 Provides:       gmake
 PreReq:         %install_info_prereq
-Version:        4.0
+Version:        4.1
 Release:        0
 Summary:        GNU make
 License:        GPL-2.0+
@@ -39,9 +39,9 @@
 
 %prep
 %setup -q
-%patch1 -p0
+%patch1 -p1
 if [ %_lib == lib64 ]; then
-%patch64
+%patch64 -p1
 fi
 
 %build

++++++ make-4.0.tar.bz2 -> make-4.1.tar.bz2 ++++++
++++ 106738 lines of diff (skipped)

++++++ make-library-search-path.diff ++++++
--- /var/tmp/diff_new_pack.ad99RW/_old  2014-11-04 17:27:24.000000000 +0100
+++ /var/tmp/diff_new_pack.ad99RW/_new  2014-11-04 17:27:24.000000000 +0100
@@ -3,10 +3,16 @@
 
 This patch extends to teh search path to /lib64/ and /usr/lib64
 
---- remake.c   2001/12/11 15:59:03     1.1
-+++ remake.c   2001/12/11 16:01:01
-@@ -1252,6 +1252,8 @@
-   static char *dirs[] =
+---
+ remake.c |    2 ++
+ 1 file changed, 2 insertions(+)
+
+Index: make-4.1/remake.c
+===================================================================
+--- make-4.1.orig/remake.c     2014-10-05 17:24:51.000000000 +0100
++++ make-4.1/remake.c  2014-10-15 23:20:42.000000000 +0100
+@@ -1549,6 +1549,8 @@ library_search (const char *lib, FILE_TI
+   static const char *dirs[] =
      {
  #ifndef _AMIGA
 +      "/lib64",

++++++ make-testcases_timeout.diff ++++++
--- /var/tmp/diff_new_pack.ad99RW/_old  2014-11-04 17:27:24.000000000 +0100
+++ /var/tmp/diff_new_pack.ad99RW/_new  2014-11-04 17:27:24.000000000 +0100
@@ -1,46 +1,17 @@
-diff -rNU 20 ../make-4.0-o/tests/test_driver.pl ./tests/test_driver.pl
---- ../make-4.0-o/tests/test_driver.pl 2013-10-09 08:05:39.000000000 +0200
-+++ ./tests/test_driver.pl     2014-03-11 14:08:15.000000000 +0100
-@@ -33,41 +33,41 @@
- 
- # The number of test categories we've run
- $categories_run = 0;
- # The number of test categroies that have passed
- $categories_passed = 0;
- # The total number of individual tests that have been run
- $total_tests_run = 0;
- # The total number of individual tests that have passed
- $total_tests_passed = 0;
- # The number of tests in this category that have been run
- $tests_run = 0;
- # The number of tests in this category that have passed
- $tests_passed = 0;
- 
- 
- # Yeesh.  This whole test environment is such a hack!
+---
+ tests/test_driver.pl |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: make-4.1/tests/test_driver.pl
+===================================================================
+--- make-4.1.orig/tests/test_driver.pl 2014-10-15 23:16:56.000000000 +0100
++++ make-4.1/tests/test_driver.pl      2014-10-15 23:17:23.000000000 +0100
+@@ -49,7 +49,7 @@ $tests_passed = 0;
  $test_passed = 1;
  
- 
  # Timeout in seconds.  If the test takes longer than this we'll fail it.
 -$test_timeout = 5;
 +$test_timeout = 8;
+ $test_timeout = 10 if $^O eq 'VMS';
  
  # Path to Perl
- $perl_name = $^X;
- 
- # %makeENV is the cleaned-out environment.
- %makeENV = ();
- 
- # %extraENV are any extra environment variables the tests might want to set.
- # These are RESET AFTER EVERY TEST!
- %extraENV = ();
- 
- # %origENV is the caller's original environment
- %origENV = %ENV;
- 
- sub resetENV
- {
-   # We used to say "%ENV = ();" but this doesn't work in Perl 5.000
-   # through Perl 5.004.  It was fixed in Perl 5.004_01, but we don't
-   # want to require that here, so just delete each one individually.
-   foreach $v (keys %ENV) {


-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to