[arch-commits] Commit in bash/trunk (4 files)

Bartłomiej Piotrowski bpiotrowski at nymeria.archlinux.org
Tue Apr 15 06:04:43 UTC 2014


    Date: Tuesday, April 15, 2014 @ 08:04:42
  Author: bpiotrowski
Revision: 210570

upgpkg: bash 4.3.011-1

new upstream release

Modified:
  bash/trunk/PKGBUILD
Deleted:
  bash/trunk/bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch
  bash/trunk/bash-4.3-debug-trap.patch
  bash/trunk/bash-4.3-test-nameref.patch

--------------------------------------------------------+
 PKGBUILD                                               |   10 ++++-
 bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch |   12 ------
 bash-4.3-debug-trap.patch                              |   30 ---------------
 bash-4.3-test-nameref.patch                            |   25 ------------
 4 files changed, 8 insertions(+), 69 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-04-15 05:49:04 UTC (rev 210569)
+++ PKGBUILD	2014-04-15 06:04:42 UTC (rev 210570)
@@ -5,9 +5,9 @@
 
 pkgname=bash
 _basever=4.3
-_patchlevel=008
+_patchlevel=011
 pkgver=$_basever.$_patchlevel
-pkgrel=2
+pkgrel=1
 pkgdesc='The GNU Bourne Again shell'
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -94,4 +94,10 @@
          'dcf471d222bcd83283d3094e6ceeb6f8'
          'SKIP'
          'f7553416646dc26c266454c78a916d36'
+         'SKIP'
+         '7e73d2151f4064b484a4ba2c4b09960e'
+         'SKIP'
+         'a275463d21735bb6d7161f9fbd320d8f'
+         'SKIP'
+         'c17103ee20420d77e46b224c8d3fceda'
          'SKIP')

Deleted: bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch
===================================================================
--- bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch	2014-04-15 05:49:04 UTC (rev 210569)
+++ bash-4.2-do-not-use-memcpy-on-overlapping-memory.patch	2014-04-15 06:04:42 UTC (rev 210570)
@@ -1,12 +0,0 @@
-diff -Naur bash-4.2-orig/general.c bash-4.2/general.c
---- bash-4.2-orig/general.c	2010-12-13 06:06:27.000000000 +1000
-+++ bash-4.2/general.c	2013-08-25 21:52:36.681484302 +1000
-@@ -766,7 +766,7 @@
-   *nbeg++ = '.';
- 
-   nlen = nend - ntail;
--  memcpy (nbeg, ntail, nlen);
-+  memmove (nbeg, ntail, nlen);
-   nbeg[nlen] = '\0';
- 
-   return name;

Deleted: bash-4.3-debug-trap.patch
===================================================================
--- bash-4.3-debug-trap.patch	2014-04-15 05:49:04 UTC (rev 210569)
+++ bash-4.3-debug-trap.patch	2014-04-15 06:04:42 UTC (rev 210570)
@@ -1,30 +0,0 @@
-*** ../bash-4.3/trap.c	2014-02-05 10:03:21.000000000 -0500
---- trap.c	2014-02-28 09:51:43.000000000 -0500
-***************
-*** 921,925 ****
-  
-  #if defined (JOB_CONTROL)
-!       save_pipeline (1);	/* XXX only provides one save level */
-  #endif
-  
---- 921,926 ----
-  
-  #if defined (JOB_CONTROL)
-!       if (sig != DEBUG_TRAP)	/* run_debug_trap does this */
-! 	save_pipeline (1);	/* XXX only provides one save level */
-  #endif
-  
-***************
-*** 941,945 ****
-  
-  #if defined (JOB_CONTROL)
-!       restore_pipeline (1);
-  #endif
-  
---- 942,947 ----
-  
-  #if defined (JOB_CONTROL)
-!       if (sig != DEBUG_TRAP)	/* run_debug_trap does this */
-! 	restore_pipeline (1);
-  #endif
-  

Deleted: bash-4.3-test-nameref.patch
===================================================================
--- bash-4.3-test-nameref.patch	2014-04-15 05:49:04 UTC (rev 210569)
+++ bash-4.3-test-nameref.patch	2014-04-15 06:04:42 UTC (rev 210570)
@@ -1,25 +0,0 @@
-*** ../bash-4.3/test.c	2014-02-04 16:52:58.000000000 -0500
---- test.c	2014-02-28 21:22:44.000000000 -0500
-***************
-*** 647,652 ****
-  
-      case 'R':
-!       v = find_variable (arg);
-!       return (v && invisible_p (v) == 0 && var_isset (v) && nameref_p (v) ? TRUE : FALSE);
-      }
-  
---- 647,652 ----
-  
-      case 'R':
-!       v = find_variable_noref (arg);
-!       return ((v && invisible_p (v) == 0 && var_isset (v) && nameref_p (v)) ? TRUE : FALSE);
-      }
-  
-***************
-*** 724,727 ****
---- 724,728 ----
-      case 'u': case 'v': case 'w': case 'x': case 'z':
-      case 'G': case 'L': case 'O': case 'S': case 'N':
-+     case 'R':
-        return (1);
-      }




More information about the arch-commits mailing list