guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/11: gnu: Add perl-file-zglob.


From: Ludovic Courtès
Subject: 08/11: gnu: Add perl-file-zglob.
Date: Sat, 2 Jul 2016 14:25:08 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 7640c62dd2863fdc04115ccb9d7c30c079b26ea8
Author: Alex Sassmannshausen <address@hidden>
Date:   Wed Jun 29 16:43:15 2016 +0200

    gnu: Add perl-file-zglob.
    
    * gnu/packages/perl.scm (perl-file-zglob): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/perl.scm |   45 +++++++++++++++++++++++++++++++--------------
 1 file changed, 31 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 6a99197..1a0c878 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -988,26 +988,23 @@ options.")
   (package
     (name "perl-config-ini")
     (version "0.025")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Config-INI-";
-             version
-             ".tar.gz"))
-       (sha256
-        (base32
-         "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
     (build-system perl-build-system)
     (inputs
      `(("perl-mixin-linewise" ,perl-mixin-linewise)
        ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
        ("perl-sub-exporter" ,perl-sub-exporter)))
-    (home-page
-     "http://search.cpan.org/dist/Config-INI";)
+    (home-page "http://search.cpan.org/dist/Config-INI";)
     (synopsis "Simple .ini-file format reader and writer")
-    (description "Config::INI provides a module that facilates the reading and
-writing of .ini style configuration files.")
+    (description "@code{Config::INI} is a module that facilates the reading
+and writing of @code{.ini}-style configuration files.")
     (license (package-license perl))))
 
 (define-public perl-context-preserve
@@ -2466,6 +2463,26 @@ shell.")
                               "File-Which-" version))
     (license (package-license perl))))
 
+(define-public perl-file-zglob
+  (package
+    (name "perl-file-zglob")
+    (version "0.11")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/File-Zglob";)
+    (synopsis "Extended Unix style glob functionality")
+    (description "@code{File::Zglob} provides a traditional Unix @code{glob}
+functionality; it returns a list of file names that match the given pattern.
+For instance, it supports the @code{**/*.pm} form.")
+    (license (package-license perl))))
+
 (define-public perl-getopt-long-descriptive
   (package
     (name "perl-getopt-long-descriptive")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]