From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean Louis Subject: Re: [PATCH] gnu: Add Text::NeatTemplate. Date: Wed, 16 Mar 2016 14:51:02 +0100 Message-ID: <20160316135102.GZ3346@protected.rcdrun.com> References: <20160316142942.3f599f69@riseup.net> 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]:36627) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agBsK-0006iY-F4 for guix-devel@gnu.org; Wed, 16 Mar 2016 09:52:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1agBsE-0007ml-Fn for guix-devel@gnu.org; Wed, 16 Mar 2016 09:52:36 -0400 Received: from stw1.rcdrun.com ([217.170.207.13]:35037) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agBsE-0007Xt-8b for guix-devel@gnu.org; Wed, 16 Mar 2016 09:52:30 -0400 Content-Disposition: inline In-Reply-To: <20160316142942.3f599f69@riseup.net> 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: Jochem Raat Cc: guix-devel@gnu.org Hello that is great Jochem. On Wed, Mar 16, 2016 at 02:29:42PM +0100, Jochem Raat wrote: > Hey Guix, >=20 > Here is a patch to add Text::NeatTemplate. >=20 > - Jochem > From b7e37093af7cf30bb7a39b7ab57b57c0c293b7bb Mon Sep 17 00:00:00 2001 > From: Jochem Raat > Date: Wed, 16 Mar 2016 14:12:08 +0100 > Subject: [PATCH] gnu: Add Text::NeatTemplate. >=20 > * gnu/packages/perl.scm (perl-text-neattemplate): New variable. > --- > gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) >=20 > diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm > index d67870f..fb42735 100644 > --- a/gnu/packages/perl.scm > +++ b/gnu/packages/perl.scm > @@ -5,6 +5,7 @@ > ;;; Copyright =C3=82=C2=A9 2015, 2016 Eric Bavier > ;;; Copyright =C3=82=C2=A9 2015 Eric Dvorsak > ;;; Copyright =C3=82=C2=A9 2016 Mark H Weaver > +;;; Copyright =C3=82=C2=A9 2016 Jochem Raat > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -5695,6 +5696,31 @@ used to match against text, rather than fetching = names from a filesystem. If > you want to do full file globbing use the File::Glob module instead.") > (license (package-license perl)))) > =20 > +(define-public perl-text-neattemplate > + (package > + (name "perl-text-neattemplate") > + (version "0.1101") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/" > + "Text-NeatTemplate-" version ".tar.gz")) > + (sha256 > + (base32 > + "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3")))) > + (build-system perl-build-system) > + (native-inputs > + `(("perl-module-build" ,perl-module-build))) > + (home-page > + "http://search.cpan.org/dist/Text-NeatTemplate") > + (synopsis "Fast, middleweight template engine") > + (description > + "Text::NeatTemplate provides a simple, middleweight but fast > +template engine, for when you need speed rather than complex features, > +yet need more features than simple variable substitution.") > + (license (package-license perl)))) > + > (define-public perl-text-simpletable > (package > (name "perl-text-simpletable") > --=20 > 2.6.3 >=20