gnu: filezilla: Update to 3.69.2.

* gnu/packages/ftp.scm (filezilla): Update to 3.69.2.
[source]: Switch to svn-fetch.
[native-inputs]: Add autoconf, automake, libtool.
[inputs]: Add boost. Replace wxwidgets-3.0 by wxwidgets.

Change-Id: Iefd1467c1f0622b5cb5b08be97110146cf96e8c5
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
Ashish SHUKLA 2025-07-20 15:43:41 +02:00 committed by Andreas Enge
parent ad9de15681
commit 06c4f8951e
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -35,6 +35,7 @@
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
#:use-module (gnu packages bison) #:use-module (gnu packages bison)
#:use-module (gnu packages boost)
#:use-module (gnu packages check) #:use-module (gnu packages check)
#:use-module (gnu packages compression) #:use-module (gnu packages compression)
#:use-module (gnu packages crypto) #:use-module (gnu packages crypto)
@ -253,27 +254,27 @@ output.
(license gpl2+)))) (license gpl2+))))
(define-public filezilla (define-public filezilla
(let ((revision 11290))
(package (package
(name "filezilla") (name "filezilla")
(version "3.62.2") (version "3.69.2")
(source (source
(origin (origin
(method url-fetch) (method svn-fetch)
(uri (list (string-append "https://qbilinux.org/pub/source/" (uri (svn-reference
"FileZilla_" version "_src.tar.bz2") (url "https://svn.filezilla-project.org/svn/FileZilla3/trunk")
(string-append "https://downloads.sourceforge.net/project/" (revision revision)))
"portableapps/Source/FileZilla/"
"FileZilla_" version "_src.tar.bz2")))
(sha256 (sha256
(base32 "04lcffmvl1356iyc14pikq3z6jikj6qn0v0zd57lgsm0biihjrx7")))) (base32 "0pz8fhzgm4kyax64bkkpsq3p1lcypjacr05bvk4wxp80lfqiv32k"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
;; Don't let filezilla phone home to check for updates. ;; Don't let filezilla phone home to check for updates.
'(#:configure-flags '("--disable-autoupdatecheck"))) '(#:configure-flags '("--disable-autoupdatecheck")))
(native-inputs (native-inputs
(list cppunit gettext-minimal pkg-config xdg-utils)) (list autoconf automake cppunit gettext-minimal libtool pkg-config xdg-utils))
(inputs (inputs
(list dbus (list boost
dbus
gnutls gnutls
gtk+ gtk+
libfilezilla libfilezilla
@ -281,7 +282,7 @@ output.
nettle nettle
pugixml pugixml
sqlite sqlite
wxwidgets-3.0)) wxwidgets))
(home-page "https://filezilla-project.org") (home-page "https://filezilla-project.org")
(synopsis "Full-featured graphical FTP/FTPS/SFTP client") (synopsis "Full-featured graphical FTP/FTPS/SFTP client")
(description (description
@ -290,7 +291,7 @@ SSH File Transfer Protocol (SFTP), HTTP/1.1, SOCKS5, FTP-Proxy, IPv6
and others features such as bookmarks, drag and drop, filename filters, and others features such as bookmarks, drag and drop, filename filters,
directory comparison and more.") directory comparison and more.")
(license gpl2+) (license gpl2+)
(properties '((upstream-name . "FileZilla"))))) (properties '((upstream-name . "FileZilla"))))))
(define-public vsftpd (define-public vsftpd
(package (package