summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2014-01-07 10:18:26 +0000
committerLars Wendler <polynomial-c@gentoo.org>2014-01-07 10:18:26 +0000
commit311ab0c9ae9b5f1b2a16ae71902dfa0cbe8aeb02 (patch)
tree57037d43fcf7dcfe02347b53c84ab8a685ff0273 /app-shells/bash/files
parentVersion bump and include a systemd unit file (#497174 by Leho Kraav) (diff)
downloadhistorical-311ab0c9ae9b5f1b2a16ae71902dfa0cbe8aeb02.tar.gz
historical-311ab0c9ae9b5f1b2a16ae71902dfa0cbe8aeb02.tar.bz2
historical-311ab0c9ae9b5f1b2a16ae71902dfa0cbe8aeb02.zip
Removed old versions and files
Package-Manager: portage-2.2.8/cvs/Linux x86_64 Manifest-Sign-Key: 0x981CA6FC
Diffstat (limited to 'app-shells/bash/files')
-rw-r--r--app-shells/bash/files/bash-4.2-extglob-multibyte.patch21
-rw-r--r--app-shells/bash/files/bash-4.2-print-heredoc.patch30
2 files changed, 0 insertions, 51 deletions
diff --git a/app-shells/bash/files/bash-4.2-extglob-multibyte.patch b/app-shells/bash/files/bash-4.2-extglob-multibyte.patch
deleted file mode 100644
index 2389c9c83485..000000000000
--- a/app-shells/bash/files/bash-4.2-extglob-multibyte.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://bugs.gentoo.org/412867
-http://lists.gnu.org/archive/html/bug-bash/2012-04/msg00134.html
-
-From: Andreas Schwab <schwab@linux-m68k.org>
-To: Mike Frysinger <vapier@gentoo.org>
-Cc: bug-bash@gnu.org
-Subject: Re: string replace with multibyte chars and extglob fails with bash-4.2
-
-diff --git a/subst.c b/subst.c
-index 9feaa9c..ebd5138 100644
---- a/subst.c
-+++ b/subst.c
-@@ -4161,7 +4161,7 @@ match_wpattern (wstring, indices, wstrlen, wpat, mtype, sp, ep)
- simple = (wpat[0] != L'\\' && wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'[');
- #if defined (EXTENDED_GLOB)
- if (extended_glob)
-- simple |= (wpat[1] != L'(' || (wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'+' && wpat[0] != L'!' && wpat[0] != L'@')); /*)*/
-+ simple &= (wpat[1] != L'(' || (wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'+' && wpat[0] != L'!' && wpat[0] != L'@')); /*)*/
- #endif
-
- /* If the pattern doesn't match anywhere in the string, go ahead and
diff --git a/app-shells/bash/files/bash-4.2-print-heredoc.patch b/app-shells/bash/files/bash-4.2-print-heredoc.patch
deleted file mode 100644
index cd2f5bbdd337..000000000000
--- a/app-shells/bash/files/bash-4.2-print-heredoc.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-http://lists.gnu.org/archive/html/bug-bash/2011-04/msg00058.html
-http://bugs.gentoo.org/363371
-
-*** ../bash-4.2-patched/print_cmd.c 2010-05-30 18:34:08.000000000 -0400
---- print_cmd.c 2011-04-14 10:43:18.000000000 -0400
-***************
-*** 316,319 ****
---- 317,321 ----
- skip_this_indent++;
- make_command_string_internal (command->value.Subshell->command);
-+ PRINT_DEFERRED_HEREDOCS ("");
- cprintf (" )");
- break;
-***************
-*** 593,596 ****
---- 606,610 ----
- indentation += indentation_amount;
- make_command_string_internal (arith_for_command->action);
-+ PRINT_DEFERRED_HEREDOCS ("");
- semicolon ();
- indentation -= indentation_amount;
-***************
-*** 654,657 ****
---- 668,672 ----
-
- make_command_string_internal (group_command->command);
-+ PRINT_DEFERRED_HEREDOCS ("");
-
- if (inside_function_def)
-