r75870 - in /trunk/libtemplate-tiny-perl: Changes META.yml Makefile.PL README debian/changelog debian/compat debian/control debian/copyright lib/Template/Tiny.pm t/02_trivial.t t/05_preparse.t xt/meta.t xt/pmv.t xt/pod.t

fabreg-guest at users.alioth.debian.org fabreg-guest at users.alioth.debian.org
Fri Jun 17 10:27:04 UTC 2011


Author: fabreg-guest
Date: Fri Jun 17 10:27:01 2011
New Revision: 75870

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75870
Log:
Updated package

Modified:
    trunk/libtemplate-tiny-perl/Changes
    trunk/libtemplate-tiny-perl/META.yml
    trunk/libtemplate-tiny-perl/Makefile.PL
    trunk/libtemplate-tiny-perl/README
    trunk/libtemplate-tiny-perl/debian/changelog
    trunk/libtemplate-tiny-perl/debian/compat
    trunk/libtemplate-tiny-perl/debian/control
    trunk/libtemplate-tiny-perl/debian/copyright
    trunk/libtemplate-tiny-perl/lib/Template/Tiny.pm
    trunk/libtemplate-tiny-perl/t/02_trivial.t
    trunk/libtemplate-tiny-perl/t/05_preparse.t
    trunk/libtemplate-tiny-perl/xt/meta.t
    trunk/libtemplate-tiny-perl/xt/pmv.t
    trunk/libtemplate-tiny-perl/xt/pod.t

Modified: trunk/libtemplate-tiny-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/Changes?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/Changes (original)
+++ trunk/libtemplate-tiny-perl/Changes Fri Jun 17 10:27:01 2011
@@ -1,8 +1,13 @@
 Changes for Perl extension Template-Tiny
 
+1.12 Fri 17 Jun 2011
+	- Template::Tiny is unchanged for a year, moving to stable release
+	- Cleaning up POD grammar a bit (ADAMK)
+	- Removing test dependency on Capture::Tiny for tiny purity (ADAMK)
+
 0.11 Mon 22 Feb 2010
-	- Adding preparse-specific test script
-	- Add compatibility with the horrible TT process()  signature (MSTROUT)
+	- Adding preparse-specific test script (ADAMK)
+	- Add compatibility with the horrible TT process() signature (MSTROUT)
 
 0.10 Sun 24 Jan 2010
 	- The use of the constructor is now compulsory, as per Template.pm

Modified: trunk/libtemplate-tiny-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/META.yml?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/META.yml (original)
+++ trunk/libtemplate-tiny-perl/META.yml Fri Jun 17 10:27:01 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Template-Tiny
-version:            0.11
+version:            1.12
 abstract:           Template Toolkit reimplemented in as little code as possible
 author:
     - Adam Kennedy <adamk at cpan.org>
@@ -9,18 +9,16 @@
 configure_requires:
     ExtUtils::MakeMaker:  0
 build_requires:
-    ExtUtils::MakeMaker:  0
+    Test::More:  0.47
 requires:
-    Capture::Tiny:  0.07
-    perl:           5.00503
-    Test::More:     0.47
+    perl:  5.00503
 resources:
     repository:  http://svn.ali.as/cpan/trunk/Template-Tiny
 no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: trunk/libtemplate-tiny-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/Makefile.PL?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/Makefile.PL (original)
+++ trunk/libtemplate-tiny-perl/Makefile.PL Fri Jun 17 10:27:01 2011
@@ -2,13 +2,19 @@
 use vars qw{$VERSION};
 BEGIN {
 	require 5.003_96;
-	$VERSION = '0.11';
+	$VERSION = '1.12';
 }
 use ExtUtils::MakeMaker;
 
 WriteMakefile1(
+	NAME             => 'Template::Tiny',
+	ABSTRACT         => 'Template Toolkit reimplemented in as little code as possible',
+	VERSION          => $VERSION,
+	PREREQ_PM        => { },
+	AUTHOR           => 'Adam Kennedy <adamk at cpan.org>',
+	LICENSE          => 'perl',
 	MIN_PERL_VERSION => '5.00503', # from Tiny.pm
-	META_MERGE => {
+	META_MERGE       => {
 		resources => {
 			repository => 'http://svn.ali.as/cpan/trunk/Template-Tiny',
 		},
@@ -17,14 +23,7 @@
 		# Skip on Windows to avoid breaking ActivePerl PPMs
 		# 0.47 means 5.6.2 or newer, which everyone on Win32 has.
 		($^O eq 'MSWin32' ? () : ('Test::More' => '0.47')),
-		'Capture::Tiny' => '0.07',
 	},
-	NAME      => 'Template::Tiny',
-	ABSTRACT  => 'Template Toolkit reimplemented in as little code as possible',
-	VERSION   => $VERSION,
-	PREREQ_PM => { },
-	AUTHOR    => 'Adam Kennedy <adamk at cpan.org>',
-	LICENSE   => 'perl',
 );
 
 # Written by Alexandr Ciornii, version 0.20. Added by eumm-upgrade.
@@ -39,9 +38,9 @@
 		delete $params{BUILD_REQUIRES};
 	}
 	delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
-	delete $params{META_MERGE} if $eumm_version < 6.46;
-	delete $params{LICENSE} if $eumm_version < 6.31;
-	delete $params{AUTHOR} if $] < 5.005;
+	delete $params{META_MERGE}       if $eumm_version < 6.46;
+	delete $params{LICENSE}          if $eumm_version < 6.31;
+	delete $params{AUTHOR}           if $] < 5.005;
 
 	WriteMakefile(%params);
 }

Modified: trunk/libtemplate-tiny-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/README?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/README (original)
+++ trunk/libtemplate-tiny-perl/README Fri Jun 17 10:27:01 2011
@@ -13,20 +13,16 @@
       END_TEMPLATE
 
 DESCRIPTION
-    WARNING: THIS MODULE IS EXPERIMENTAL AND SUBJECT TO CHANGE WITHOUT
-    NOTICE
-
-    YOU HAVE BEEN WARNED!
-
-    Template::Tiny is a reimplementation of a partial subset of the Template
-    Toolkit in as few lines of code as possible.
+    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 familiarity of TT-style templates.
+    future, or if you want the retain the familiarity of TT-style templates.
 
-    It is intended to have fully-compatible template and stash usage, with a
-    limited by similar Perl API.
+    For the subset of functionality it implements, it has fully-compatible
+    template and stash API. All templates used with Template::Tiny should be
+    able to be transparently upgraded to full Template Toolkit.
 
     Unlike Template Toolkit, Template::Tiny will process templates without a
     compile phase (but despite this is still quicker, owing to heavy use of
@@ -35,29 +31,34 @@
   SUPPORTED USAGE
     Only the default "[% %]" tag style is supported.
 
-    Both the [%+ +%] style explicit whitespace and the [%- -%] style
-    explicit chomp are support, although the [%+ +%] version is unneeded as
-    Template::Tiny does not support default-enabled PRE_CHOMP or POST_CHOMP.
+    Both the "[%+ +%]" style explicit whitespace and the "[%- -%]" style
+    explicit chomp are support, although the "[%+ +%]" version is unneeded
+    in practice as Template::Tiny does not support default-enabled
+    "PRE_CHOMP" or "POST_CHOMP".
 
-    Variable expressions in the form foo.bar.baz are supported.
+    Variable expressions in the form "[% foo.bar.baz %]" are supported.
 
-    Appropriate simple behaviours for ARRAY reference, HASH reference and
-    objects are supported, but not "VMethods" such as array lengths.
+    Appropriate simple behaviours for "ARRAY" references, "HASH" references
+    and objects are supported. "VMethods" such as [% array.length %] are not
+    supported at this time.
 
-    IF, ELSE and UNLESS conditions are supported, but only with simple
-    foo.bar.baz conditions.
+    "IF", "ELSE" and "UNLESS" conditional blocks are supported, but only
+    with simple "[% foo.bar.baz %]" conditions.
 
-    Support for looping is available, in the most simple [% FOREACH item IN
-    list %] form.
+    Support for looping (or rather iteration) is available in simple "[%
+    FOREACH item IN list %]" form is supported. Other loop structures are
+    not supported. Because support for arbitrary or infinite looping is not
+    available, Template::Tiny templates are not turing complete. This is
+    intentional.
 
-    All four IF/ELSE/UNLESS/FOREACH control structures are able to be nested
-    to arbitrary depth.
+    All of the four supported control structures
+    "IF"/"ELSE"/"UNLESS"/"FOREACH" can be nested to arbitrary depth.
 
     The treatment of "_private" hash and method keys is compatible with
     Template Toolkit, returning null or false rather than the actual content
     of the hash key or method.
 
-    Anything beyond this is currently out of scope
+    Anything beyond the above is currently out of scope.
 
 METHODS
   new
@@ -75,7 +76,7 @@
     ignored.
 
   process
-      # DEPRECATED: Return template results
+      # DEPRECATED: Return template results (emits a warning)
       my $text = $template->process( \$input, $vars );
       
   # Print template results to STDOUT
@@ -100,7 +101,7 @@
     caller.
 
     If "process" is called without a third parameter, and in void context,
-    the template results will be print()ed to the currently selected file
+    the template results will be "print()"ed to the currently selected file
     handle (probably "STDOUT") for compatibility with Template.
 
 SUPPORT
@@ -115,10 +116,10 @@
     Adam Kennedy <adamk at cpan.org>
 
 SEE ALSO
-    Config::Simple
+    Config::Tiny, CSS::Tiny, YAML::Tiny
 
 COPYRIGHT
-    Copyright 2009 - 2010 Adam Kennedy.
+    Copyright 2009 - 2011 Adam Kennedy.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.

Modified: trunk/libtemplate-tiny-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/debian/changelog?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/debian/changelog (original)
+++ trunk/libtemplate-tiny-perl/debian/changelog Fri Jun 17 10:27:01 2011
@@ -1,3 +1,13 @@
+libtemplate-tiny-perl (1.12-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * Switch d/compat to 8.
+  * Build-Depends: switch to debhelper (>= 8).
+  * Bump to 3.9.2 Standard-Version.
+  * Add myself to Uploaders and Copyright.
+
+ -- Fabrizio Regalli <fabreg at fabreg.it>  Fri, 17 Jun 2011 12:22:08 +0200
+
 libtemplate-tiny-perl (0.11-1) unstable; urgency=low
 
   [ Angel Abad ]

Modified: trunk/libtemplate-tiny-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/debian/compat?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/debian/compat (original)
+++ trunk/libtemplate-tiny-perl/debian/compat Fri Jun 17 10:27:01 2011
@@ -1,1 +1,1 @@
-7
+8

Modified: trunk/libtemplate-tiny-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/debian/control?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/debian/control (original)
+++ trunk/libtemplate-tiny-perl/debian/control Fri Jun 17 10:27:01 2011
@@ -1,12 +1,13 @@
 Source: libtemplate-tiny-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 8)
 Build-Depends-Indep: libcapture-tiny-perl, libtemplate-perl, perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonathan Yu <jawnsy at cpan.org>,
- Angel Abad <angelabad at gmail.com>
-Standards-Version: 3.8.4
+ Angel Abad <angelabad at gmail.com>,
+ Fabrizio Regalli <fabreg at fabreg.it>
+Standards-Version: 3.9.2
 Homepage: http://search.cpan.org/dist/Template-Tiny/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtemplate-tiny-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtemplate-tiny-perl/

Modified: trunk/libtemplate-tiny-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/debian/copyright?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/debian/copyright (original)
+++ trunk/libtemplate-tiny-perl/debian/copyright Fri Jun 17 10:27:01 2011
@@ -10,6 +10,7 @@
 Files: debian/*
 Copyright: 2010, Angel Abad <angelabad at gmail.com>
  2010, Jonathan Yu <jawnsy at cpan.org>
+ 2011, Fabrizio Regalli <fabreg at fabreg.it>
 License: Artistic or GPL-1+
 
 License: Artistic

Modified: trunk/libtemplate-tiny-perl/lib/Template/Tiny.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/lib/Template/Tiny.pm?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/lib/Template/Tiny.pm (original)
+++ trunk/libtemplate-tiny-perl/lib/Template/Tiny.pm Fri Jun 17 10:27:01 2011
@@ -5,7 +5,7 @@
 use 5.00503;
 use strict;
 
-$Template::Tiny::VERSION = '0.11';
+$Template::Tiny::VERSION = '1.12';
 
 # Evaluatable expression
 my $EXPR = qr/ [a-z_][\w.]* /xs;
@@ -72,6 +72,14 @@
 	bless { @_[1..$#_] }, $_[0];
 }
 
+# Copy and modify
+sub preprocess {
+	my $self = shift;
+	my $text = shift;
+	$self->_preprocess(\$text);
+	return $text;
+}
+
 sub process {
 	my $self  = shift;
 	my $copy  = ${shift()};
@@ -81,7 +89,7 @@
 	local $^W = 0;
 
 	# Preprocess to establish unique matching tag sets
-	$self->_preparse( \$copy );
+	$self->_preprocess( \$copy );
 
 	# Process down the nested tree of conditions
 	my $result = $self->_process( $stash, $copy );
@@ -96,9 +104,16 @@
 	}
 }
 
+
+
+
+
+######################################################################
+# Support Methods
+
 # The only reason this is a standalone is so we can
 # do more in-depth testing.
-sub _preparse {
+sub _preprocess {
 	my $self = shift;
 	my $copy = shift;
 
@@ -210,19 +225,16 @@
 
 =head1 DESCRIPTION
 
-B<WARNING: THIS MODULE IS EXPERIMENTAL AND SUBJECT TO CHANGE WITHOUT NOTICE>
-
-B<YOU HAVE BEEN WARNED!>
-
-B<Template::Tiny> is a reimplementation of a partial subset of the
+B<Template::Tiny> is a reimplementation of a subset of the functionality from
 L<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 familiarity of TT-style templates.
-
-It is intended to have fully-compatible template and stash usage,
-with a limited by similar Perl API.
+future, or if you want the retain the familiarity of TT-style templates.
+
+For the subset of functionality it implements, it has fully-compatible template
+and stash API. All templates used with B<Template::Tiny> should be able to be
+transparently upgraded to full Template Toolkit.
 
 Unlike Template Toolkit, B<Template::Tiny> will process templates without a
 compile phase (but despite this is still quicker, owing to heavy use of
@@ -232,29 +244,34 @@
 
 Only the default C<[% %]> tag style is supported.
 
-Both the [%+ +%] style explicit whitespace and the [%- -%] style explicit
-chomp are support, although the [%+ +%] version is unneeded as Template::Tiny
-does not support default-enabled PRE_CHOMP or POST_CHOMP.
-
-Variable expressions in the form foo.bar.baz are supported.
-
-Appropriate simple behaviours for ARRAY reference, HASH reference and objects
-are supported, but not "VMethods" such as array lengths.
-
-IF, ELSE and UNLESS conditions are supported, but only with simple foo.bar.baz
-conditions.
-
-Support for looping is available, in the most simple [% FOREACH item IN list %]
-form.
-
-All four IF/ELSE/UNLESS/FOREACH control structures are able to be nested to
-arbitrary depth.
-
-The treatment of C<_private> hash and method keys is compatible with Template
-Toolkit, returning null or false rather than the actual content of the hash key
-or method.
-
-Anything beyond this is currently out of scope
+Both the C<[%+ +%]> style explicit whitespace and the C<[%- -%]> style
+explicit chomp B<are> support, although the C<[%+ +%]> version is unneeded
+in practice as B<Template::Tiny> does not support default-enabled C<PRE_CHOMP>
+or C<POST_CHOMP>.
+
+Variable expressions in the form C<[% foo.bar.baz %]> B<are> supported.
+
+Appropriate simple behaviours for C<ARRAY> references, C<HASH> references and
+objects are supported. "VMethods" such as [% array.length %] are B<not>
+supported at this time.
+
+C<IF>, C<ELSE> and C<UNLESS> conditional blocks B<are> supported, but only with
+simple C<[% foo.bar.baz %]> conditions.
+
+Support for looping (or rather iteration) is available in simple
+C<[% FOREACH item IN list %]> form B<is> supported. Other loop structures are
+B<not> supported. Because support for arbitrary or infinite looping is not
+available, B<Template::Tiny> templates are not turing complete. This is
+intentional.
+
+All of the four supported control structures C<IF>/C<ELSE>/C<UNLESS>/C<FOREACH>
+can be nested to arbitrary depth.
+
+The treatment of C<_private> hash and method keys is compatible with
+L<Template> Toolkit, returning null or false rather than the actual content
+of the hash key or method.
+
+Anything beyond the above is currently out of scope.
 
 =head1 METHODS
 
@@ -273,7 +290,7 @@
 
 =head2 process
 
-  # DEPRECATED: Return template results
+  # DEPRECATED: Return template results (emits a warning)
   my $text = $template->process( \$input, $vars );
   
   # Print template results to STDOUT
@@ -285,19 +302,19 @@
 
 The C<process> method is called to process a template.
 
-The first parameter is a reference to a text string containing the
-template text. A reference to a hash may be passed as the second
-parameter containing definitions of template variables.
+The first parameter is a reference to a text string containing the template
+text. A reference to a hash may be passed as the second parameter containing
+definitions of template variables.
 
 If a third parameter is provided, it must be a scalar reference to be
 populated with the output of the template.
 
-For a limited amount of time, the old deprecated interface will continue
-to be supported. If C<process> is called without a third parameter, and in
+For a limited amount of time, the old deprecated interface will continue to
+be supported. If C<process> is called without a third parameter, and in
 scalar or list contest, the template results will be returned to the caller.
 
 If C<process> is called without a third parameter, and in void context, the
-template results will be print()ed to the currently selected file handle
+template results will be C<print()>ed to the currently selected file handle
 (probably C<STDOUT>) for compatibility with L<Template>.
 
 =head1 SUPPORT
@@ -314,11 +331,11 @@
 
 =head1 SEE ALSO
 
-L<Config::Simple>
+L<Config::Tiny>, L<CSS::Tiny>, L<YAML::Tiny>
 
 =head1 COPYRIGHT
 
-Copyright 2009 - 2010 Adam Kennedy.
+Copyright 2009 - 2011 Adam Kennedy.
 
 This program is free software; you can redistribute
 it and/or modify it under the same terms as Perl itself.

Modified: trunk/libtemplate-tiny-perl/t/02_trivial.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/t/02_trivial.t?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/t/02_trivial.t (original)
+++ trunk/libtemplate-tiny-perl/t/02_trivial.t Fri Jun 17 10:27:01 2011
@@ -5,21 +5,17 @@
 	$|  = 1;
 	$^W = 1;
 }
-use Test::More tests => 2;
+use Test::More tests => 1;
 use Template::Tiny ();
-use Capture::Tiny qw(capture);
 
 sub process {
 	my $stash    = shift;
 	my $input    = shift;
 	my $expected = shift;
 	my $message  = shift || 'Template processed ok';
-	Template::Tiny->new->process( \$input, $stash, \my $output );
+	my $output   = '';
+	Template::Tiny->new->process( \$input, $stash, \$output );
 	is( $output, $expected, $message );
-	my ( $stdout, $stderr) = capture {
-		Template::Tiny->new->process( \$input, $stash );
-	};
-	is( $stdout, $expected, $message.' (to STDOUT)' );
 }
 
 

Modified: trunk/libtemplate-tiny-perl/t/05_preparse.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/t/05_preparse.t?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/t/05_preparse.t (original)
+++ trunk/libtemplate-tiny-perl/t/05_preparse.t Fri Jun 17 10:27:01 2011
@@ -5,15 +5,16 @@
 	$|  = 1;
 	$^W = 1;
 }
-use Test::More tests => 3;
+use Test::More tests => 6;
 use Template::Tiny ();
 
-sub preparse {
-	my $template = shift;
-	my $expected = shift;
-	my $message  = shift || 'Template preparsed ok';
-	Template::Tiny->new->_preparse( \$template );
-	is( $template, $expected, $message );
+sub preprocess {
+	my $template = $_[0];
+	my $expected = $_[1];
+	my $message  = $_[2] || 'Template preprocessd ok';
+	my $prepared = Template::Tiny->new->preprocess( $template );
+	is( $prepared, $expected, $message );
+	is( $template, $_[0], '->proprocess does not modify original template variable' );
 }
 
 
@@ -23,7 +24,7 @@
 ######################################################################
 # Main Tests
 
-preparse( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple IF' );
+preprocess( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple IF' );
 foo
 [% IF foo %]
 foobar
@@ -37,7 +38,7 @@
 bar
 END_EXPECTED
 
-preparse( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple UNLESS' );
+preprocess( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple UNLESS' );
 foo
 [% UNLESS foo %]
 foobar
@@ -51,7 +52,7 @@
 bar
 END_EXPECTED
 
-preparse( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple FOREACH' );
+preprocess( <<'END_TEMPLATE', <<'END_EXPECTED', 'Simple FOREACH' );
 foo
 [% FOREACH element IN lists %]
 foobar

Modified: trunk/libtemplate-tiny-perl/xt/meta.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/xt/meta.t?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/xt/meta.t (original)
+++ trunk/libtemplate-tiny-perl/xt/meta.t Fri Jun 17 10:27:01 2011
@@ -8,7 +8,7 @@
 	$^W = 1;
 }
 
-my $MODULE = 'Test::CPAN::Meta 0.12';
+my $MODULE = 'Test::CPAN::Meta 0.17';
 
 # Don't run tests for installs
 use Test::More;

Modified: trunk/libtemplate-tiny-perl/xt/pmv.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/xt/pmv.t?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/xt/pmv.t (original)
+++ trunk/libtemplate-tiny-perl/xt/pmv.t Fri Jun 17 10:27:01 2011
@@ -9,8 +9,8 @@
 }
 
 my @MODULES = (
-	'Perl::MinimumVersion 1.20',
-	'Test::MinimumVersion 0.008',
+	'Perl::MinimumVersion 1.27',
+	'Test::MinimumVersion 0.101080',
 );
 
 # Don't run tests for installs

Modified: trunk/libtemplate-tiny-perl/xt/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtemplate-tiny-perl/xt/pod.t?rev=75870&op=diff
==============================================================================
--- trunk/libtemplate-tiny-perl/xt/pod.t (original)
+++ trunk/libtemplate-tiny-perl/xt/pod.t Fri Jun 17 10:27:01 2011
@@ -9,8 +9,8 @@
 }
 
 my @MODULES = (
-	'Pod::Simple 3.07',
-	'Test::Pod 1.26',
+	'Pod::Simple 3.14',
+	'Test::Pod 1.44',
 );
 
 # Don't run tests for installs




More information about the Pkg-perl-cvs-commits mailing list