Hello,
Thanks for the explanation about the licenses.
Attachment patch with suggested changes.
I don't see this in the sources
(https://svn.filezilla-project.org/filezilla/libfilezilla/tags/0.9.0/).
I'm
pretty sure those GPLv3 licensed files are part of the GNU
autotools rather than libfilezilla.
libfilezilla-0.9.0/config/test-driver:# the Free Software Foundation;
either version 2, or (at your option)
libfilezilla-0.9.0/configure:# published by the Free Software
Foundation; either version 2 of
libfilezilla-0.9.0/COPYING: the Free Software Foundation; either
version 2 of the License, or
libfilezilla-0.9.0/m4/ax_check_link_flag.m4:# Free Software
Foundation, either version 3 of the License, or (at your
libfilezilla-0.9.0/m4/ax_check_compile_flag.m4:# Free Software
Foundation, either version 3 of the License, or (at your
libfilezilla-0.9.0/m4/libtool.m4:# published by the Free Software
Foundation; either version 2 of
libfilezilla-0.9.0/m4/ax_append_flag.m4:# Free Software Foundation,
either version 3 of the License, or (at your
m4 is part of autotools, which is GPLv3. It's not part of the
libfilezilla project.
libfilezilla-0.9.0/README:the Free Software Foundation; either version
2 of the License, or
From 98a4d504c5330ffb27b956e7be6c3f806de7ba8a Mon Sep 17 00:00:00 2001
From: rennes <ren...@openmailbox.org>
Date: Tue, 14 Feb 2017 23:22:07 -0600
Subject: [PATCH 2/3] gnu: Add libfilezilla.
* gnu/packages/ftp.scm (libfilezilla): New variable.
---
gnu/packages/ftp.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm
index 7380fcfc3..60693aac6 100644
--- a/gnu/packages/ftp.scm
+++ b/gnu/packages/ftp.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2015 Andreas Enge <andr...@enge.fr>
;;; Copyright © 2015 Mark H Weaver <m...@netris.org>
;;; Copyright © 2016 Tobias Geerinckx-Rice <m...@tobias.gr>
+;;; Copyright © 2017 Rene Saavedra <ren...@openmailbox.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -26,6 +27,7 @@
#:use-module (guix packages)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
+ #:use-module (gnu packages check)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages readline)
@@ -159,3 +161,25 @@ maintaining a web page or other FTP archive. It synchronizes a set of
local files to a remote server by performing uploads and remote deletes
as required.")
(license gpl2+)))
+
+(define-public libfilezilla
+ (package
+ (name "libfilezilla")
+ (version "0.9.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://download.filezilla-project.org/";
+ name "/" name "-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "0340v5xs48f28q2d16ldb9359dkzlhl4l449mgyv3qabnlz2pl21"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("cppunit" ,cppunit)))
+ (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.")
+ (license gpl2+)))
--
2.11.0