From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 1/3] gnu: Add r-gdtools. Date: Wed, 06 Jul 2016 07:27:42 +0200 Message-ID: <87k2gzl4j5.fsf@elephly.net> References: <20160705130635.668-1-donttrustben@gmail.com> <20160705130635.668-2-donttrustben@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKfNM-0006ya-8I for guix-devel@gnu.org; Wed, 06 Jul 2016 01:27:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bKfNH-0002oM-Uc for guix-devel@gnu.org; Wed, 06 Jul 2016 01:27:55 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:24982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bKfNH-0002oC-M8 for guix-devel@gnu.org; Wed, 06 Jul 2016 01:27:51 -0400 In-reply-to: <20160705130635.668-2-donttrustben@gmail.com> 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: Ben Woodcroft Cc: guix-devel@gnu.org Ben Woodcroft writes: > * gnu/packages/statistics.scm (r-gdtools): New variable. > --- > gnu/packages/statistics.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm > index 73c30ae..24fbabe 100644 > --- a/gnu/packages/statistics.scm > +++ b/gnu/packages/statistics.scm > @@ -610,6 +610,30 @@ multidimensional conditioning system and a consistent interface to map data to > aesthetic attributes.") > (license license:gpl2+))) > > +(define-public r-gdtools > + (package > + (name "r-gdtools") > + (version "0.0.7") > + (source > + (origin > + (method url-fetch) > + (uri (cran-uri "gdtools" version)) > + (sha256 > + (base32 > + "1bmnf9d677f2jy8jnb9ymjz1qzm4yrd0qp6k5qrrly06jfffyx7g")))) > + (build-system r-build-system) > + (native-inputs > + `(("r-rcpp" ,r-rcpp) > + ("pkg-config" ,pkg-config))) > + (inputs > + `(("cairo" ,cairo))) > + (home-page "http://cran.r-project.org/web/packages/gdtools") > + (synopsis "Utilities for graphical rendering") > + (description > + "The @code{gdtools} package provides functionalities to get font metrics > +and to generate base64 encoded string from raster matrix.") > + (license license:gpl3))) > + Looks like this is indeed “GPLv3 only”. The README states “The gdtools package is licensed under the GPLv3.” Without that notice it would have been GPLv3 or later, because that’s how the license field in DESCRIPTION files is usually interpreted. This patch looks good to me. Thanks! ~~ Ricardo