diff options
author | David Seifert <soap@gentoo.org> | 2021-05-23 14:14:14 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-23 14:14:14 +0200 |
commit | 72e3f286ea1d1f001d6b10ebe53179b06b988379 (patch) | |
tree | d831286461b9e0617abd777c8dc4fe6911fdac15 /net-misc/wget/files | |
parent | net-misc/rsync: drop 3.2.3-r2 (diff) | |
download | gentoo-72e3f286ea1d1f001d6b10ebe53179b06b988379.tar.gz gentoo-72e3f286ea1d1f001d6b10ebe53179b06b988379.tar.bz2 gentoo-72e3f286ea1d1f001d6b10ebe53179b06b988379.zip |
net-misc/wget: drop 1.21-r1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-misc/wget/files')
-rw-r--r-- | net-misc/wget/files/wget-1.21-avoid_bashisms.patch | 26 | ||||
-rw-r--r-- | net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch | 11 | ||||
-rw-r--r-- | net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch | 30 |
3 files changed, 0 insertions, 67 deletions
diff --git a/net-misc/wget/files/wget-1.21-avoid_bashisms.patch b/net-misc/wget/files/wget-1.21-avoid_bashisms.patch deleted file mode 100644 index 478621ecb594..000000000000 --- a/net-misc/wget/files/wget-1.21-avoid_bashisms.patch +++ /dev/null @@ -1,26 +0,0 @@ -From a9092887e0e98877a205e9052930692f35fb179e Mon Sep 17 00:00:00 2001 -From: Matt Whitlock <gentoo@mattwhitlock.name> -Date: Sat, 2 Jan 2021 16:27:57 +0100 -Subject: [PATCH] configure.ac: Don't use bashisms - -Gentoo-bug: https://bugs.gentoo.org/762946 ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 96adf13b..f6268fd5 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -978,7 +978,7 @@ AM_CONDITIONAL([IRI_IS_ENABLED], [test "X$iri" != "Xno"]) - AM_CONDITIONAL([WITH_SSL], [test "X$with_ssl" != "Xno"]) - AM_CONDITIONAL([METALINK_IS_ENABLED], [test "X$with_metalink" != "Xno"]) - AM_CONDITIONAL([WITH_XATTR], [test "X$ENABLE_XATTR" != "Xno"]) --AM_CONDITIONAL([WITH_NTLM], [test "X$ENABLE_NTLM" == "Xyes"]) -+AM_CONDITIONAL([WITH_NTLM], [test "X$ENABLE_NTLM" = "Xyes"]) - - dnl - dnl Create output --- -2.30.0 - diff --git a/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch b/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch deleted file mode 100644 index 0e02851a2577..000000000000 --- a/net-misc/wget/files/wget-1.21-avoid_eautoreconf.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/configure -+++ b/configure -@@ -55925,7 +55925,7 @@ - WITH_XATTR_FALSE= - fi - -- if test "X$ENABLE_NTLM" == "Xyes"; then -+ if test "X$ENABLE_NTLM" = "Xyes"; then - WITH_NTLM_TRUE= - WITH_NTLM_FALSE='#' - else diff --git a/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch b/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch deleted file mode 100644 index 546028c83df0..000000000000 --- a/net-misc/wget/files/wget-1.21-gnulib-utime-errno.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 6a76832db224ac5671599ce332717f985a2addc7 Mon Sep 17 00:00:00 2001 -From: Bruno Haible <bruno@clisp.org> -Date: Thu, 31 Dec 2020 17:16:57 +0100 -Subject: utime: Fix compilation error on macOS and Solaris 9 (regr. - 2020-12-24). - -Reported by Tom G. Christensen <tgc@jupiterrise.com> in -<https://lists.gnu.org/archive/html/bug-gnulib/2020-12/msg00295.html>. - -* lib/utime.c: Include <errno.h>. ---- - ChangeLog | 7 +++++++ - lib/utime.c | 1 + - 2 files changed, 8 insertions(+) - -diff --git a/lib/utime.c b/lib/utime.c -index bf7d7c534..337217950 100644 ---- a/lib/utime.c -+++ b/lib/utime.c -@@ -261,6 +261,7 @@ utime (const char *name, const struct utimbuf *ts) - - #else - -+# include <errno.h> - # include <sys/stat.h> - # include "filename.h" - --- -cgit v1.2.1 - |