* [PATCH] gnu: Add Text::NeatTemplate.
@ 2016-03-16 13:29 Jochem Raat
2016-03-16 13:51 ` Jean Louis
2016-03-17 4:46 ` Leo Famulari
0 siblings, 2 replies; 3+ messages in thread
From: Jochem Raat @ 2016-03-16 13:29 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 63 bytes --]
Hey Guix,
Here is a patch to add Text::NeatTemplate.
- Jochem
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-Text-NeatTemplate.patch --]
[-- Type: text/x-diff, Size: 2067 bytes --]
From b7e37093af7cf30bb7a39b7ab57b57c0c293b7bb Mon Sep 17 00:00:00 2001
From: Jochem Raat <jchmrt@riseup.net>
Date: Wed, 16 Mar 2016 14:12:08 +0100
Subject: [PATCH] gnu: Add Text::NeatTemplate.
* gnu/packages/perl.scm (perl-text-neattemplate): New variable.
---
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 <bavier@member.fsf.org>
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
;;;
;;; 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
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add Text::NeatTemplate.
2016-03-16 13:29 [PATCH] gnu: Add Text::NeatTemplate Jochem Raat
@ 2016-03-16 13:51 ` Jean Louis
2016-03-17 4:46 ` Leo Famulari
1 sibling, 0 replies; 3+ messages in thread
From: Jean Louis @ 2016-03-16 13:51 UTC (permalink / raw)
To: Jochem Raat; +Cc: guix-devel
Hello that is great Jochem.
On Wed, Mar 16, 2016 at 02:29:42PM +0100, Jochem Raat wrote:
> Hey Guix,
>
> Here is a patch to add Text::NeatTemplate.
>
> - Jochem
> From b7e37093af7cf30bb7a39b7ab57b57c0c293b7bb Mon Sep 17 00:00:00 2001
> From: Jochem Raat <jchmrt@riseup.net>
> Date: Wed, 16 Mar 2016 14:12:08 +0100
> Subject: [PATCH] gnu: Add Text::NeatTemplate.
>
> * gnu/packages/perl.scm (perl-text-neattemplate): New variable.
> ---
> 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 <bavier@member.fsf.org>
> ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
> ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
> +;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
> ;;;
> ;;; 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
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gnu: Add Text::NeatTemplate.
2016-03-16 13:29 [PATCH] gnu: Add Text::NeatTemplate Jochem Raat
2016-03-16 13:51 ` Jean Louis
@ 2016-03-17 4:46 ` Leo Famulari
1 sibling, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2016-03-17 4:46 UTC (permalink / raw)
To: Jochem Raat; +Cc: guix-devel
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 <bavier@member.fsf.org>
> ;;; Copyright ?? 2015 Eric Dvorsak <eric@dvorsak.fr>
> ;;; Copyright ?? 2016 Mark H Weaver <mhw@netris.org>
> +;;; Copyright ?? 2016 Jochem Raat <jchmrt@riseup.net>
> ;;;
> ;;; 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
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-03-17 4:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 13:29 [PATCH] gnu: Add Text::NeatTemplate Jochem Raat
2016-03-16 13:51 ` Jean Louis
2016-03-17 4:46 ` Leo Famulari
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).