diff options
author | wiz <wiz@pkgsrc.org> | 2003-03-06 08:46:31 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-03-06 08:46:31 +0000 |
commit | 91ad8cab366b5775822c3e2570dcd316f9945c8b (patch) | |
tree | 014a64cac55bd073eed2f6e6e95762bc68e9c9bd /net/lftp | |
parent | fe1192c6963fca7186e01a79d0c620a85799893f (diff) | |
download | pkgsrc-91ad8cab366b5775822c3e2570dcd316f9945c8b.tar.gz |
Update to 2.6.5.
Version 2.6.5 - 2003-02-28
* new mirror options --log=<file> and --script=<file> to produce lftp commands
equivalent to the actions done (log) or to be done (script) by mirror.
`-' as file name means stdout.
* fixed a dead-lock when resuming FXP with passive source.
* re-get file size and date after HTTP redirect.
* added workarounds for proftpd.
* handle EPIPE (Broken pipe) error as temporary network error.
* fixed a dead-lock in HTTP retrieval after redirect.
* added cls option --sort=date (Oskar Liljeblad).
* fixed compilation on OpenBSD and older Solaris.
* fixed handling of symbolic links in find.
* lftp -f and -c options can now be combined
* fixed slot handling in non-interactive mode.
* fixed large file support in cat command.
* fixed dante socks compilation (now lftp does not use poll with dante).
* fixed data connection abort with ssl connection to wu-ftpd.
Diffstat (limited to 'net/lftp')
-rw-r--r-- | net/lftp/Makefile | 5 | ||||
-rw-r--r-- | net/lftp/distinfo | 7 | ||||
-rw-r--r-- | net/lftp/patches/patch-ad | 14 |
3 files changed, 5 insertions, 21 deletions
diff --git a/net/lftp/Makefile b/net/lftp/Makefile index 22e28a57cb4..a2c54dfb9a8 100644 --- a/net/lftp/Makefile +++ b/net/lftp/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2003/02/06 14:22:16 seb Exp $ +# $NetBSD: Makefile,v 1.22 2003/03/06 08:46:31 wiz Exp $ # -DISTNAME= lftp-2.6.4 -PKGREVISION= 1 +DISTNAME= lftp-2.6.5 CATEGORIES= net MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/old/ diff --git a/net/lftp/distinfo b/net/lftp/distinfo index 21329a5f374..5869c906521 100644 --- a/net/lftp/distinfo +++ b/net/lftp/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.8 2003/02/06 14:22:16 seb Exp $ +$NetBSD: distinfo,v 1.9 2003/03/06 08:46:31 wiz Exp $ -SHA1 (lftp-2.6.4.tar.bz2) = 5237e08132eabd4166f466e7f73db27bbe143716 -Size (lftp-2.6.4.tar.bz2) = 1129181 bytes +SHA1 (lftp-2.6.5.tar.bz2) = f2605e190cdcd9dafa02be1f9173dbdd9cb022ac +Size (lftp-2.6.5.tar.bz2) = 1135329 bytes SHA1 (patch-aa) = 727d216e32d66671e2c74e08e32c1f1017acc87e SHA1 (patch-ab) = 4312c2878b6e553bdadfab8528906f811cd9d381 SHA1 (patch-ac) = 6df164610322c4dcfa82b8cb92e6a0845a75aee2 -SHA1 (patch-ad) = 1cbea05135253e5cfa63aad9435d21552d31d1de diff --git a/net/lftp/patches/patch-ad b/net/lftp/patches/patch-ad deleted file mode 100644 index cfc9f9d17ca..00000000000 --- a/net/lftp/patches/patch-ad +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2003/02/06 14:22:16 seb Exp $ - ---- src/NetAccess.cc.orig Wed Dec 25 13:44:31 2002 -+++ src/NetAccess.cc -@@ -24,6 +24,9 @@ - - #include <errno.h> - #include <assert.h> -+#ifdef HAVE_SYS_TYPES_H -+#include <sys/types.h> -+#endif - #include <math.h> - #include <netinet/in.h> - #include <arpa/inet.h> |