GNU bug report logs -
#77689
[PATCH] gnu: libfilezilla: Update source origin.
Previous Next
Reported by: Ada Stevenson <adanskana <at> gmail.com>
Date: Thu, 10 Apr 2025 06:52:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Tue, 06 May 2025 12:07:59 +0200
with message-id <87h61yvyps.fsf <at> gnu.org>
and subject line Re: [bug#77689] [PATCH] gnu: libfilezilla: Update source origin.
has caused the debbugs.gnu.org bug report #77689,
regarding [PATCH] gnu: libfilezilla: Update source origin.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
77689: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77689
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/ftp.scm (gnu): (libfilezilla): Update source origin.
[source]: Replace `url-fetch` with `svn-fetch`.
[native-inputs]: Add `automake`, `autoconf` and `libtool`.
---
gnu/packages/ftp.scm | 55 ++++++++++++++++++++++++++------------------
1 file changed, 33 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm
index 2df6797c42..01b16d2ff1 100644
--- a/gnu/packages/ftp.scm
+++ b/gnu/packages/ftp.scm
@@ -29,6 +29,7 @@ (define-module (gnu packages ftp)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix git-download)
+ #:use-module (guix svn-download)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages)
@@ -203,28 +204,38 @@ (define-public weex
(license gpl2+)))
(define-public libfilezilla
- (package
- (name "libfilezilla")
- (version "0.39.2")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://download.filezilla-project.org/"
- "libfilezilla/libfilezilla-" version ".tar.bz2"))
- (sha256
- (base32 "1x2rixppmvdpn9m01hmh3yqzpczxbkw301hx27n5bfq0dbnx9aar"))))
- (build-system gnu-build-system)
- (arguments
- `(#:configure-flags
+ (let ((revision 10763))
+ (package
+ (name "libfilezilla")
+ (version "0.39.2")
+ (source
+ (origin
+ (method svn-fetch)
+ (uri (svn-reference
+ (url "https://svn.filezilla-project.org/svn/libfilezilla/trunk")
+ (revision revision)))
+ (file-name (string-append name "-" version "-" (number->string revision)))
+ (sha256
+ (base32 "0x7lx8474xcqgp181kg8bw5c10nxd19hw8lhxa5fkry50mfqyzmj"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
(list "--disable-static")))
- (native-inputs
- (list cppunit gettext-minimal libxcrypt pkg-config))
- (inputs
- (list gnutls nettle))
- (home-page "https://lib.filezilla-project.org")
- (synopsis "Cross-platform C++ library used by Filezilla client")
- (description
- "This package provides some basic functionality to build high-performing,
+ (native-inputs
+ (list
+ cppunit
+ gettext-minimal
+ libxcrypt
+ pkg-config
+ autoconf
+ automake
+ libtool))
+ (inputs
+ (list gnutls nettle))
+ (home-page "https://lib.filezilla-project.org")
+ (synopsis "Cross-platform C++ library used by Filezilla client")
+ (description
+ "This package provides some basic functionality to build high-performing,
platform-independent programs.
Some of the highlights include:
@@ -240,7 +251,7 @@ (define-public libfilezilla
Simple process handling for spawning child processes with redirected input and
output.
@end itemize\n")
- (license gpl2+)))
+ (license gpl2+))))
(define-public filezilla
(package
--
2.49.0
[Message part 3 (message/rfc822, inline)]
Hi,
Ada Stevenson <adanskana <at> gmail.com> writes:
> * gnu/packages/ftp.scm (gnu): (libfilezilla): Update source origin.
> [source]: Replace `url-fetch` with `svn-fetch`.
> [native-inputs]: Add `automake`, `autoconf` and `libtool`.
[...]
> + (native-inputs
> + (list
> + cppunit
> + gettext-minimal
I tweaked the formatting here and applied it.
Thanks!
Ludo’.
This bug report was last modified 13 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.