From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dfUOs-0000jj-CN for guix-patches@gnu.org; Wed, 09 Aug 2017 13:04:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfUOo-0005aB-Fn for guix-patches@gnu.org; Wed, 09 Aug 2017 13:04:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dfUOo-0005a5-DJ for guix-patches@gnu.org; Wed, 09 Aug 2017 13:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dfUOo-0007YB-5B for guix-patches@gnu.org; Wed, 09 Aug 2017 13:04:02 -0400 Subject: [bug#28028] [PATCH 6/9] gnu: Add perl-ref-util-xs. Resent-Message-ID: From: Ricardo Wurmus Date: Wed, 9 Aug 2017 19:00:34 +0200 Message-ID: <20170809170037.14230-6-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20170809170037.14230-1-ricardo.wurmus@mdc-berlin.de> References: <20170809170037.14230-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28028@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/perl.scm (perl-ref-util-xs): New variable. --- gnu/packages/perl.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index f77cf0703..123d2a3c7 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5733,6 +5733,27 @@ can also be useful as a development and debugging tool for catching updates to variables that should not be changed.") (license (package-license perl)))) +(define-public perl-ref-util-xs + (package + (name "perl-ref-util-xs") + (version "0.116") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/" + "Ref-Util-XS-" version ".tar.gz")) + (sha256 + (base32 + "0l5dzbd71iclv8fdjk7685rq6pbfiiydh0n70br6g9l9iy2smr6f")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Ref-Util-XS") + (synopsis "XS implementation for Ref::Util") + (description "@code{Ref::Util::XS} is the XS implementation of +@code{Ref::Util}, which provides several functions to help identify references +in a more convenient way than the usual approach of examining the return value +of @code{ref}.") + (license x11))) + (define-public perl-regexp-common (package (name "perl-regexp-common") -- 2.13.2