diff options
author | wiz <wiz@pkgsrc.org> | 2017-01-16 12:36:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-01-16 12:36:59 +0000 |
commit | 8e5c15832ee54a6d18fa8bdaf7466420f1749902 (patch) | |
tree | 7ff02dc56d4e019369f54979126548798aeec704 | |
parent | 51030b2bc44131f23152716eccfe21651f449cd6 (diff) | |
download | pkgsrc-8e5c15832ee54a6d18fa8bdaf7466420f1749902.tar.gz |
Updated filezilla to 3.24.0.
3.24.0 (2017-01-13)
- Fixed a possible crash if sending FTP commands fails during a directory listing operation
- *nix: Fixed a scrolling issue in the message log if wxWidgets is built against GTK3
3.24.0-rc1 (2017-01-06)
+ The context menu for remote file search results now has a "Copy URL(s) to clipboard" item
+ Alt+number can now be used to switch between tabs in addition to Ctrl+number
+ SFTP hostkey fingerprints are now also shown as base64 encoded SHA256 hashes to match the new format displayed by OpenSSH
- Errors at the end of SFTP transfers now correctly result in transfer failures instead
- Cancelling synchronized browsing questions no longer prevents further directory changes
- Fix display issues for the filter conditions dialog
- Fix deleting multiple extensions on the filetype page in the settings
- OS X: Do not open dialogs while already processing an event, e.g. while a context menu is open
-rw-r--r-- | net/filezilla/Makefile | 4 | ||||
-rw-r--r-- | net/filezilla/distinfo | 11 | ||||
-rw-r--r-- | net/filezilla/patches/patch-configure | 15 |
3 files changed, 23 insertions, 7 deletions
diff --git a/net/filezilla/Makefile b/net/filezilla/Makefile index 6e13e82827f..7acbf75034f 100644 --- a/net/filezilla/Makefile +++ b/net/filezilla/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.77 2017/01/01 15:49:13 wiz Exp $ +# $NetBSD: Makefile,v 1.78 2017/01/16 12:36:59 wiz Exp $ -VERSION= 3.23.0.2 +VERSION= 3.24.0 DISTNAME= FileZilla_${VERSION}_src PKGNAME= filezilla-${VERSION} CATEGORIES= net x11 diff --git a/net/filezilla/distinfo b/net/filezilla/distinfo index 020e3fb5934..8059e451971 100644 --- a/net/filezilla/distinfo +++ b/net/filezilla/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.31 2017/01/01 15:49:13 wiz Exp $ +$NetBSD: distinfo,v 1.32 2017/01/16 12:36:59 wiz Exp $ -SHA1 (FileZilla_3.23.0.2_src.tar.bz2) = 647911206575dda90fbb9a05474c19700ee1bbf9 -RMD160 (FileZilla_3.23.0.2_src.tar.bz2) = 0f95c4f4b8643652a7fb513d5f6df4b99f06133b -SHA512 (FileZilla_3.23.0.2_src.tar.bz2) = 249082cb22aa03858a876b8e0087e8fba64540e1fbfada56a85bcd4474e8781132b413ec0d31b1c137e44a46b6b3dce145d1eceaef58f1f3f51d8f3c32dd9920 -Size (FileZilla_3.23.0.2_src.tar.bz2) = 4662448 bytes +SHA1 (FileZilla_3.24.0_src.tar.bz2) = 955eb2da0bdf7875ad7ce1192c589a3b10fc4f10 +RMD160 (FileZilla_3.24.0_src.tar.bz2) = d699b3c23247d818eae4ee28876c9cc7fd6821c1 +SHA512 (FileZilla_3.24.0_src.tar.bz2) = e5e7fcf1d1c33053775d09ee9a3c0bac1286b4ed5aee1af47498ec2d860bd0571b8e2a35443119d3ebe61a8eea4fb236edb0e7d9dc6a1b37b823902828620ea0 +Size (FileZilla_3.24.0_src.tar.bz2) = 4635977 bytes +SHA1 (patch-configure) = dec6f0b574b573779e96e9aa23b50202777b1e52 SHA1 (patch-src_putty_unix_uxshare.c) = 0c3102c10b742c461fe032f081d1a642c6fd6a59 diff --git a/net/filezilla/patches/patch-configure b/net/filezilla/patches/patch-configure new file mode 100644 index 00000000000..2a21cf2d438 --- /dev/null +++ b/net/filezilla/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2017/01/16 12:36:59 wiz Exp $ + +Fix unportable test(1) operator. + +--- configure.orig 2017-01-13 19:04:04.000000000 +0000 ++++ configure +@@ -18381,7 +18381,7 @@ else + use_mac_sandbox="no" + fi + +- if test "$use_mac_sandbox" == "yes"; then ++ if test "$use_mac_sandbox" = "yes"; then + + $as_echo "#define USE_MAC_SANDBOX 1" >>confdefs.h + ] |