From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 1/3] gnu: Add perl-shell-command Date: Sat, 13 Feb 2016 17:42:02 -0500 Message-ID: <20160213224202.GD1176@jasmine> References: <1455379675-27516-1-git-send-email-mail@cbaines.net> <1455379675-27516-2-git-send-email-mail@cbaines.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59132) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUit6-00005M-Sr for guix-devel@gnu.org; Sat, 13 Feb 2016 17:42:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aUit3-0000bz-MF for guix-devel@gnu.org; Sat, 13 Feb 2016 17:42:00 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:36883) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUit3-0000bu-Ii for guix-devel@gnu.org; Sat, 13 Feb 2016 17:41:57 -0500 Content-Disposition: inline In-Reply-To: <1455379675-27516-2-git-send-email-mail@cbaines.net> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Christopher Baines Cc: guix-devel@gnu.org On Sat, Feb 13, 2016 at 04:07:53PM +0000, Christopher Baines wrote: > This is required for the tests for vcsh. > > * gnu/packages/perl.scm (perl-shell-command): New variable. LGTM. If I am the one to push, I'll make some minor formatting changes and I'll add attribution for you. > --- > gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm > index 0e63aa9..5146828 100644 > --- a/gnu/packages/perl.scm > +++ b/gnu/packages/perl.scm > @@ -6277,4 +6277,28 @@ really be high enough to warrant the use of a keyword, and the size so small > such that being individual extensions would be wasteful.") > (license (package-license perl)))) > > +(define-public perl-shell-command > + (package > + (name "perl-shell-command") > + (version "0.06") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k")))) > + (build-system perl-build-system) > + (home-page > + "http://search.cpan.org/dist/Shell-Command") > + (synopsis > + "Cross-platform functions emulating common shell commands") > + (description > + "Thin wrapper around ExtUtils::Command. See ExtUtils::Command for a > + description of available commands.") > + (license (package-license perl)))) > + > ;;; END: Core module overrides > -- > 2.7.0 > >