From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH 1/7] gnu: Add Pod-Simple. Date: Sun, 23 Aug 2015 11:37:43 -0500 Message-ID: <20150823113743.2e0e8251@openmailbox.org> References: <1439841966-12052-1-git-send-email-eric@dvorsak.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49169) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTcqg-00076w-J6 for guix-devel@gnu.org; Sun, 23 Aug 2015 17:30:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTcqc-0007vs-Hj for guix-devel@gnu.org; Sun, 23 Aug 2015 17:30:42 -0400 Received: from smtp22.openmailbox.org ([62.4.1.56]:33515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTcqb-0007vV-NP for guix-devel@gnu.org; Sun, 23 Aug 2015 17:30:37 -0400 In-Reply-To: <1439841966-12052-1-git-send-email-eric@dvorsak.fr> 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: Eric Dvorsak Cc: guix-devel@gnu.org On Mon, 17 Aug 2015 22:06:00 +0200 Eric Dvorsak wrote: > * gnu/packages/perl.scm (perl-pod-simple): New variable. > --- > gnu/packages/perl.scm | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) >=20 > 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 =C2=A9 2013 Andreas Enge > ;;; Copyright =C2=A9 2015 Ricardo Wurmus > ;;; Copyright =C2=A9 2015 Eric Bavier > +;;; Copyright =C2=A9 2015 Eric Dvorsak > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -3941,6 +3942,25 @@ directory specifications in a cross-platform manne= r.") > for a given module is comprehensive.") > (license (package-license perl)))) > =20 > +(define-public perl-pod-simple > + (package > + (name "perl-pod-simple") > + (version "3.30") I pushed this patch with version "3.31" which was released today. ;) > + (source (origin > + (method url-fetch) > + (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELE= R/" > + "Pod-Simple-" version ".tar.gz")) I aligned the two arguments to 'string-append'. Thanks, `~Eric