unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/7] gnu: Add Pod-Simple.
@ 2015-08-17  2:05 Eric Dvorsak
  2015-08-16 23:17 ` Eric Bavier
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Eric Dvorsak @ 2015-08-17  2:05 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/perl.scm (perl-pod-simple): 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 d2e38cc..7318542 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
+;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3941,6 +3942,26 @@ directory specifications in a cross-platform manner.")
 for a given module is comprehensive.")
     (license (package-license perl))))
 
+(define-public perl-pod-simple
+  (package
+    (name "perl-pod-simple")
+    (version "3.30_1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://search.cpan.org/CPAN/authors/id/M/"
+                                  "MA/MARCGREEN/Pod-Simple-" version
+                                  ".tar.gz"))
+              (sha256
+               (base32
+                "0yzy7mw2jriwcywmh38csjqrwxj207b2b7rlpvkdh1rq5828hary"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/~marcgreen/Pod-Simple/lib/Pod/Simple.pod")
+    (synopsis "Parsing library for text in Pod format")
+    (description "Pod::Simple is a Perl library for parsing text in
+the Pod (plain old documentation) markup language that is typically
+used for writing documentation for Perl and for Perl modules.")
+    (license (package-license perl))))
+
 (define-public perl-posix-strftime-compiler
   (package
     (name "perl-posix-strftime-compiler")
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 14+ messages in thread
* [PATCH 1/7] gnu: Add Pod-Simple.
@ 2015-08-17  3:05 Eric Dvorsak
  2015-08-17  3:05 ` [PATCH 5/7] gnu: Add i3-wm Eric Dvorsak
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Dvorsak @ 2015-08-17  3:05 UTC (permalink / raw)
  To: guix-devel

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index d2e38cc..2e7df22 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
+;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3941,6 +3942,28 @@ directory specifications in a cross-platform manner.")
 for a given module is comprehensive.")
     (license (package-license perl))))
 
+(define-public perl-pod-simple
+  (package
+    (name "perl-pod-simple")
+    (version "3.30-1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://search.cpan.org/CPAN/authors/id/M/"
+                                  "MA/MARCGREEN/Pod-Simple-"
+                                  (string-join (string-split version #\-) "_")
+                                  ".tar.gz"))
+              (sha256
+               (base32
+                "0yzy7mw2jriwcywmh38csjqrwxj207b2b7rlpvkdh1rq5828hary"))))
+    (build-system perl-build-system)
+    (home-page
+     "http://search.cpan.org/~marcgreen/Pod-Simple/lib/Pod/Simple.pod")
+    (synopsis "Parsing library for text in Pod format")
+    (description "Pod::Simple is a Perl library for parsing text in
+the Pod (plain old documentation) markup language that is typically
+used for writing documentation for Perl and for Perl modules.")
+    (license (package-license perl))))
+
 (define-public perl-posix-strftime-compiler
   (package
     (name "perl-posix-strftime-compiler")
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 14+ messages in thread
* [PATCH 1/7] gnu: Add Pod-Simple.
@ 2015-08-17 20:06 Eric Dvorsak
  2015-08-17 20:06 ` [PATCH 5/7] gnu: Add i3-wm Eric Dvorsak
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Dvorsak @ 2015-08-17 20:06 UTC (permalink / raw)
  To: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1698 bytes --]

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index d2e38cc..8f9d599 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
+;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3941,6 +3942,25 @@ directory specifications in a cross-platform manner.")
 for a given module is comprehensive.")
     (license (package-license perl))))
 
+(define-public perl-pod-simple
+  (package
+    (name "perl-pod-simple")
+    (version "3.30")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
+                    "Pod-Simple-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0yzy7mw2jriwcywmh38csjqrwxj207b2b7rlpvkdh1rq5828hary"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/Pod-Simple/")
+    (synopsis "Parsing library for text in Pod format")
+    (description "Pod::Simple is a Perl library for parsing text in
+the Pod (plain old documentation) markup language that is typically
+used for writing documentation for Perl and for Perl modules.")
+    (license (package-license perl))))
+
 (define-public perl-posix-strftime-compiler
   (package
     (name "perl-posix-strftime-compiler")
-- 
2.4.3

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

end of thread, other threads:[~2015-08-23 21:38 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-17  2:05 [PATCH 1/7] gnu: Add Pod-Simple Eric Dvorsak
2015-08-16 23:17 ` Eric Bavier
2015-08-17  2:05 ` [PATCH 2/7] gnu: Add libyajl Eric Dvorsak
2015-08-16 23:27   ` Eric Bavier
2015-08-17  2:05 ` [PATCH 3/7] gnu: Add libev Eric Dvorsak
2015-08-16 23:34   ` Eric Bavier
2015-08-17  2:05 ` [PATCH 4/7] gnu: Add xcb-util-cursor Eric Dvorsak
2015-08-17  2:06 ` [PATCH 5/7] gnu: Add i3-wm Eric Dvorsak
2015-08-17  2:06 ` [PATCH 6/7] gnu: Add libconfuse Eric Dvorsak
2015-08-17  2:06 ` [PATCH 7/7] gnu: Add i3status Eric Dvorsak
  -- strict thread matches above, loose matches on Subject: below --
2015-08-17  3:05 [PATCH 1/7] gnu: Add Pod-Simple Eric Dvorsak
2015-08-17  3:05 ` [PATCH 5/7] gnu: Add i3-wm Eric Dvorsak
2015-08-16 23:48   ` Eric Bavier
2015-08-17 20:06 [PATCH 1/7] gnu: Add Pod-Simple Eric Dvorsak
2015-08-17 20:06 ` [PATCH 5/7] gnu: Add i3-wm Eric Dvorsak
2015-08-23 16:45   ` Eric Bavier

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).