From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 2/4] gnu: Add r-bigmemory-sri. Date: Fri, 04 Nov 2016 14:21:53 +0100 Message-ID: <87fun79y8e.fsf@elephly.net> References: <87a8dohd7q.fsf@gnu.org> <87lgx8jja2.fsf@elephly.net> <87lgx4c1wj.fsf@gnu.org> <87k2ckn0x1.fsf@gnu.org> <87fun8ir2f.fsf@elephly.net> <87ins4mxzn.fsf@gnu.org> <87eg2sinap.fsf@elephly.net> <87eg2rfks8.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c2eRe-0002ZT-Nf for guix-devel@gnu.org; Fri, 04 Nov 2016 09:22:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c2eRZ-0004J6-40 for guix-devel@gnu.org; Fri, 04 Nov 2016 09:22:10 -0400 In-reply-to: <87eg2rfks8.fsf@gnu.org> 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: Roel Janssen Cc: guix-devel@gnu.org Roel Janssen writes: >> Your patch is fine if you add a comment above the license field that >> states that these one of these two licenses may be choosen. > > Right. Would the following patch be alright then: > > modified gnu/packages/statistics.scm > @@ -2787,6 +2787,26 @@ Fourier transform, fuzzy clustering, support vector machines, shortest path > computation, bagged clustering, naive Bayes classifier, and more.") > (license license:gpl2+))) > > +(define-public r-bigmemory-sri > + (package > + (name "r-bigmemory-sri") > + (version "0.1.3") > + (source > + (origin > + (method url-fetch) > + (uri (cran-uri "bigmemory.sri" version)) > + (sha256 > + (base32 "0mg14ilwdkd64q2ri9jdwnk7mp55dqim7xfifrs65sdsv1934h2m")))) > + (properties > + `((upstream-name . "bigmemory.sri"))) > + (build-system r-build-system) > + (home-page "http://cran.r-project.org/web/packages/bigmemory.sri") > + (synopsis "Shared resource interface for the bigmemory package") > + (description "This package provides a shared resource interface for the > +bigmemory and synchronicity packages.") > + ;; Users can choose either LGPLv3 or ASL2.0. > + (license (list license:lgpl3 license:asl2.0)))) > + > (define-public r-nmf > (package > (name "r-nmf") Perfect! Thanks! ~~ Ricardo