pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/lftp Version 4.8.1:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/49745ca83c86
branches:  trunk
changeset: 368308:49745ca83c86
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Sep 14 06:38:21 2017 +0000

description:
Version 4.8.1:
* improved rate limiting to allow per-host limits.
* ftp: make prefer-epsv default "no".
* ftp: fixed quote command and ftp:use-stat-for-list setting.
* switched to libidn2.
* fixed build with LibreSSL.
* fixed configure --disable-rpath.
* fixed coredump when a parent directory was deleted.

diffstat:

 net/lftp/Makefile                     |   4 ++--
 net/lftp/distinfo                     |  11 ++++++-----
 net/lftp/patches/patch-src_PollVec.cc |  15 +++++++++++++++
 3 files changed, 23 insertions(+), 7 deletions(-)

diffs (53 lines):

diff -r 3af33174a2b0 -r 49745ca83c86 net/lftp/Makefile
--- a/net/lftp/Makefile Thu Sep 14 06:04:07 2017 +0000
+++ b/net/lftp/Makefile Thu Sep 14 06:38:21 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.122 2017/07/12 08:58:18 adam Exp $
+# $NetBSD: Makefile,v 1.123 2017/09/14 06:38:21 adam Exp $
 
-DISTNAME=      lftp-4.8.0
+DISTNAME=      lftp-4.8.1
 CATEGORIES=    net
 MASTER_SITES=  http://lftp.yar.ru/ftp/
 MASTER_SITES+= ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/
diff -r 3af33174a2b0 -r 49745ca83c86 net/lftp/distinfo
--- a/net/lftp/distinfo Thu Sep 14 06:04:07 2017 +0000
+++ b/net/lftp/distinfo Thu Sep 14 06:38:21 2017 +0000
@@ -1,12 +1,13 @@
-$NetBSD: distinfo,v 1.67 2017/07/12 08:58:18 adam Exp $
+$NetBSD: distinfo,v 1.68 2017/09/14 06:38:21 adam Exp $
 
-SHA1 (lftp-4.8.0.tar.xz) = 1e6598c655176f60cb6e35ecd3e2464bbbcfee74
-RMD160 (lftp-4.8.0.tar.xz) = 20f1b67a56f4d47074d201b013cd77f9ad683d0b
-SHA512 (lftp-4.8.0.tar.xz) = 60b437cadbf15479ca1858f2f49d4414e4eb2a2db7af1bb26d82d6ce97652664be8e7c9683c34fb1168ef23950867aea379c3d7705f638bdced392184d890fd4
-Size (lftp-4.8.0.tar.xz) = 1584196 bytes
+SHA1 (lftp-4.8.1.tar.xz) = d40e1d7bb5a0ef65c778be0ad1dfc3392063361f
+RMD160 (lftp-4.8.1.tar.xz) = c2edc74b3f8569b0e55c047b58b47718f3f0f282
+SHA512 (lftp-4.8.1.tar.xz) = 55c21a927c5bbfe2075b3f9baa1d19d1dafb0ade7e7a21f24f0a7d42fece5b760bc6cef033296318991926d227730d5f89ee9526d30fda95d54960c1e8079164
+Size (lftp-4.8.1.tar.xz) = 1598768 bytes
 SHA1 (patch-aa) = 988f4f2f5b9469d3c645ffa984d5449a219229bb
 SHA1 (patch-ab) = cbf428fb51c64431eb32d25160303333ce695b5a
 SHA1 (patch-ac) = 8aa2ddc582bbc87cd0a5e8662f328dd2ac8dea90
 SHA1 (patch-ae) = 4e2506bbadbda97feeabb208cd43c0dff70ed7d3
 SHA1 (patch-lib_inttypes.in.h) = 608380392b04f84db756fcd6bf8ef35d72cd35fd
+SHA1 (patch-src_PollVec.cc) = 0a0fe24f3bf77ae6141217fe2a3f9a30314ede7c
 SHA1 (patch-src_module.cc) = 236fe2ce4ff215ddfe44fc86ed43ed00849280b8
diff -r 3af33174a2b0 -r 49745ca83c86 net/lftp/patches/patch-src_PollVec.cc
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/lftp/patches/patch-src_PollVec.cc     Thu Sep 14 06:38:21 2017 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_PollVec.cc,v 1.1 2017/09/14 06:38:21 adam Exp $
+
+Fix compiler errors.
+
+--- src/PollVec.cc.orig        2017-09-14 06:28:06.000000000 +0000
++++ src/PollVec.cc
+@@ -30,7 +30,7 @@ static inline bool operator<(const timev
+ 
+ void PollVec::AddTimeoutU(unsigned t)
+ {
+-   struct timeval new_timeout={t/1000000,t%1000000};
++   struct timeval new_timeout={(int)t/1000000,(int)t%1000000};
+    if(tv_timeout.tv_sec<0 || new_timeout<tv_timeout)
+       SetTimeout(new_timeout);
+ }



Home | Main Index | Thread Index | Old Index