vapier      14/06/17 03:58:19

  Added:                bash-4.3-compat-lvl.patch
                        bash-4.3-parse-time-keyword.patch
  Log:
  Fix plugins handling and add some fixes from upstream.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  Changes    Path
1.1                  app-shells/bash/files/bash-4.3-compat-lvl.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-compat-lvl.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-compat-lvl.patch?rev=1.1&content-type=text/plain

Index: bash-4.3-compat-lvl.patch
===================================================================
https://lists.gnu.org/archive/html/bug-bash/2014-06/msg00046.html

--- a/builtins/shopt.def
+++ b/builtins/shopt.def
@@ -160,7 +160,7 @@ static struct {
   { "compat32", &shopt_compat32, set_compatibility_level },
   { "compat40", &shopt_compat40, set_compatibility_level },
   { "compat41", &shopt_compat41, set_compatibility_level },
-  { "compat42", &shopt_compat41, set_compatibility_level },
+  { "compat42", &shopt_compat42, set_compatibility_level },
 #if defined (READLINE)
   { "complete_fullquote", &complete_fullquote, (shopt_set_func_t *)NULL},
   { "direxpand", &dircomplete_expand, shopt_set_complete_direxpand },



1.1                  app-shells/bash/files/bash-4.3-parse-time-keyword.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-parse-time-keyword.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/files/bash-4.3-parse-time-keyword.patch?rev=1.1&content-type=text/plain

Index: bash-4.3-parse-time-keyword.patch
===================================================================
https://lists.gnu.org/archive/html/bug-bash/2014-06/msg00034.html

*** ../bash-4.3-patched/parse.y 2014-04-07 11:56:12.000000000 -0400
--- parse.y     2014-06-11 10:25:53.000000000 -0400
***************
*** 2789,2797 ****
      case OR_OR:
      case '&':
      case DO:
      case THEN:
      case ELSE:
      case '{':         /* } */
!     case '(':         /* ) */
      case BANG:                /* ! time pipeline */
      case TIME:                /* time time pipeline */
--- 2789,2802 ----
      case OR_OR:
      case '&':
+     case WHILE:
      case DO:
+     case UNTIL:
+     case IF:
      case THEN:
+     case ELIF:
      case ELSE:
      case '{':         /* } */
!     case '(':         /* )( */
!     case ')':         /* only valid in case statement */
      case BANG:                /* ! time pipeline */
      case TIME:                /* time time pipeline */




Reply via email to