r31947 - in /branches/upstream/libtext-template-perl/current: ./ lib/Text/ lib/Text/Template/ t/

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu Mar 12 02:19:01 UTC 2009


Author: ryan52-guest
Date: Thu Mar 12 02:18:57 2009
New Revision: 31947

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=31947
Log:
[svn-upgrade] Integrating new upstream version, libtext-template-perl (1.45)

Added:
    branches/upstream/libtext-template-perl/current/META.yml
Modified:
    branches/upstream/libtext-template-perl/current/MANIFEST
    branches/upstream/libtext-template-perl/current/lib/Text/Template.pm
    branches/upstream/libtext-template-perl/current/lib/Text/Template/Preprocess.pm
    branches/upstream/libtext-template-perl/current/t/00-version.t
    branches/upstream/libtext-template-perl/current/t/02-hash.t
    branches/upstream/libtext-template-perl/current/t/03-out.t
    branches/upstream/libtext-template-perl/current/t/04-safe.t
    branches/upstream/libtext-template-perl/current/t/05-safe2.t
    branches/upstream/libtext-template-perl/current/t/06-ofh.t
    branches/upstream/libtext-template-perl/current/t/07-safe3.t
    branches/upstream/libtext-template-perl/current/t/08-exported.t
    branches/upstream/libtext-template-perl/current/t/09-error.t
    branches/upstream/libtext-template-perl/current/t/10-delimiters.t
    branches/upstream/libtext-template-perl/current/t/11-prepend.t
    branches/upstream/libtext-template-perl/current/t/12-preprocess.t
    branches/upstream/libtext-template-perl/current/t/13-taint.t
    branches/upstream/libtext-template-perl/current/t/14-broken.t

Modified: branches/upstream/libtext-template-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/MANIFEST?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-template-perl/current/MANIFEST Thu Mar 12 02:18:57 2009
@@ -21,3 +21,4 @@
 t/12-preprocess.t
 t/13-taint.t
 t/14-broken.t
+META.yml                                 Module meta-data (added by MakeMaker)

Added: branches/upstream/libtext-template-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/META.yml?rev=31947&op=file
==============================================================================
--- branches/upstream/libtext-template-perl/current/META.yml (added)
+++ branches/upstream/libtext-template-perl/current/META.yml Thu Mar 12 02:18:57 2009
@@ -1,0 +1,10 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Text-Template
+version:      1.45
+version_from: lib/Text/Template.pm
+installdirs:  site
+requires:
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30_01

Modified: branches/upstream/libtext-template-perl/current/lib/Text/Template.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/lib/Text/Template.pm?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/lib/Text/Template.pm (original)
+++ branches/upstream/libtext-template-perl/current/lib/Text/Template.pm Thu Mar 12 02:18:57 2009
@@ -3,12 +3,12 @@
 #
 # Fill in `templates'
 #
-# Copyright 1996, 1997, 1999, 2001, 2002, 2003 M-J. Dominus.
+# Copyright 1996, 1997, 1999, 2001, 2002, 2003, 2008 M-J. Dominus.
 # You may copy and distribute this program under the
 # same terms as Perl iteself.  
 # If in doubt, write to mjd-perl-template+ at plover.com for a license.
 #
-# Version 1.44
+# Version 1.45
 
 package Text::Template;
 require 5.004;
@@ -18,7 +18,7 @@
 use vars '$ERROR';
 use strict;
 
-$Text::Template::VERSION = '1.44';
+$Text::Template::VERSION = '1.45';
 my %GLOBAL_PREPEND = ('Text::Template' => '');
 
 sub Version {
@@ -469,7 +469,7 @@
 
 =head1 VERSION
 
-This file documents C<Text::Template> version B<1.44>
+This file documents C<Text::Template> version B<1.45>
 
 =head1 SYNOPSIS
 
@@ -1450,10 +1450,9 @@
 character.  
 
 Because the parsing of templates is simplified by the absence of
-backslash escapes, using alternative C<DELIMITERS> I<speeds up> the
+backslash escapes, using alternative C<DELIMITERS> may speed up the
 parsing process by 20-25%.  This shows that my original choice of C<{>
-and C<}> was very bad.  I therefore recommend that you use alternative
-delimiters whenever possible. 
+and C<}> was very bad. 
 
 =head2 C<PREPEND> feature and using C<strict> in templates
 
@@ -1809,15 +1808,15 @@
 
 =head2 Support?
 
-This software is version 1.44.  It may have bugs.  Suggestions and bug
+This software is version 1.45.  It may have bugs.  Suggestions and bug
 reports are always welcome.  Send them to
 C<mjd-perl-template+ at plover.com>.  (That is my address, not the address
 of the mailing list.  The mailing list address is a secret.)
 
 =head1 LICENSE
 
-    Text::Template version 1.44
-    Copyright (C) 2003 Mark Jason Dominus
+    Text::Template version 1.45
+    Copyright (C) 2008 Mark Jason Dominus
 
     This program is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License as

Modified: branches/upstream/libtext-template-perl/current/lib/Text/Template/Preprocess.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/lib/Text/Template/Preprocess.pm?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/lib/Text/Template/Preprocess.pm (original)
+++ branches/upstream/libtext-template-perl/current/lib/Text/Template/Preprocess.pm Thu Mar 12 02:18:57 2009
@@ -2,7 +2,7 @@
 package Text::Template::Preprocess;
 use Text::Template;
 @ISA = qw(Text::Template);
-$Text::Template::Preprocess::VERSION = 1.44;
+$Text::Template::Preprocess::VERSION = 1.45;
 
 sub fill_in {
   my $self = shift;
@@ -34,7 +34,7 @@
 
 =head1 VERSION
 
-This file documents C<Text::Template::Preprocess> version B<1.44>
+This file documents C<Text::Template::Preprocess> version B<1.45>
 
 =head1 SYNOPSIS
 
@@ -120,8 +120,8 @@
 
 =head1 LICENSE
 
-    Text::Template::Preprocess version 1.44
-    Copyright (C) 2003 Mark Jason Dominus
+    Text::Template::Preprocess version 1.45
+    Copyright (C) 2008 Mark Jason Dominus
 
     This program is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License as

Modified: branches/upstream/libtext-template-perl/current/t/00-version.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/00-version.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/00-version.t (original)
+++ branches/upstream/libtext-template-perl/current/t/00-version.t Thu Mar 12 02:18:57 2009
@@ -3,7 +3,7 @@
 use Text::Template;
 print "1..1\n";
 
-if ($Text::Template::VERSION == 1.44) {
+if ($Text::Template::VERSION == 1.45) {
         print "ok 1\n";
 } else {
         print "not ok 1\n";

Modified: branches/upstream/libtext-template-perl/current/t/02-hash.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/02-hash.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/02-hash.t (original)
+++ branches/upstream/libtext-template-perl/current/t/02-hash.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 
 print "1..12\n";

Modified: branches/upstream/libtext-template-perl/current/t/03-out.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/03-out.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/03-out.t (original)
+++ branches/upstream/libtext-template-perl/current/t/03-out.t Thu Mar 12 02:18:57 2009
@@ -6,11 +6,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44
+die "This is the test program for Text::Template version 1.45
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..1\n";
 

Modified: branches/upstream/libtext-template-perl/current/t/04-safe.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/04-safe.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/04-safe.t (original)
+++ branches/upstream/libtext-template-perl/current/t/04-safe.t Thu Mar 12 02:18:57 2009
@@ -13,11 +13,11 @@
   }
 }
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..16\n";
 

Modified: branches/upstream/libtext-template-perl/current/t/05-safe2.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/05-safe2.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/05-safe2.t (original)
+++ branches/upstream/libtext-template-perl/current/t/05-safe2.t Thu Mar 12 02:18:57 2009
@@ -13,11 +13,11 @@
   }
 }
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..12\n";
 $n = 1;

Modified: branches/upstream/libtext-template-perl/current/t/06-ofh.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/06-ofh.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/06-ofh.t (original)
+++ branches/upstream/libtext-template-perl/current/t/06-ofh.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..2\n";
 

Modified: branches/upstream/libtext-template-perl/current/t/07-safe3.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/07-safe3.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/07-safe3.t (original)
+++ branches/upstream/libtext-template-perl/current/t/07-safe3.t Thu Mar 12 02:18:57 2009
@@ -12,11 +12,11 @@
   }
 }
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..3\n";
 

Modified: branches/upstream/libtext-template-perl/current/t/08-exported.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/08-exported.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/08-exported.t (original)
+++ branches/upstream/libtext-template-perl/current/t/08-exported.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template 'fill_in_file', 'fill_in_string';
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..6\n";
 

Modified: branches/upstream/libtext-template-perl/current/t/09-error.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/09-error.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/09-error.t (original)
+++ branches/upstream/libtext-template-perl/current/t/09-error.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..5\n";
 $n = 1;
@@ -40,7 +40,7 @@
 eval {
   Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food');
 };
-if ($@ =~ /^\QIllegal value \`WLUNCH\' for TYPE parameter/) {
+if ($@ =~ /^\QIllegal value `WLUNCH' for TYPE parameter/) {
   print "ok $n\n";
 } else {
   print STDERR $@;

Modified: branches/upstream/libtext-template-perl/current/t/10-delimiters.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/10-delimiters.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/10-delimiters.t (original)
+++ branches/upstream/libtext-template-perl/current/t/10-delimiters.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..18\n";
 $n = 1;

Modified: branches/upstream/libtext-template-perl/current/t/11-prepend.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/11-prepend.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/11-prepend.t (original)
+++ branches/upstream/libtext-template-perl/current/t/11-prepend.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44
+die "This is the test program for Text::Template version 1.45
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 print "1..9\n";
 my $n = 1;

Modified: branches/upstream/libtext-template-perl/current/t/12-preprocess.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/12-preprocess.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/12-preprocess.t (original)
+++ branches/upstream/libtext-template-perl/current/t/12-preprocess.t Thu Mar 12 02:18:57 2009
@@ -5,11 +5,11 @@
 
 use Text::Template::Preprocess;
 
-die "This is the test program for Text::Template::Preprocess version 1.44.
+die "This is the test program for Text::Template::Preprocess version 1.45.
 You are using version $Text::Template::Preprocess::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::Preprocess::VERSION == 1.44;
+  unless $Text::Template::Preprocess::VERSION == 1.45;
 
 $TMPFILE = "tt$$";
 

Modified: branches/upstream/libtext-template-perl/current/t/13-taint.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/13-taint.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/13-taint.t (original)
+++ branches/upstream/libtext-template-perl/current/t/13-taint.t Thu Mar 12 02:18:57 2009
@@ -4,11 +4,11 @@
 use lib 'blib/lib';
 use Text::Template;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 my $r = int(rand(10000));
 my $file = "tt$r";

Modified: branches/upstream/libtext-template-perl/current/t/14-broken.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-template-perl/current/t/14-broken.t?rev=31947&op=diff
==============================================================================
--- branches/upstream/libtext-template-perl/current/t/14-broken.t (original)
+++ branches/upstream/libtext-template-perl/current/t/14-broken.t Thu Mar 12 02:18:57 2009
@@ -7,11 +7,11 @@
 
 $n=1;
 
-die "This is the test program for Text::Template version 1.44.
+die "This is the test program for Text::Template version 1.45.
 You are using version $Text::Template::VERSION instead.
 That does not make sense.\n
 Aborting"
-  unless $Text::Template::VERSION == 1.44;
+  unless $Text::Template::VERSION == 1.45;
 
 # (1) basic error delivery
 { my $r = Text::Template->new(TYPE => 'string',




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