summaryrefslogtreecommitdiff
path: root/net/lftp
diff options
context:
space:
mode:
authorpettai <pettai@pkgsrc.org>2010-07-19 13:11:59 +0000
committerpettai <pettai@pkgsrc.org>2010-07-19 13:11:59 +0000
commita611e9e7f193186ad9955654267aa55a41b8cc4c (patch)
tree1348dc80ea12cad90324a34de335a2318a071342 /net/lftp
parent98844db4ccfe352b7973726b04bdea75c6d3dba9 (diff)
downloadpkgsrc-a611e9e7f193186ad9955654267aa55a41b8cc4c.tar.gz
Update to 4.0.4:
* added dnssec support. * new setting cmd:stifle-rl-history to limit command history size. * fixed exit code of mget/mput. * fixed compilation on some systems. * fixed crash of `cls -s' on MacOS X x64. * torrent: don't try to connect back to peers which connected to us.
Diffstat (limited to 'net/lftp')
-rw-r--r--net/lftp/Makefile5
-rw-r--r--net/lftp/distinfo10
-rw-r--r--net/lftp/patches/patch-af14
-rw-r--r--net/lftp/patches/patch-ag15
4 files changed, 6 insertions, 38 deletions
diff --git a/net/lftp/Makefile b/net/lftp/Makefile
index 6cad7e5cdad..21281c4f514 100644
--- a/net/lftp/Makefile
+++ b/net/lftp/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.91 2010/01/16 17:57:38 wiz Exp $
+# $NetBSD: Makefile,v 1.92 2010/07/19 13:11:59 pettai Exp $
-DISTNAME= lftp-4.0.1
-PKGREVISION= 1
+DISTNAME= lftp-4.0.4
CATEGORIES= net
MASTER_SITES= http://ftp.yars.free.net/pub/source/lftp/ \
ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/ \
diff --git a/net/lftp/distinfo b/net/lftp/distinfo
index 18074327c3d..12d42ffbf4e 100644
--- a/net/lftp/distinfo
+++ b/net/lftp/distinfo
@@ -1,12 +1,10 @@
-$NetBSD: distinfo,v 1.52 2010/02/07 14:33:30 tnn Exp $
+$NetBSD: distinfo,v 1.53 2010/07/19 13:11:59 pettai Exp $
-SHA1 (lftp-4.0.1.tar.bz2) = 01bcf6c053efab68c2e5ccf3ceb6c944db16aac3
-RMD160 (lftp-4.0.1.tar.bz2) = 7ca64c5544fc2dbcc0e7b9804f3eccb64316bb86
-Size (lftp-4.0.1.tar.bz2) = 1580251 bytes
+SHA1 (lftp-4.0.4.tar.bz2) = b47b38e041d1f8171ef49463885bf429b8973c46
+RMD160 (lftp-4.0.4.tar.bz2) = 9ce7ef4a55709df92ad8b9ecb6c4023ec91d43b8
+Size (lftp-4.0.4.tar.bz2) = 1605030 bytes
SHA1 (patch-aa) = e127aadcaf3c313584747091efb89a3f765a9d7f
SHA1 (patch-ab) = 65c92b264873b45c69a0dfde2d2715dca0b6dc36
SHA1 (patch-ac) = 32e1fba23d4d6bd0b06bacbe503cb9b39d2bf825
SHA1 (patch-ad) = 365c205cf83f65b7253b71e67e530ac2fcf58154
SHA1 (patch-ae) = 3ee418b94cc1afb7b2db5bc550fd966d346368a4
-SHA1 (patch-af) = 69c414ab28cbdfb86e4981fb7eaa7985b8384838
-SHA1 (patch-ag) = 9eda126e106cee0cae6be691ad8bece921c9c0a9
diff --git a/net/lftp/patches/patch-af b/net/lftp/patches/patch-af
deleted file mode 100644
index 3e51f12d021..00000000000
--- a/net/lftp/patches/patch-af
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-af,v 1.1 2009/06/17 08:34:07 tnn Exp $
-
---- lib/getdate.y.orig 2009-05-15 08:24:00.000000000 +0200
-+++ lib/getdate.y
-@@ -113,7 +113,9 @@
- wraps around, but there's no portable way to check for that at
- compile-time. */
- verify (TYPE_IS_INTEGER (time_t));
-+/* This assertion fails on NetBSD-current/i386 due to 64-bit time_t
- verify (LONG_MIN <= TYPE_MINIMUM (time_t) && TYPE_MAXIMUM (time_t) <= LONG_MAX);
-+*/
-
- /* An integer value, and the number of digits in its textual
- representation. */
diff --git a/net/lftp/patches/patch-ag b/net/lftp/patches/patch-ag
deleted file mode 100644
index 7db1886168a..00000000000
--- a/net/lftp/patches/patch-ag
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ag,v 1.1 2009/06/17 08:40:57 tnn Exp $
-
---- lib/mktime.c.orig 2009-01-16 08:58:41.000000000 +0100
-+++ lib/mktime.c
-@@ -165,8 +165,10 @@ ydhms_diff (long int year1, long int yda
- int year0, int yday0, int hour0, int min0, int sec0)
- {
- verify (C99_integer_division, -1 / 2 == 0);
-+/* This assertion fails on NetBSD-current/i386 due to 64-bit time_t
- verify (long_int_year_and_yday_are_wide_enough,
- INT_MAX <= LONG_MAX / 2 || TIME_T_MAX <= UINT_MAX);
-+*/
-
- /* Compute intervening leap days correctly even if year is negative.
- Take care to avoid integer overflow here. */