From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8A1J-0004Gz-5Y for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8A1H-0000JV-TW for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43612) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8A1H-0000JL-OK for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h8A1H-0003Nz-Kr for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:03 -0400 Subject: [bug#34980] [PATCH 07/17] gnu: Add perl-template-tiny. Resent-Message-ID: From: Christopher Baines Date: Sun, 24 Mar 2019 20:46:22 +0000 Message-Id: <20190324204632.17055-7-mail@cbaines.net> In-Reply-To: <20190324204632.17055-1-mail@cbaines.net> References: <875zs8c8xg.fsf@cbaines.net> <20190324204632.17055-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34980@debbugs.gnu.org * gnu/packages/perl.scm (perl-template-tiny): 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 2856b4634d..78bbf73420 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -8082,6 +8082,32 @@ documents: HTML, XML, POD, PostScript, LaTeX, and so on.") processing in Perl code.") (license (list gpl3 artistic2.0)))) +(define-public perl-template-tiny + (package + (name "perl-template-tiny") + (version "1.12") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-" + version + ".tar.gz")) + (sha256 + (base32 + "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Template-Tiny") + (synopsis "Template Toolkit reimplemented in as little code as possible") + (description + "@code{Template::Tiny} is a reimplementation of a subset of the +functionality from Template Toolkit in as few lines of code as possible. + +It is intended for use in light-usage, low-memory, or low-cpu templating +situations, where you may need to upgrade to the full feature set in the +future, or if you want the retain the familiarity of TT-style templates.") + (license perl-license))) + (define-public perl-term-encoding (package (name "perl-term-encoding") -- 2.20.1