summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-11-17 21:08:17 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2020-11-17 21:47:31 +0000
commit2017fa03a200a935c5de47b224294aee4c4b41b5 (patch)
tree4b8d65c841f4a5ee691e95824d4a7693e91feffc /net-ftp
parentdev-python/python-glanceclient: x86 stable (bug #754582) (diff)
downloadgentoo-2017fa03a200a935c5de47b224294aee4c4b41b5.tar.gz
gentoo-2017fa03a200a935c5de47b224294aee4c4b41b5.tar.bz2
gentoo-2017fa03a200a935c5de47b224294aee4c4b41b5.zip
net-ftp/lftp: remove unused patches
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/18305 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/lftp/files/lftp-4.7.5-libdir-readline.patch11
-rw-r--r--net-ftp/lftp/files/lftp-4.9.0-ipv6.patch18
2 files changed, 0 insertions, 29 deletions
diff --git a/net-ftp/lftp/files/lftp-4.7.5-libdir-readline.patch b/net-ftp/lftp/files/lftp-4.7.5-libdir-readline.patch
deleted file mode 100644
index 01c9371870c0..000000000000
--- a/net-ftp/lftp/files/lftp-4.7.5-libdir-readline.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/m4/lftp_lib_readline.m4
-+++ b/m4/lftp_lib_readline.m4
-@@ -107,7 +107,7 @@
- if test -f "$readline_include_dir/readline/readline.h"; then
- readline_include_dir="$readline_include_dir/readline"
- fi
-- readline_ld_flags="-L$readline_prefix/lib"
-+ readline_ld_flags="-L$libdir"
- readline_lib_flags="-lreadline"
- run_readline_test="yes"
- elif test "$readline_requested" = "yes"; then
diff --git a/net-ftp/lftp/files/lftp-4.9.0-ipv6.patch b/net-ftp/lftp/files/lftp-4.9.0-ipv6.patch
deleted file mode 100644
index 2c02ce5e787b..000000000000
--- a/net-ftp/lftp/files/lftp-4.9.0-ipv6.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/src/ftpclass.cc
-+++ b/src/ftpclass.cc
-@@ -848,6 +848,7 @@ Ftp::pasv_state_t Ftp::Handle_EPSV_CEPR()
- conn->data_sa.in.sin_port=htons(port);
- conn->data_sa.sa.sa_family=AF_INET;
- }
-+#if INET6
- // V6 / AF_INET6
- else if (proto == 2)
- {
-@@ -855,6 +856,7 @@ Ftp::pasv_state_t Ftp::Handle_EPSV_CEPR()
- conn->data_sa.in6.sin6_port=htons(port);
- conn->data_sa.sa.sa_family=AF_INET6;
- }
-+#endif
- else
- {
- Disconnect("unsupported address family");