diff options
author | salo <salo> | 2006-02-01 16:41:32 +0000 |
---|---|---|
committer | salo <salo> | 2006-02-01 16:41:32 +0000 |
commit | a1d7f6d507de1ebc7e36391ceef3fd2bfd2e2a0a (patch) | |
tree | 17bd62d24f1912a9083a7f8fc54ebde06124dc76 /net/lftp | |
parent | 23e963650c3403a3e68a4cb1b3404eb279ad49a2 (diff) | |
download | pkgsrc-a1d7f6d507de1ebc7e36391ceef3fd2bfd2e2a0a.tar.gz |
Update to version 3.4.0
Changes:
- flush cache when changing ftp:charset.
- show all queued commands on `queue' command.
- support open ranges for `mirror --size-range'.
- new setting dns:max-retries.
- change dns:fatal-timeout setting to accept time interval suffixes.
- prefer getaddrinfo over gethostbyname2.
- treat GNUTLS_E_UNEXPECTED_PACKET_LENGTH as EOF indicator - this fixes
secure ftp with ProFTPD server.
- fixed netrc usage when no user name is given.
Diffstat (limited to 'net/lftp')
-rw-r--r-- | net/lftp/Makefile | 5 | ||||
-rw-r--r-- | net/lftp/distinfo | 10 | ||||
-rw-r--r-- | net/lftp/patches/patch-aa | 18 |
3 files changed, 16 insertions, 17 deletions
diff --git a/net/lftp/Makefile b/net/lftp/Makefile index f299bc376ee..96feb508b5b 100644 --- a/net/lftp/Makefile +++ b/net/lftp/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2006/01/24 07:32:30 wiz Exp $ +# $NetBSD: Makefile,v 1.65 2006/02/01 16:41:32 salo Exp $ -DISTNAME= lftp-3.3.5 -PKGREVISION= 2 +DISTNAME= lftp-3.4.0 CATEGORIES= net MASTER_SITES= http://ftp.yars.free.net/pub/source/lftp/ \ ftp://ftp.iasi.roedu.net/pub/os/Linux/network/ftp/lftp/ \ diff --git a/net/lftp/distinfo b/net/lftp/distinfo index 351ca2f189e..369b6c75a14 100644 --- a/net/lftp/distinfo +++ b/net/lftp/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.33 2005/12/04 22:12:07 salo Exp $ +$NetBSD: distinfo,v 1.34 2006/02/01 16:41:32 salo Exp $ -SHA1 (lftp-3.3.5.tar.bz2) = 02fbcdebcc2fccf7a4c57d9f00b356fd30d3c402 -RMD160 (lftp-3.3.5.tar.bz2) = 779306413c2c40bd2a1ffdec5b4254cbb1c16a98 -Size (lftp-3.3.5.tar.bz2) = 1271946 bytes -SHA1 (patch-aa) = f9582bab773be9e6156f5506434a3f0614f36f83 +SHA1 (lftp-3.4.0.tar.bz2) = afd968153ed337badb9f91528bacdb082cf0c800 +RMD160 (lftp-3.4.0.tar.bz2) = df93b1f75fe71a4dea8d6f2e5175d9f08bdc0d4d +Size (lftp-3.4.0.tar.bz2) = 1275055 bytes +SHA1 (patch-aa) = 601d2beffb72613d385565b00d88f84f1c4bb09a SHA1 (patch-ab) = d230522c60786a2bcbce346419d8dfce412578d3 SHA1 (patch-ac) = 8000bf8b44b39b7f87e9d7c89bcb513aa5150753 diff --git a/net/lftp/patches/patch-aa b/net/lftp/patches/patch-aa index 677947704b7..0011429e7d7 100644 --- a/net/lftp/patches/patch-aa +++ b/net/lftp/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.8 2005/12/04 22:12:07 salo Exp $ +$NetBSD: patch-aa,v 1.9 2006/02/01 16:41:32 salo Exp $ ---- src/Makefile.in.orig 2005-12-01 12:45:18.000000000 +0100 -+++ src/Makefile.in 2005-12-04 22:12:02.000000000 +0100 -@@ -304,7 +304,7 @@ +--- src/Makefile.in.orig 2005-12-31 12:13:40.000000000 +0100 ++++ src/Makefile.in 2006-02-01 17:20:39.000000000 +0100 +@@ -364,7 +364,7 @@ localedir = $(datadir)/locale pkgverlibdir = $(pkglibdir)/$(VERSION) bin_SCRIPTS = lftpget @@ -11,12 +11,12 @@ $NetBSD: patch-aa,v 1.8 2005/12/04 22:12:07 salo Exp $ noinst_SCRIPTS = ftpget EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS) \ example1.cc example2.cc -@@ -793,7 +793,7 @@ - check: check-am - all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) +@@ -881,7 +881,7 @@ + install-binPROGRAMS: install-libLTLIBRARIES + installdirs: -- for dir in "$(DESTDIR)$(pkgverlibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ -+ for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ +- for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgverlibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ ++ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am |