pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/filezilla filezilla: update to 3.46.3.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e969fe3ce951
branches:  trunk
changeset: 420017:e969fe3ce951
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Dec 31 08:57:26 2019 +0000

description:
filezilla: update to 3.46.3.

3.46.3 (2019-12-23)

- SFTP: Fixed handle leak on Windows
- SFTP: Remote paths were not fully resolved on all operations

3.46.2 (2019-12-20)

- SFTP: Fixed a regression connecting using a password-protected keyfile

3.46.1 (2019-12-20)

- Fixed a crash if an FTP server sends too long response lines
- Building and running FileZilla now depends on libfilezilla >= 0.19.3 (https://lib.filezilla-project.org/), this fixes a few issues with the new speed limiting code
- SFTP components have been updated and are now based on PuTTY 0.73

3.46.0 (2019-11-25)

- Fixed a rare crash if closing FileZilla the very same moment a connection or transfer requests user attention

3.46.0-rc1 (2019-11-15)

+ Show an error message in the local directory listing if the user lacks permission to show the directory
- Local filelist status bar is now reset if accessing a local directory fails
- macOS: Work around an a bug in macOS 10.15 (Catalina) where closing a dialog shown from a timer can result in temporary freezes
- Refactored speed-limiting code
- Building and running FileZilla now depends on libfilezilla >= 0.19.1 (https://lib.filezilla-project.org/)

diffstat:

 net/filezilla/Makefile                               |   6 +-
 net/filezilla/distinfo                               |  10 ++--
 net/filezilla/patches/patch-src_putty_unix_uxshare.c |  35 --------------------
 3 files changed, 8 insertions(+), 43 deletions(-)

diffs (77 lines):

diff -r 8e605f6f462f -r e969fe3ce951 net/filezilla/Makefile
--- a/net/filezilla/Makefile    Tue Dec 31 08:46:31 2019 +0000
+++ b/net/filezilla/Makefile    Tue Dec 31 08:57:26 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.119 2019/10/10 12:18:01 wiz Exp $
+# $NetBSD: Makefile,v 1.120 2019/12/31 08:57:26 wiz Exp $
 
-VERSION=       3.45.1
+VERSION=       3.46.3
 DISTNAME=      FileZilla_${VERSION}_src
 PKGNAME=       filezilla-${VERSION}
 CATEGORIES=    net x11
@@ -34,7 +34,7 @@
 .include "../../databases/sqlite3/buildlink3.mk"
 .include "../../devel/libidn/buildlink3.mk"
 .include "../../graphics/hicolor-icon-theme/buildlink3.mk"
-BUILDLINK_API_DEPENDS.libfilezilla+=   libfilezilla>=0.18.2
+BUILDLINK_API_DEPENDS.libfilezilla+=   libfilezilla>=0.19.3
 .include "../../net/libfilezilla/buildlink3.mk"
 BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.4.0
 .include "../../security/gnutls/buildlink3.mk"
diff -r 8e605f6f462f -r e969fe3ce951 net/filezilla/distinfo
--- a/net/filezilla/distinfo    Tue Dec 31 08:46:31 2019 +0000
+++ b/net/filezilla/distinfo    Tue Dec 31 08:57:26 2019 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.54 2019/10/10 12:18:01 wiz Exp $
+$NetBSD: distinfo,v 1.55 2019/12/31 08:57:26 wiz Exp $
 
-SHA1 (FileZilla_3.45.1_src.tar.bz2) = 0fa86688fad3b85b73fb64255b3aff32bc12ee25
-RMD160 (FileZilla_3.45.1_src.tar.bz2) = 197128dc79544bd7a97959723e97abbeef4aa10b
-SHA512 (FileZilla_3.45.1_src.tar.bz2) = feb267b85ad2843baea0c6df66ed86866121f33e2295fcb9003a8bc2603ad684f4fe801ea842cb291e3fb5cd7195ccb2d21bfa95711a61be6b4debfd4e1c7822
-Size (FileZilla_3.45.1_src.tar.bz2) = 4649083 bytes
+SHA1 (FileZilla_3.46.3_src.tar.bz2) = 2b5b51e665b72b2d6e991c55b43339996baf8f9c
+RMD160 (FileZilla_3.46.3_src.tar.bz2) = 1b8c7f7f0ae9a240eb7d3f0881f497602b223bf3
+SHA512 (FileZilla_3.46.3_src.tar.bz2) = 35b61c3bfd1d40848e7846b4533da8844df0e4873cb89286b90330cbc29dffeff96fcab10aec908a08d9129198bb2d80df8f223d8ebc1a0863a4083cb06abffc
+Size (FileZilla_3.46.3_src.tar.bz2) = 4720329 bytes
 SHA1 (patch-configure) = 8bf5736d17ed78fe0a1d4f910194bba9f03c854e
 SHA1 (patch-src_putty_unix_uxshare.c) = 0c3102c10b742c461fe032f081d1a642c6fd6a59
diff -r 8e605f6f462f -r e969fe3ce951 net/filezilla/patches/patch-src_putty_unix_uxshare.c
--- a/net/filezilla/patches/patch-src_putty_unix_uxshare.c      Tue Dec 31 08:46:31 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-$NetBSD: patch-src_putty_unix_uxshare.c,v 1.1 2015/07/08 16:46:43 richard Exp $
-Use POSIX fcntl instead of flock for setting file locking options on SunOS
-
---- src/putty/unix/uxshare.c.orig      2014-12-18 15:15:44.000000000 +0000
-+++ src/putty/unix/uxshare.c
-@@ -295,6 +295,13 @@ int platform_ssh_share(const char *pi_na
-     int lockfd;
-     Socket retsock;
- 
-+    struct flock lock;
-+
-+    lock.l_type = F_WRLCK;
-+    lock.l_whence = SEEK_SET;
-+    lock.l_start = 0;
-+    lock.l_len = 0;
-+
-     /*
-      * Sort out what we're going to call the directory in which we
-      * keep the socket. This has the side effect of potentially
-@@ -326,9 +333,15 @@ int platform_ssh_share(const char *pi_na
-         sfree(lockname);
-         return SHARE_NONE;
-     }
-+#ifdef __sun
-+    if (fcntl(lockfd, F_SETLK, &lock) == -1) {
-+        *logtext = dupprintf("%s: fcntl(F_SETLK): %s",
-+                             lockname, strerror(errno));
-+#else
-     if (flock(lockfd, LOCK_EX) < 0) {
-         *logtext = dupprintf("%s: flock(LOCK_EX): %s",
-                              lockname, strerror(errno));
-+#endif
-         sfree(dirname);
-         sfree(lockname);
-         close(lockfd);



Home | Main Index | Thread Index | Old Index