Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/gzip/files/
Date: Sun, 03 Jul 2016 11:57:11
Message-Id: 1467545313.a6cce2167802403319e251f7c3ff32aac645596d.monsieurp@gentoo
1 commit: a6cce2167802403319e251f7c3ff32aac645596d
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jul 1 19:54:01 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 11:28:33 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6cce216
7
8 app-arch/gzip: remove unused patches
9
10 Closes: https://github.com/gentoo/gentoo/pull/1812
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-arch/gzip/files/gzip-1.4-assembler.patch | 52 ----------------------------
15 app-arch/gzip/files/gzip-1.4-no-gets.patch | 22 ------------
16 2 files changed, 74 deletions(-)
17
18 diff --git a/app-arch/gzip/files/gzip-1.4-assembler.patch b/app-arch/gzip/files/gzip-1.4-assembler.patch
19 deleted file mode 100644
20 index 76aade5..0000000
21 --- a/app-arch/gzip/files/gzip-1.4-assembler.patch
22 +++ /dev/null
23 @@ -1,52 +0,0 @@
24 -http://bugs.gentoo.org/309079
25 -http://lists.gnu.org/archive/html/bug-gzip/2010-02/msg00032.html
26 -
27 -From 61af16213a488af3a8e994399ebd0859d390edb6 Mon Sep 17 00:00:00 2001
28 -From: Jim Meyering <meyering@××××××.com>
29 -Date: Sat, 20 Mar 2010 13:05:58 +0100
30 -Subject: [PATCH] use assembly code matcher when possible
31 -
32 -* configure.ac (ASCPPPOST): Backslash-escape "#" in AC_SUBST'd
33 -variable, to keep make from seeing it as a comment-introducer.
34 -Based on a patch by Petr Pisar.
35 -* lib/Makefile.am (match.$(OBJEXT)): Use AM_V_GEN and AM_V_at.
36 -* lib/match.c: Don't include <config.h>.
37 -It would impede configure-time assembler test.
38 -* .x-sc_require_config_h: Exempt lib/match.c from syntax-check.
39 -* .x-sc_require_config_h_first: Likewise.
40 ----
41 - .x-sc_require_config_h | 1 +
42 - .x-sc_require_config_h_first | 1 +
43 - THANKS | 1 +
44 - configure.ac | 2 +-
45 - lib/Makefile.am | 12 ++++++------
46 - lib/match.c | 2 --
47 - 6 files changed, 10 insertions(+), 9 deletions(-)
48 - create mode 100644 .x-sc_require_config_h
49 - create mode 100644 .x-sc_require_config_h_first
50 -
51 ---- a/configure
52 -+++ b/configure
53 -@@ -22588,5 +22588,5 @@
54 -
55 - # cc -E produces incorrect asm files on SVR4, so postprocess it.
56 --ASCPPPOST="sed '/^ *#/d; s,//.*,,; s/% /%/g; s/\\. /./g'"
57 -+ASCPPPOST="sed '/^ *\\#/d; s,//.*,,; s/% /%/g; s/\\. /./g'"
58 -
59 -
60 -diff --git a/lib/match.c b/lib/match.c
61 -index 4ef6128..5dd8d64 100644
62 ---- a/lib/match.c
63 -+++ b/lib/match.c
64 -@@ -28,8 +28,6 @@
65 - * David Mosberger-Tang <davidm@××××××.com>.
66 - */
67 -
68 --#include <config.h>
69 --
70 - /* Preprocess with -DNO_UNDERLINE if your C compiler does not prefix
71 - * external symbols with an underline character '_'.
72 - */
73 ---
74 -1.7.1.1
75 -
76
77 diff --git a/app-arch/gzip/files/gzip-1.4-no-gets.patch b/app-arch/gzip/files/gzip-1.4-no-gets.patch
78 deleted file mode 100644
79 index 6da6e64..0000000
80 --- a/app-arch/gzip/files/gzip-1.4-no-gets.patch
81 +++ /dev/null
82 @@ -1,22 +0,0 @@
83 -hack until gzip pulls a newer gnulib version
84 -
85 -From 66712c23388e93e5c518ebc8515140fa0c807348 Mon Sep 17 00:00:00 2001
86 -From: Eric Blake <eblake@××××××.com>
87 -Date: Thu, 29 Mar 2012 13:30:41 -0600
88 -Subject: [PATCH] stdio: don't assume gets any more
89 -
90 -Gnulib intentionally does not have a gets module, and now that C11
91 -and glibc have dropped it, we should be more proactive about warning
92 -any user on a platform that still has a declaration of this dangerous
93 -interface.
94 -
95 ---- a/lib/stdio.in.h
96 -+++ b/lib/stdio.in.h
97 -@@ -125,7 +125,6 @@
98 - so any use of gets warrants an unconditional warning. Assume it is
99 - always declared, since it is required by C89. */
100 - #undef gets
101 --_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
102 -
103 - #if @GNULIB_FOPEN@
104 - # if @REPLACE_FOPEN@