From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Sassmannshausen Subject: [PATCH 2/3] gnu: Add perl-list-compare. Date: Sat, 2 Jul 2016 20:34:53 +0200 Message-ID: <20160702183454.29006-3-alex@pompo.co> References: <20160702183454.29006-1-alex@pompo.co> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55360) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJPl7-0003OK-SQ for guix-devel@gnu.org; Sat, 02 Jul 2016 14:35:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJPl2-00012f-Vt for guix-devel@gnu.org; Sat, 02 Jul 2016 14:35:17 -0400 Received: from mail.pompo.co ([87.243.223.35]:35579 helo=ronja.pompo.co) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJPl2-00012N-Nf for guix-devel@gnu.org; Sat, 02 Jul 2016 14:35:12 -0400 In-Reply-To: <20160702183454.29006-1-alex@pompo.co> 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: guix-devel@gnu.org * gnu/packages/perl.scm (perl-list-compare): New variable. --- gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 8a39ba8..f169a13 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -3010,6 +3010,30 @@ one: logging, exceptions, and translations.") List::Util or List::MoreUtils defines, with preference to List::Util.") (license (package-license perl)))) +(define-public perl-list-compare + (package + (name "perl-list-compare") + (version "0.53") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-" + version + ".tar.gz")) + (sha256 + (base32 + "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx")))) + (build-system perl-build-system) + (native-inputs + `(("perl-io-captureoutput" ,perl-io-captureoutput))) + (home-page "http://search.cpan.org/dist/List-Compare") + (synopsis "Compare elements of two or more lists") + (description "@code{List::Compare} provides a module to perform +comparative operations on two or more lists. Provided operations include +intersections, unions, unique elements, complements and many more.") + (license (package-license perl)))) + (define-public perl-list-moreutils (package (name "perl-list-moreutils") -- 2.8.4