unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add perl-zip.
@ 2014-10-10  3:54 John Darrington
  2014-10-10 12:15 ` Ludovic Courtès
  2014-10-10 12:50 ` Eric Bavier
  0 siblings, 2 replies; 5+ messages in thread
From: John Darrington @ 2014-10-10  3:54 UTC (permalink / raw)
  To: guix-devel; +Cc: John Darrington

* gnu/packages/zip.scm (perl-zip): New variable.
---
 gnu/packages/zip.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/zip.scm b/gnu/packages/zip.scm
index 13dc62c..7fce124 100644
--- a/gnu/packages/zip.scm
+++ b/gnu/packages/zip.scm
@@ -24,6 +24,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages perl)
+  #:use-module (guix build-system perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python))
 
@@ -134,3 +135,24 @@ UnZip recreates the stored directory structure by default.")
     (description
      "zziplib is a library based on zlib for accessing zip files.")
     (license license:lgpl2.0+)))
+
+
+(define-public perl-zip
+  (package
+    (name "perl-zip")
+    (version "1.30")
+    (source 
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-" 
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
+    (build-system perl-build-system)
+    (synopsis "")
+    (description
+     "This modugiven at XML::Parser creation time.")
+    (home-page "http://search.cpan.org/~toddr/XML-Parser-2.41/Parser.pm")
+    (license (package-license perl))))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add perl-zip.
  2014-10-10  3:54 [PATCH] gnu: Add perl-zip John Darrington
@ 2014-10-10 12:15 ` Ludovic Courtès
  2014-10-10 12:50 ` Eric Bavier
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2014-10-10 12:15 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel

John Darrington <jmd@gnu.org> skribis:

> * gnu/packages/zip.scm (perl-zip): New variable.

OK!  Thanks.

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add perl-zip.
  2014-10-10  3:54 [PATCH] gnu: Add perl-zip John Darrington
  2014-10-10 12:15 ` Ludovic Courtès
@ 2014-10-10 12:50 ` Eric Bavier
  2014-10-10 17:33   ` John Darrington
  1 sibling, 1 reply; 5+ messages in thread
From: Eric Bavier @ 2014-10-10 12:50 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel


John Darrington writes:

> +    (synopsis "")
> +    (description
> +     "This modugiven at XML::Parser creation time.")

Could you provide a synopsis, and take another look at the description?

-- 
Eric Bavier

Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] gnu: Add perl-zip.
  2014-10-10 12:50 ` Eric Bavier
@ 2014-10-10 17:33   ` John Darrington
  2014-10-10 20:30     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: John Darrington @ 2014-10-10 17:33 UTC (permalink / raw)
  To: guix-devel; +Cc: John Darrington

* gnu/packages/zip.scm (perl-zip): New variable.
---
 gnu/packages/zip.scm |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/zip.scm b/gnu/packages/zip.scm
index 13dc62c..e8de7b3 100644
--- a/gnu/packages/zip.scm
+++ b/gnu/packages/zip.scm
@@ -24,6 +24,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages perl)
+  #:use-module (guix build-system perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python))
 
@@ -134,3 +135,24 @@ UnZip recreates the stored directory structure by default.")
     (description
      "zziplib is a library based on zlib for accessing zip files.")
     (license license:lgpl2.0+)))
+
+
+(define-public perl-zip
+  (package
+    (name "perl-zip")
+    (version "1.30")
+    (source 
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-" 
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
+    (build-system perl-build-system)
+    (synopsis  "Provides an interface to ZIP archive files")
+    (description "The Archive::Zip module allows a Perl program to create,
+manipulate, read, and write Zip archive files.")
+    (home-page "http://search.cpan.org/~adamk/Archive-Zip-1.30/")
+    (license (package-license perl))))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add perl-zip.
  2014-10-10 17:33   ` John Darrington
@ 2014-10-10 20:30     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2014-10-10 20:30 UTC (permalink / raw)
  To: John Darrington; +Cc: guix-devel

John Darrington <jmd@gnu.org> skribis:

> * gnu/packages/zip.scm (perl-zip): New variable.

Looks better, OK to commit (and thanks, Eric.)

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-10-10 20:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-10  3:54 [PATCH] gnu: Add perl-zip John Darrington
2014-10-10 12:15 ` Ludovic Courtès
2014-10-10 12:50 ` Eric Bavier
2014-10-10 17:33   ` John Darrington
2014-10-10 20:30     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).