diff options
author | salo <salo> | 2004-05-27 14:37:16 +0000 |
---|---|---|
committer | salo <salo> | 2004-05-27 14:37:16 +0000 |
commit | c282c19bba9d490d68cefd022cf310c14b568301 (patch) | |
tree | d87a5e1848fc8602de597de1508a2be2e281be55 /net/lftp | |
parent | f51e51eb3a59220784b8856a4db5b21be189372b (diff) | |
download | pkgsrc-c282c19bba9d490d68cefd022cf310c14b568301.tar.gz |
Updated to version 3.0.4.
Changes:
========
Several bugs fixed. Encrypted FXP support added. CPU usage optimizations.
- encrypted FXP is now supported with CPSV or SSCN commands.
- new setting ftp:ssl-protect-fxp (default is no).
- cpu usage optimizations, sftp speed-up.
- fixed uploading of zero sized files over ftp.
- fixed coredump when AUTH SSL was used and the server refused to setup ssl
connection.
- fixed coredump on unexpected extra ftp server reply.
- added workaround for ftp servers violating RFC2389 (format of FEAT reply).
- added workaround for ftp servers which refuse to switch to utf-8 before
login.
- fixed compilation on systems without strtok_r.
Diffstat (limited to 'net/lftp')
-rw-r--r-- | net/lftp/Makefile | 4 | ||||
-rw-r--r-- | net/lftp/distinfo | 8 | ||||
-rw-r--r-- | net/lftp/patches/patch-aa | 16 |
3 files changed, 14 insertions, 14 deletions
diff --git a/net/lftp/Makefile b/net/lftp/Makefile index 5d2a244d200..cbdbcae254b 100644 --- a/net/lftp/Makefile +++ b/net/lftp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.42 2004/05/25 13:09:37 salo Exp $ +# $NetBSD: Makefile,v 1.43 2004/05/27 14:37:16 salo Exp $ # -DISTNAME= lftp-3.0.3 +DISTNAME= lftp-3.0.4 CATEGORIES= net MASTER_SITES= ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/ \ ftp://ftp.tuwien.ac.at/infosys/browsers/ftp/lftp/ \ diff --git a/net/lftp/distinfo b/net/lftp/distinfo index 4c631bcea4f..605f3215cae 100644 --- a/net/lftp/distinfo +++ b/net/lftp/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.19 2004/05/25 12:01:16 salo Exp $ +$NetBSD: distinfo,v 1.20 2004/05/27 14:37:16 salo Exp $ -SHA1 (lftp-3.0.3.tar.bz2) = 3e42c286f7a4525afbfb57899fd9f1f3be9e63ba -Size (lftp-3.0.3.tar.bz2) = 1214354 bytes -SHA1 (patch-aa) = fb0ed7e19b2f1119fa515ee2dc656ee6e1e285ce +SHA1 (lftp-3.0.4.tar.bz2) = f1995901aa19352180ead14ab0aec928e577980c +Size (lftp-3.0.4.tar.bz2) = 1216429 bytes +SHA1 (patch-aa) = 07b287f211e1fa87ce319ccc5f9746ebc07da632 SHA1 (patch-ab) = 4312c2878b6e553bdadfab8528906f811cd9d381 SHA1 (patch-ac) = 6df164610322c4dcfa82b8cb92e6a0845a75aee2 diff --git a/net/lftp/patches/patch-aa b/net/lftp/patches/patch-aa index 24def3f1510..b4ac2f5701a 100644 --- a/net/lftp/patches/patch-aa +++ b/net/lftp/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.6 2004/04/10 23:51:36 salo Exp $ +$NetBSD: patch-aa,v 1.7 2004/05/27 14:37:16 salo Exp $ ---- src/Makefile.in.orig 2004-04-06 10:28:39.000000000 +0200 -+++ src/Makefile.in 2004-04-11 01:28:03.000000000 +0200 -@@ -831,7 +831,7 @@ +--- src/Makefile.in.orig 2004-05-21 14:32:31.000000000 +0200 ++++ src/Makefile.in 2004-05-27 15:08:32.000000000 +0200 +@@ -833,7 +833,7 @@ check: check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) installdirs: -- $(mkdir_p) $(DESTDIR)$(pkgverlibdir) $(DESTDIR)$(bindir) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) -+ $(mkdir_p) $(DESTDIR)$(bindir) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) +- for dir in "$(DESTDIR)$(pkgverlibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ ++ for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am - install-exec: install-exec-am - install-data: install-data-am |