svn commit: r492202 - head/ftp/libfilezilla

Kurt Jaeger pi at FreeBSD.org
Tue Feb 5 12:50:26 UTC 2019


Author: pi
Date: Tue Feb  5 12:50:25 2019
New Revision: 492202
URL: https://svnweb.freebsd.org/changeset/ports/492202

Log:
  ftp/libfilezilla: update 0.13.0 -> 0.15.1, taking maintainer
  
  - Add argument to fz::strtok to return empty tokens
  - Fix compatibility issue with Nettle < 3.3
  - Fix fz::random_bytes on MinGW
  - Fix memory leak in fz::buffer
  - now depends on Nettle >= 3.1
  - Added fz::sha512, fz::sha256, fz::sha1 and fz::md5 hash functions
  - Added fz::hash_accumulator
  - Added fz::hmac_sha256 HMAC function
  - Added asymmetric encryption scheme using X25519
  - Added signature scheme using Ed25519
  - Changed and documented semantics of the return value of fz::remove_file,
    removing a non-existing file is not an error
  - Added fz::equal_insensitive_ascii
  - Added insensitive_ascii parameter to fz::starts_with and fz::ends_with
  - Fixed namespace of to_wstring in wx glue

Modified:
  head/ftp/libfilezilla/Makefile
  head/ftp/libfilezilla/distinfo
  head/ftp/libfilezilla/pkg-plist

Modified: head/ftp/libfilezilla/Makefile
==============================================================================
--- head/ftp/libfilezilla/Makefile	Tue Feb  5 12:46:16 2019	(r492201)
+++ head/ftp/libfilezilla/Makefile	Tue Feb  5 12:50:25 2019	(r492202)
@@ -1,16 +1,17 @@
 # $FreeBSD$
 
 PORTNAME=	libfilezilla
-PORTVERSION=	0.13.0
-PORTREVISION=	1
+PORTVERSION=	0.15.1
 CATEGORIES=	ftp
-MASTER_SITES=	http://download.filezilla-project.org/${PORTNAME}/
+MASTER_SITES=	https://download.filezilla-project.org/${PORTNAME}/
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	pi at FreeBSD.org
 COMMENT=	C++ library for building platform-independent programs
 
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libnettle.so:security/nettle
 
 USES=		compiler:c++14-lang gmake iconv:wchar_t libtool localbase \
 		pathfix pkgconfig tar:bzip2

Modified: head/ftp/libfilezilla/distinfo
==============================================================================
--- head/ftp/libfilezilla/distinfo	Tue Feb  5 12:46:16 2019	(r492201)
+++ head/ftp/libfilezilla/distinfo	Tue Feb  5 12:50:25 2019	(r492202)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1535657359
-SHA256 (libfilezilla-0.13.0.tar.bz2) = ffca3c40dbe729dfc9389034f420809dec1b6f2674dc2cd39dc7edfcc59f686a
-SIZE (libfilezilla-0.13.0.tar.bz2) = 398773
+TIMESTAMP = 1549315919
+SHA256 (libfilezilla-0.15.1.tar.bz2) = 2048c4128f3bf37a2a4ece17c8bea5455f3d7414fe2e060afcf2a8b00a87f49f
+SIZE (libfilezilla-0.15.1.tar.bz2) = 404746

Modified: head/ftp/libfilezilla/pkg-plist
==============================================================================
--- head/ftp/libfilezilla/pkg-plist	Tue Feb  5 12:46:16 2019	(r492201)
+++ head/ftp/libfilezilla/pkg-plist	Tue Feb  5 12:50:25 2019	(r492202)
@@ -1,12 +1,14 @@
 include/libfilezilla/apply.hpp
 include/libfilezilla/buffer.hpp
 include/libfilezilla/encode.hpp
+include/libfilezilla/encryption.hpp
 include/libfilezilla/event.hpp
 include/libfilezilla/event_handler.hpp
 include/libfilezilla/event_loop.hpp
 include/libfilezilla/file.hpp
 include/libfilezilla/format.hpp
 include/libfilezilla/glue/wx.hpp
+include/libfilezilla/hash.hpp
 include/libfilezilla/iputils.hpp
 include/libfilezilla/libfilezilla.hpp
 include/libfilezilla/local_filesys.hpp
@@ -18,6 +20,7 @@ include/libfilezilla/private/windows.hpp
 include/libfilezilla/process.hpp
 include/libfilezilla/recursive_remove.hpp
 include/libfilezilla/shared.hpp
+include/libfilezilla/signature.hpp
 include/libfilezilla/string.hpp
 include/libfilezilla/thread.hpp
 include/libfilezilla/thread_pool.hpp


More information about the svn-ports-all mailing list