GNU bug report logs - #77689
[PATCH] gnu: libfilezilla: Update source origin.

Previous Next

Package: guix-patches;

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.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 77689 in the body.
You can then email your comments to 77689 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#77689; Package guix-patches. (Thu, 10 Apr 2025 06:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ada Stevenson <adanskana <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 10 Apr 2025 06:52:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Ada Stevenson <adanskana <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Ada Stevenson <adanskana <at> gmail.com>
Subject: [PATCH] gnu: libfilezilla: Update source origin.
Date: Thu, 10 Apr 2025 14:50:59 +0800
* 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





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Tue, 06 May 2025 10:32:04 GMT) Full text and rfc822 format available.

Notification sent to Ada Stevenson <adanskana <at> gmail.com>:
bug acknowledged by developer. (Tue, 06 May 2025 10:32:04 GMT) Full text and rfc822 format available.

Message #10 received at 77689-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Ada Stevenson <adanskana <at> gmail.com>
Cc: 77689-done <at> debbugs.gnu.org
Subject: Re: [bug#77689] [PATCH] gnu: libfilezilla: Update source origin.
Date: Tue, 06 May 2025 12:07:59 +0200
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’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 03 Jun 2025 11:24:48 GMT) Full text and rfc822 format available.

This bug report was last modified 12 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.