[packages/bash/df-test2] use df to fetch sources. again

glen glen at pld-linux.org
Tue Apr 8 21:02:47 CEST 2014


commit 352e61347d528856dfc119254d476c545e2e19da
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Tue Apr 8 22:02:27 2014 +0300

    use df to fetch sources. again

 bash43-001 |  58 -------------------
 bash43-002 |  62 --------------------
 bash43-003 |  48 ----------------
 bash43-004 |  47 ----------------
 bash43-005 |  63 ---------------------
 bash43-006 |  48 ----------------
 bash43-007 |  50 ----------------
 bash43-008 | 188 -------------------------------------------------------------
 sources    |  53 +++--------------
 9 files changed, 8 insertions(+), 609 deletions(-)
---
diff --git a/bash43-001 b/bash43-001
deleted file mode 100644
index ea1c6b2..0000000
--- a/bash43-001
+++ /dev/null
@@ -1,58 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-001
-
-Bug-Reported-by:	NBaH <nbah at sfr.fr>
-Bug-Reference-ID:	<ler0b5$iu9$1 at speranza.aioe.org>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-02/msg00092.html
-
-Bug-Description:
-
-A missing check for a valid option prevented `test -R' from working.  There
-is another problem that causes bash to look up the wrong variable name when
-processing the argument to `test -R'.
-
-Patch (apply with `patch -p0'):
-
-*** ../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);
-      }
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 0
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 1
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-002 b/bash43-002
deleted file mode 100644
index 735b7b8..0000000
--- a/bash43-002
+++ /dev/null
@@ -1,62 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-002
-
-Bug-Reported-by:	Moe Tunes <moetunes42 at gmail.com>
-Bug-Reference-ID:	<53103F49.3070100 at gmail.com>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-02/msg00086.html
-
-Bug-Description:
-
-A change to save state while running the DEBUG trap caused pipelines to hang
-on systems which need process group synchronization while building pipelines.
-
-Patch (apply with `patch -p0'):
-
-*** ../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
-  
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 1
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 2
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-003 b/bash43-003
deleted file mode 100644
index 0f32f41..0000000
--- a/bash43-003
+++ /dev/null
@@ -1,48 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-003
-
-Bug-Reported-by:	Anatol Pomozov <anatol.pomozov at gmail.com>
-Bug-Reference-ID:	<CAOMFOmXy3mT2So5GQ5F-smCVArQuAeBwZ2QKzgCtMeXJoDeYOQ at mail.gmail.com>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-readline/2014-03/msg00010.html
-
-Bug-Description:
-
-When in callback mode, some readline commands can cause readline to seg
-fault by passing invalid contexts to callback functions.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/lib/readline/readline.c	2013-10-28 14:58:06.000000000 -0400
---- lib/readline/readline.c	2014-03-10 14:15:02.000000000 -0400
-***************
-*** 745,749 ****
-  
-    RL_CHECK_SIGNALS ();
-!   if (r == 0)			/* success! */
-      {
-        _rl_keyseq_chain_dispose ();
---- 745,750 ----
-  
-    RL_CHECK_SIGNALS ();
-!   /* We only treat values < 0 specially to simulate recursion. */
-!   if (r >= 0 || (r == -1 && (cxt->flags & KSEQ_SUBSEQ) == 0))	/* success! or failure! */
-      {
-        _rl_keyseq_chain_dispose ();
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 2
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 3
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-004 b/bash43-004
deleted file mode 100644
index 010f04a..0000000
--- a/bash43-004
+++ /dev/null
@@ -1,47 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-004
-
-Bug-Reported-by:	Daan van Rossum <daan at flash.uchicago.edu>
-Bug-Reference-ID:	<20140307072523.GA14250 at flash.uchicago.edu>
-Bug-Reference-URL:	
-
-Bug-Description:
-
-The `.' command in vi mode cannot undo multi-key commands beginning with
-`c', `d', and `y' (command plus motion specifier).
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/lib/readline/readline.c	2013-10-28 14:58:06.000000000 -0400
---- lib/readline/readline.c	2014-03-07 15:20:33.000000000 -0500
-***************
-*** 965,969 ****
-    if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
-        key != ANYOTHERKEY &&
-!       rl_key_sequence_length == 1 &&	/* XXX */
-        _rl_vi_textmod_command (key))
-      _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
---- 965,969 ----
-    if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
-        key != ANYOTHERKEY &&
-!       _rl_dispatching_keymap == vi_movement_keymap &&
-        _rl_vi_textmod_command (key))
-      _rl_vi_set_last (key, rl_numeric_arg, rl_arg_sign);
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 3
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 4
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-005 b/bash43-005
deleted file mode 100644
index bcd4069..0000000
--- a/bash43-005
+++ /dev/null
@@ -1,63 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-005
-
-Bug-Reported-by:	David Sines <dave.gma at googlemail.com>
-Bug-Reference-ID:	<CAO3BAa_CK_Rgkhdfzs+NJ4KFYdB9qW3pvXQK0xLCi6GMmDU8bw at mail.gmail.com>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-03/msg00037.html
-
-Bug-Description:
-
-When in Posix mode, bash did not correctly interpret the ANSI-C-style
-$'...' quoting mechanism when performing pattern substitution word
-expansions within double quotes.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/parse.y	2014-02-11 09:42:10.000000000 -0500
---- parse.y	2014-03-07 20:57:15.000000000 -0500
-***************
-*** 3399,3403 ****
-           unescaped double-quotes or single-quotes, if any, shall occur." */
-        /* This was changed in Austin Group Interp 221 */
-!       if MBTEST(posixly_correct && shell_compatibility_level > 41 && dolbrace_state != DOLBRACE_QUOTE && (flags & P_DQUOTE) && (flags & P_DOLBRACE) && ch == '\'')
-  	continue;
-  
---- 3399,3403 ----
-           unescaped double-quotes or single-quotes, if any, shall occur." */
-        /* This was changed in Austin Group Interp 221 */
-!       if MBTEST(posixly_correct && shell_compatibility_level > 41 && dolbrace_state != DOLBRACE_QUOTE && dolbrace_state != DOLBRACE_QUOTE2 && (flags & P_DQUOTE) && (flags & P_DOLBRACE) && ch == '\'')
-  	continue;
-  
-*** ../bash-4.3/y.tab.c	2014-02-11 10:57:47.000000000 -0500
---- y.tab.c	2014-03-28 10:41:15.000000000 -0400
-***************
-*** 5711,5715 ****
-           unescaped double-quotes or single-quotes, if any, shall occur." */
-        /* This was changed in Austin Group Interp 221 */
-!       if MBTEST(posixly_correct && shell_compatibility_level > 41 && dolbrace_state != DOLBRACE_QUOTE && (flags & P_DQUOTE) && (flags & P_DOLBRACE) && ch == '\'')
-  	continue;
-  
---- 5711,5715 ----
-           unescaped double-quotes or single-quotes, if any, shall occur." */
-        /* This was changed in Austin Group Interp 221 */
-!       if MBTEST(posixly_correct && shell_compatibility_level > 41 && dolbrace_state != DOLBRACE_QUOTE && dolbrace_state != DOLBRACE_QUOTE2 && (flags & P_DQUOTE) && (flags & P_DOLBRACE) && ch == '\'')
-  	continue;
-  
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 4
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 5
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-006 b/bash43-006
deleted file mode 100644
index 24ff057..0000000
--- a/bash43-006
+++ /dev/null
@@ -1,48 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-006
-
-Bug-Reported-by:	Eduardo A . Bustamante Lopez <dualbus at gmail.com>
-Bug-Reference-ID:	<20140228170013.GA16015 at dualbus.me>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-02/msg00091.html
-
-Bug-Description:
-
-A shell that started with job control active but was not interactive left
-the terminal in the wrong process group when exiting, causing its parent
-shell to get a stop signal when it attempted to read from the terminal.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/jobs.c	2014-01-10 09:05:34.000000000 -0500
---- jobs.c	2014-03-02 18:05:09.000000000 -0500
-***************
-*** 4375,4379 ****
-  end_job_control ()
-  {
-!   if (interactive_shell)		/* XXX - should it be interactive? */
-      {
-        terminate_stopped_jobs ();
---- 4375,4379 ----
-  end_job_control ()
-  {
-!   if (interactive_shell || job_control)		/* XXX - should it be just job_control? */
-      {
-        terminate_stopped_jobs ();
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 5
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 6
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-007 b/bash43-007
deleted file mode 100644
index 0d62c9e..0000000
--- a/bash43-007
+++ /dev/null
@@ -1,50 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-007
-
-Bug-Reported-by:	geir.hauge at gmail.com
-Bug-Reference-ID:	<20140318093650.B181C1C5B0B at gina.itea.ntnu.no>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-03/msg00095.html
-
-Bug-Description:
-
-Using compound assignments for associative arrays like
-
-assoc=( [x]= [y]=bar )
-
-left the value corresponding to the key `x' NULL.  This caused subsequent
-lookups to interpret it as unset.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/arrayfunc.c	2013-08-02 16:19:59.000000000 -0400
---- arrayfunc.c	2014-03-18 11:08:15.000000000 -0400
-***************
-*** 598,601 ****
---- 598,606 ----
-  	{
-  	  val = expand_assignment_string_to_string (val, 0);
-+ 	  if (val == 0)
-+ 	    {
-+ 	      val = (char *)xmalloc (1);
-+ 	      val[0] = '\0';	/* like do_assignment_internal */
-+ 	    }
-  	  free_val = 1;
-  	}
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 6
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 7
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/bash43-008 b/bash43-008
deleted file mode 100644
index 0ae7c95..0000000
--- a/bash43-008
+++ /dev/null
@@ -1,188 +0,0 @@
-			     BASH PATCH REPORT
-			     =================
-
-Bash-Release:	4.3
-Patch-ID:	bash43-008
-
-Bug-Reported-by:	Stephane Chazelas <stephane.chazelas at gmail.com>
-Bug-Reference-ID:	<20140318135901.GB22158 at chaz.gmail.com>
-Bug-Reference-URL:	http://lists.gnu.org/archive/html/bug-bash/2014-03/msg00098.html
-
-Bug-Description:
-
-Some extended glob patterns incorrectly matched filenames with a leading
-dot, regardless of the setting of the `dotglob' option.
-
-Patch (apply with `patch -p0'):
-
-*** ../bash-4.3/lib/glob/gmisc.c	2013-10-28 14:45:25.000000000 -0400
---- lib/glob/gmisc.c	2014-03-19 09:16:08.000000000 -0400
-***************
-*** 211,214 ****
---- 211,215 ----
-      case '!':
-      case '@':
-+     case '?':
-        return (pat[1] == LPAREN);
-      default:
-*** ../bash-4.3/lib/glob/glob.c	2014-01-31 21:43:51.000000000 -0500
---- lib/glob/glob.c	2014-03-20 09:01:26.000000000 -0400
-***************
-*** 180,202 ****
-       int flags;
-  {
-!   char *pp, *pe, *t;
-!   int n, r;
-  
-    pp = pat + 2;
-!   pe = pp + strlen (pp) - 1;	/*(*/
-!   if (*pe != ')')
-!     return 0;
-!   if ((t = strchr (pp, '|')) == 0)	/* easy case first */
-      {
-        *pe = '\0';
-        r = skipname (pp, dname, flags);	/*(*/
-        *pe = ')';
-        return r;
-      }
-    while (t = glob_patscan (pp, pe, '|'))
-      {
-        n = t[-1];
-        t[-1] = '\0';
-        r = skipname (pp, dname, flags);
-        t[-1] = n;
-        if (r == 0)	/* if any pattern says not skip, we don't skip */
---- 180,215 ----
-       int flags;
-  {
-!   char *pp, *pe, *t, *se;
-!   int n, r, negate;
-  
-+   negate = *pat == '!';
-    pp = pat + 2;
-!   se = pp + strlen (pp) - 1;		/* end of string */
-!   pe = glob_patscan (pp, se, 0);	/* end of extglob pattern (( */
-!   /* we should check for invalid extglob pattern here */
-!   /* if pe != se we have more of the pattern at the end of the extglob
-!      pattern. Check the easy case first ( */
-!   if (pe == se && *pe == ')' && (t = strchr (pp, '|')) == 0)
-      {
-        *pe = '\0';
-+ #if defined (HANDLE_MULTIBYTE)
-+       r = mbskipname (pp, dname, flags);
-+ #else
-        r = skipname (pp, dname, flags);	/*(*/
-+ #endif
-        *pe = ')';
-        return r;
-      }
-+ 
-+   /* check every subpattern */
-    while (t = glob_patscan (pp, pe, '|'))
-      {
-        n = t[-1];
-        t[-1] = '\0';
-+ #if defined (HANDLE_MULTIBYTE)
-+       r = mbskipname (pp, dname, flags);
-+ #else
-        r = skipname (pp, dname, flags);
-+ #endif
-        t[-1] = n;
-        if (r == 0)	/* if any pattern says not skip, we don't skip */
-***************
-*** 205,219 ****
-      }	/*(*/
-  
-!   if (pp == pe)		/* glob_patscan might find end of pattern */
-      return r;
-  
-!   *pe = '\0';
-! #  if defined (HANDLE_MULTIBYTE)
-!   r = mbskipname (pp, dname, flags);	/*(*/
-! #  else
-!   r = skipname (pp, dname, flags);	/*(*/
-! #  endif
-!   *pe = ')';
-!   return r;
-  }
-  #endif
---- 218,227 ----
-      }	/*(*/
-  
-!   /* glob_patscan might find end of pattern */
-!   if (pp == se)
-      return r;
-  
-!   /* but if it doesn't then we didn't match a leading dot */
-!   return 0;
-  }
-  #endif
-***************
-*** 278,289 ****
-  {
-  #if EXTENDED_GLOB
-!   wchar_t *pp, *pe, *t, n;
-!   int r;
-  
-    pp = pat + 2;
-!   pe = pp + wcslen (pp) - 1;	/*(*/
-!   if (*pe != L')')
-!     return 0;
-!   if ((t = wcschr (pp, L'|')) == 0)
-      {
-        *pe = L'\0';
---- 286,298 ----
-  {
-  #if EXTENDED_GLOB
-!   wchar_t *pp, *pe, *t, n, *se;
-!   int r, negate;
-  
-+   negate = *pat == L'!';
-    pp = pat + 2;
-!   se = pp + wcslen (pp) - 1;	/*(*/
-!   pe = glob_patscan_wc (pp, se, 0);
-! 
-!   if (pe == se && *pe == ')' && (t = wcschr (pp, L'|')) == 0)
-      {
-        *pe = L'\0';
-***************
-*** 292,295 ****
---- 301,306 ----
-        return r;
-      }
-+ 
-+   /* check every subpattern */
-    while (t = glob_patscan_wc (pp, pe, '|'))
-      {
-***************
-*** 306,313 ****
-      return r;
-  
-!   *pe = L'\0';
-!   r = wchkname (pp, dname);	/*(*/
-!   *pe = L')';
-!   return r;
-  #else
-    return (wchkname (pat, dname));
---- 317,322 ----
-      return r;
-  
-!   /* but if it doesn't then we didn't match a leading dot */
-!   return 0;
-  #else
-    return (wchkname (pat, dname));
-*** ../bash-4.3/patchlevel.h	2012-12-29 10:47:57.000000000 -0500
---- patchlevel.h	2014-03-20 20:01:28.000000000 -0400
-***************
-*** 26,30 ****
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 7
-  
-  #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
-     looks for to find the patch level (for the sccs version string). */
-  
-! #define PATCHLEVEL 8
-  
-  #endif /* _PATCHLEVEL_H_ */
diff --git a/sources b/sources
index 1889f6b..d7d032b 100644
--- a/sources
+++ b/sources
@@ -1,45 +1,8 @@
-1100bc1dda2cdc06ac44d7e5d17864a3 *bash42-001
-30e7948079921d3261efcc6a40722135 *bash42-002
-9ea06decec43a198f3d7cf29acc602f8 *bash42-003
-fb48f6134d7b013135929476aa0c250c *bash42-004
-e70e45de33426b38153b390be0dbbcd4 *bash42-005
-ce4e5c484993705b27daa151eca242c2 *bash42-006
-88d1f96db29461767602e2546803bda7 *bash42-007
-24c574bf6d6a581e300823d9c1276af6 *bash42-008
-4c5835f2fbab36c4292bb334977e5b6d *bash42-009
-0a51602b535ef661ee707be6c8bdb373 *bash42-010
-58deacf3d57cbd75575444ff6a3b0806 *bash42-011
-72d5059820015231483bb7415d09e9db *bash42-012
-608336ebe215984ef126e3c29d2d3409 *bash42-013
-ed19da878e3f630834c62b9d9dcc6fce *bash42-014
-2d07daba0b8ca8f876d2aa052ff594b4 *bash42-015
-53d246537e1fffd1aaa02ba5c056211c *bash42-016
-304fd129a58fee2d8a34f8b4704db0aa *bash42-017
-6921a0b4228fe89b6537a5c29f027c89 *bash42-018
-1195d85447f3d048d2c9bcd075fa765c *bash42-019
-b09000bba08da6ac753124593850cdf7 *bash42-020
-09d3f96a16b881334cfaee0cf320b47e *bash42-021
-597bf71a2aac6feb510b7505cdd3d4f7 *bash42-022
-3fab459b4e09daea529cacad025b13b3 *bash42-023
-4ad8d11e72afc6090e701073ff034cf4 *bash42-024
-c7d2493e44490f01dd20bdc8feb0a6a7 *bash42-025
-9f19c199dd8d1fa9254eebe738759272 *bash42-026
-a6ed82daf034587aee2f2581ba5fe829 *bash42-027
-da9265aa2527fd4a7481baa3e0550287 *bash42-028
-ec444d229e8899fbaaf6fc7de2d82ae6 *bash42-029
-b4bc1c4dc1b508ff9cdfc44f1a5039b5 *bash42-030
-89390ff6a3c2ef7e09dd4b8b097a8e56 *bash42-031
-eee08003395c417f677d1a4bf8c548ee *bash42-032
-2fe070dd6d75d8ff16f269184a16e9c4 *bash42-033
-4e610506c1711bf3483b965800ac3d5d *bash42-034
-7cd9bfdf7cbfd45274d07620ee94c8d9 *bash42-035
-9c3142956064d175a880bcb186e51ef9 *bash42-036
-c10692f447d4966c879f8fb8d7c8ebc9 *bash42-037
-9ef3c308cde413e95866c1266cfb4e98 *bash42-038
-cd48f57a404498d4e5c73a3501c4b1a5 *bash42-039
-00a2371b6c05acbfce6bc850c6d982f8 *bash42-040
-7bc4942a66ca4024ee964db7ede07896 *bash42-041
-1cf7701017ebfc8e129de92c8f8b798c *bash42-042
-9e61168fca692d8d1a733c389a63712e *bash42-043
-b4b11d64b45ea9ec50dcc74c6c3861f6 *bash42-044
-1661bcc83c4715f54368877452ff2247 *bash42-045
+1ab682b4e36afa4cf1b426aa7ac81c0d  bash43-001
+8fc22cf50ec85da00f6af3d66f7ddc1b  bash43-002
+a41728eca78858758e26b5dea64ae506  bash43-003
+bf8d53d227829d67235927689a03cc7a  bash43-004
+c0c00935c8b8ffff76e8ab77e7be7d15  bash43-005
+6f01e364cd092faa28dd7119f47ddb5f  bash43-006
+dcf471d222bcd83283d3094e6ceeb6f8  bash43-007
+f7553416646dc26c266454c78a916d36  bash43-008
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/bash.git/commitdiff/352e61347d528856dfc119254d476c545e2e19da



More information about the pld-cvs-commit mailing list