On 18/02/16 19:55, Andreas Enge wrote:
> On Wed, Feb 17, 2016 at 07:15:23PM -0500, Leo Famulari wrote:
>> The commit that removes the module only makes sense in the context of
>> adding vcsh. It's analogous to adding a module that is required for a
>> new package, and that is done in a single commit. So, I think it's
>> better to squash the commits.
> 
> Yes, I agree it could/should be done at the same time as adding vcsh.
> First of all, we will need to get perl-shell-command in; I do not find
> the patch any more. Leo, if you still have it and it looks good, could
> you please push it? Otherwise, Christopher, could you resend it?

You can find it here [1], I have also attached it to this email.

1: https://lists.gnu.org/archive/html/guix-devel/2016-02/msg00524.html

From cf1f343ab00a5ee31cfb650ec0033023cb0d0e02 Mon Sep 17 00:00:00 2001
From: Christopher Baines <m...@cbaines.net>
Date: Sat, 13 Feb 2016 23:40:22 +0000
Subject: [PATCH 1/3] gnu: Add perl-shell-command

This is required for the tests for vcsh.

* gnu/packages/perl.scm (perl-shell-command): 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 0e63aa9..868f53c 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

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to