commit:     6df1f8ebfe5ef3f6291c52a9003083e75f1e99c8
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Mar 16 11:36:26 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 18:28:23 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df1f8eb

sys-devel/automake: remove unused patches

 .../automake-1.13-perl-escape-curly-bracket.patch  | 37 ----------------------
 .../files/automake-1.9.6-ignore-comments.patch     | 29 -----------------
 .../files/automake-1.9.6-include-dir-prefix.patch  | 31 ------------------
 .../files/automake-1.9.6-infopage-namechange.patch | 33 -------------------
 4 files changed, 130 deletions(-)

diff --git 
a/sys-devel/automake/files/automake-1.13-perl-escape-curly-bracket.patch 
b/sys-devel/automake/files/automake-1.13-perl-escape-curly-bracket.patch
deleted file mode 100644
index a113d09c58c..00000000000
--- a/sys-devel/automake/files/automake-1.13-perl-escape-curly-bracket.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21001
-
-From 34163794a58b5bd91c5d6bd9adf5437571c7a479 Mon Sep 17 00:00:00 2001
-From: Pavel Raiskup <[email protected]>
-Date: Tue, 7 Jul 2015 10:54:24 +0200
-Subject: [PATCH] bin/automake: escape '{' in regexp pattern
-
-Based on perlre(1) documentation:
-.. in Perl v5.26, literal uses of a curly bracket will be required
-to be escaped, say by preceding them with a backslash ("\{" ) or
-enclosing them within square brackets ("[{]") ..
-
-References:
-https://bugzilla.redhat.com/1239379
-
-* bin/automake.in (substitute_ac_subst_variables): Escape the
-occurrence of '{' character.
----
- bin/automake.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/bin/automake.in b/bin/automake.in
-index 0c29184..c294ced 100644
---- a/bin/automake.in
-+++ b/bin/automake.in
-@@ -3898,7 +3898,7 @@ sub substitute_ac_subst_variables_worker
- sub substitute_ac_subst_variables ($)
- {
-   my ($text) = @_;
--  $text =~ s/\${([^ \t=:+{}]+)}/&substitute_ac_subst_variables_worker ($1)/ge;
-+  $text =~ s/\$\{([^ \t=:+{}]+)}/&substitute_ac_subst_variables_worker 
($1)/ge;
-   return $text;
- }
- 
--- 
-2.1.0
-

diff --git a/sys-devel/automake/files/automake-1.9.6-ignore-comments.patch 
b/sys-devel/automake/files/automake-1.9.6-ignore-comments.patch
deleted file mode 100644
index f62987456cf..00000000000
--- a/sys-devel/automake/files/automake-1.9.6-ignore-comments.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-http://bugs.gentoo.org/126388
-
-2006-03-16  Mike Frysinger  <[email protected]>
-
-       * aclocal.in (scan_configure_dep): Ignore ## lines.
-       (scan_file): Remove dnl and # comments.
-
---- aclocal.in
-+++ aclocal.in
-@@ -227,6 +227,8 @@
-   foreach (split ("\n", $contents))
-     {
-       ++$line;
-+      # Ignore `##' lines.
-+      next if /^##/;
-       # Remove comments from current line.
-       s/\bdnl\b.*$//;
-       s/\#.*$//;
-@@ -311,6 +313,10 @@
- 
-       $contents .= $_;
- 
-+      # Remove comments from current line.
-+      s/\bdnl\b.*$//;
-+      s/\#.*$//;
-+
-       while (/$ac_defun_rx/go)
-       {
-         if (! defined $1)

diff --git a/sys-devel/automake/files/automake-1.9.6-include-dir-prefix.patch 
b/sys-devel/automake/files/automake-1.9.6-include-dir-prefix.patch
deleted file mode 100644
index a1d62a78e11..00000000000
--- a/sys-devel/automake/files/automake-1.9.6-include-dir-prefix.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-http://bugs.gentoo.org/107435
-http://lists.gnu.org/archive/html/automake/2005-09/msg00088.html
-
-2005-09-27  Stepan Kasal  <address@hidden>
-
-       * automake.in (handle_single_transform): Direct suffix rule preserves
-         the directory prefix, so the generated object name should contain
-         it, too.
-
---- automake.in        2005-09-17 15:05:39.000000000 +0200
-+++ automake.in        2005-09-27 17:10:47.000000000 +0200
-@@ -1755,6 +1755,10 @@
-             # This is probably the result of a direct suffix rule.
-             # In this case we just accept the rewrite.
-             $object = "$base$extension";
-+            if ($directory ne '')
-+            {
-+                $object = $directory . '/' . $object;
-+            }
-             $linker = '';
-         }
-         else
-@@ -1824,7 +1828,7 @@
- 
-               # For Java, the way we're handling it right now, a
-               # `..' component doesn't make sense.
--                if ($lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
-+                if ($lang && $lang->name eq 'java' && $object =~ 
/(\/|^)\.\.\//)
-                 {
-                   err_am "`$full' should not contain a `..' component";
-                 }

diff --git a/sys-devel/automake/files/automake-1.9.6-infopage-namechange.patch 
b/sys-devel/automake/files/automake-1.9.6-infopage-namechange.patch
deleted file mode 100644
index 7870f65e580..00000000000
--- a/sys-devel/automake/files/automake-1.9.6-infopage-namechange.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- doc/Makefile.in.orig       2005-07-11 00:39:31.000000000 -0400
-+++ doc/Makefile.in    2005-07-11 00:40:46.000000000 -0400
-@@ -187,26 +187,10 @@
-       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- 
- .texi.info:
--      restore=: && backupdir="$(am__leading_dot)am$$$$" && \
--      am__cwd=`pwd` && cd $(srcdir) && \
--      rm -rf $$backupdir && mkdir $$backupdir && \
--      if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
--        for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] 
$(@:.info=).i[0-9][0-9]; do \
--          if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
--        done; \
--      else :; fi && \
--      cd "$$am__cwd"; \
--      if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
--       -o $@ $<; \
--      then \
--        rc=0; \
--        cd $(srcdir); \
--      else \
--        rc=$$?; \
--        cd $(srcdir) && \
--        $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
--      fi; \
--      rm -rf $$backupdir; exit $$rc
-+      @rm -f $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] 
$(@:.info=).i[0-9][0-9]
-+      cd $(srcdir) \
-+              && $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) \
-+              `echo $< | sed 's,.*/,,'`
- 
- .texi.dvi:
-       TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \

Reply via email to