From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: Re: [PATCH 2/3] gnu: Add libfilezilla. Date: Sun, 12 Feb 2017 18:26:59 -0800 Message-ID: <87tw7y4yh8.fsf@gmail.com> References: <20170209163618.1759-1-rennes@openmailbox.org> <20170209163618.1759-3-rennes@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cd6Lz-00067L-8m for guix-devel@gnu.org; Sun, 12 Feb 2017 21:27:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cd6Lx-0008Oa-SB for guix-devel@gnu.org; Sun, 12 Feb 2017 21:26:59 -0500 Received: from mail-pg0-x241.google.com ([2607:f8b0:400e:c05::241]:35732) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cd6Lx-0008O6-LX for guix-devel@gnu.org; Sun, 12 Feb 2017 21:26:57 -0500 Received: by mail-pg0-x241.google.com with SMTP id 204so8409618pge.2 for ; Sun, 12 Feb 2017 18:26:57 -0800 (PST) In-Reply-To: <20170209163618.1759-3-rennes@openmailbox.org> (rennes@openmailbox.org's message of "Thu, 9 Feb 2017 10:36:17 -0600") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: rennes Cc: guix-devel Hi, rennes writes: > * 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..0fef1b160 100644 > --- a/gnu/packages/ftp.scm > +++ b/gnu/packages/ftp.scm > @@ -3,6 +3,7 @@ > ;;; Copyright =C2=A9 2015 Andreas Enge > ;;; Copyright =C2=A9 2015 Mark H Weaver > ;;; Copyright =C2=A9 2016 Tobias Geerinckx-Rice > +;;; Copyright =C2=A9 2017 Rene Saavedra > ;;; > ;;; 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)=20=20 > #: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 syn= chronizes 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 offering some basic functionality to build high-perfo= rming, > +platform-independent programs.") s/offering/offers/ or s/offering/provides/ > + (license gpl3+))) Only license information I could find is the COPYING file which is GPLv2. I think gpl2+ would be more appropriate. Maxim