From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add Text::NeatTemplate. Date: Thu, 17 Mar 2016 00:46:20 -0400 Message-ID: <20160317044620.GE8344@jasmine> References: <20160316142942.3f599f69@riseup.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agPpK-0005ro-Al for guix-devel@gnu.org; Thu, 17 Mar 2016 00:46:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1agPpG-0003k3-9C for guix-devel@gnu.org; Thu, 17 Mar 2016 00:46:26 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:48837) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agPpG-0003jv-2f for guix-devel@gnu.org; Thu, 17 Mar 2016 00:46:22 -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 On Wed, Mar 16, 2016 at 02:29:42PM +0100, Jochem Raat wrote: > * gnu/packages/perl.scm (perl-text-neattemplate): New variable. Thanks, looks good! I changed the commit message to refer to the name of the variable, and pushed as 65829fec47. > --- > gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > 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 ?? 2015, 2016 Eric Bavier > ;;; Copyright ?? 2015 Eric Dvorsak > ;;; Copyright ?? 2016 Mark H Weaver > +;;; Copyright ?? 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)))) > > +(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") > -- > 2.6.3 >