Hi All, simple update to 4.7.6 from today. Changelog:
- obsolete settings xfer:log, xfer:log-file, xfer:max-log-size are now - aliased to log:enabled/xfer, log:file/xfer and log:max-size/xfer. - fixed a missing SFTP status message. - fixed a coredump when opening "slot:name" without a path in the slot. - fixed XDG directories description in the man page. - fixed off-by-one month error in apache file listing with ISO dates. - fixed compilation on some systems. - updated zh_TW translation. Port changelog: - add gettext-tools as RUN_DEPENDS to calm portcheck. - zap wrong "\" - remove backport patch Tested on amd64. Best regards, Rafael Index: Makefile =================================================================== RCS file: /cvs/ports/net/lftp/Makefile,v retrieving revision 1.112 diff -u -p -u -p -r1.112 Makefile --- Makefile 15 Feb 2017 15:27:48 -0000 1.112 +++ Makefile 15 Feb 2017 21:09:26 -0000 @@ -2,7 +2,7 @@ COMMENT= shell-like command line ftp and sftp client -DISTNAME= lftp-4.7.5 +DISTNAME= lftp-4.7.6 CATEGORIES= net HOMEPAGE= https://lftp.tech/ @@ -19,7 +19,9 @@ USE_GROFF= Yes # lftp needs add_history_time() LIB_DEPENDS= devel/libidn \ - devel/readline>=6.1p2 \ + devel/readline>=6.1p2 + +RUN_DEPENDS= devel/gettext-tools MASTER_SITES= http://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/ \ http://lftp.yar.ru/ftp/ \ Index: distinfo =================================================================== RCS file: /cvs/ports/net/lftp/distinfo,v retrieving revision 1.71 diff -u -p -u -p -r1.71 distinfo --- distinfo 15 Feb 2017 15:27:48 -0000 1.71 +++ distinfo 15 Feb 2017 21:09:26 -0000 @@ -1,2 +1,2 @@ -SHA256 (lftp-4.7.5.tar.gz) = TvwATyIM4EkML5YSSDwHQca0LszLZp/CMamT582YKp0= -SIZE (lftp-4.7.5.tar.gz) = 2753728 +SHA256 (lftp-4.7.6.tar.gz) = LIdzmT7Ab1nXpXNAkOZOw38Qb5iyULjEdsVcwLNap10= +SIZE (lftp-4.7.6.tar.gz) = 2760657 Index: patches/patch-configure =================================================================== RCS file: /cvs/ports/net/lftp/patches/patch-configure,v retrieving revision 1.16 diff -u -p -u -p -r1.16 patch-configure --- patches/patch-configure 15 Feb 2017 15:27:48 -0000 1.16 +++ patches/patch-configure 15 Feb 2017 21:09:26 -0000 @@ -2,9 +2,9 @@ $OpenBSD: patch-configure,v 1.16 2017/02 Use GNU readline as our base readline lacks add_history_time(). ---- configure.orig Sun Jan 1 18:26:12 2017 -+++ configure Mon Jan 16 14:58:09 2017 -@@ -49079,7 +49079,7 @@ fi +--- configure.orig Wed Feb 15 07:48:02 2017 ++++ configure Wed Feb 15 21:53:13 2017 +@@ -49232,7 +49232,7 @@ fi readline_include_dir="$readline_include_dir/readline" fi readline_ld_flags="-L$readline_prefix/lib" Index: patches/patch-src_Makefile_in =================================================================== RCS file: /cvs/ports/net/lftp/patches/patch-src_Makefile_in,v retrieving revision 1.13 diff -u -p -u -p -r1.13 patch-src_Makefile_in --- patches/patch-src_Makefile_in 25 Nov 2016 23:05:11 -0000 1.13 +++ patches/patch-src_Makefile_in 15 Feb 2017 21:09:26 -0000 @@ -1,7 +1,7 @@ $OpenBSD: patch-src_Makefile_in,v 1.13 2016/11/25 23:05:11 jca Exp $ ---- src/Makefile.in.orig Wed Nov 16 14:11:29 2016 -+++ src/Makefile.in Thu Nov 17 18:51:19 2016 -@@ -237,7 +237,7 @@ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(p +--- src/Makefile.in.orig Wed Feb 15 07:48:01 2017 ++++ src/Makefile.in Wed Feb 15 21:53:13 2017 +@@ -239,7 +239,7 @@ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(pkgdatadir)" LTLIBRARIES = $(lib_LTLIBRARIES) $(pkgverlib_LTLIBRARIES) Index: patches/patch-src_Resolver_cc =================================================================== RCS file: patches/patch-src_Resolver_cc diff -N patches/patch-src_Resolver_cc --- patches/patch-src_Resolver_cc 15 Feb 2017 15:27:48 -0000 1.14 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ -$OpenBSD: patch-src_Resolver_cc,v 1.14 2017/02/15 15:27:48 sthen Exp $ - -"Cast address to IN6_IS_ADDR_LINKLOCAL." - -backport from github 259d642e1fea2ddf38763d49e8e7701f0a947d4c - ---- src/Resolver.cc.orig Mon Jan 16 21:44:52 2017 -+++ src/Resolver.cc Mon Jan 16 21:45:30 2017 -@@ -318,7 +318,7 @@ void Resolver::AddAddress(int family,const char *addre - case AF_INET6: - if(sizeof(add.in6.sin6_addr) != len) - return; -- if(IN6_IS_ADDR_LINKLOCAL(address) && scope==0) { -+ if(IN6_IS_ADDR_LINKLOCAL((const struct in6_addr*)address) && scope==0) { - error=_("Link-local IPv6 address should have a scope"); - return; - }