r34811 - in /branches/upstream/libtemplate-plugin-class-perl/current: Build.PL Changes MANIFEST META.yml Makefile.PL README lib/Template/Plugin/Class.pm t/class.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Tue May 5 20:40:04 UTC 2009


Author: ansgar-guest
Date: Tue May  5 20:39:58 2009
New Revision: 34811

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34811
Log:
[svn-upgrade] Integrating new upstream version, libtemplate-plugin-class-perl (0.14)

Removed:
    branches/upstream/libtemplate-plugin-class-perl/current/Build.PL
    branches/upstream/libtemplate-plugin-class-perl/current/README
Modified:
    branches/upstream/libtemplate-plugin-class-perl/current/Changes
    branches/upstream/libtemplate-plugin-class-perl/current/MANIFEST
    branches/upstream/libtemplate-plugin-class-perl/current/META.yml
    branches/upstream/libtemplate-plugin-class-perl/current/Makefile.PL
    branches/upstream/libtemplate-plugin-class-perl/current/lib/Template/Plugin/Class.pm
    branches/upstream/libtemplate-plugin-class-perl/current/t/class.t

Modified: branches/upstream/libtemplate-plugin-class-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/Changes?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/Changes (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/Changes Tue May  5 20:39:58 2009
@@ -1,3 +1,6 @@
+0.14    Wednesday 5th May, 2009
+        Removed a bogus testcase which fails on newer versions of TTD
+
 0.13	Wednesday 10th May, 2006
 	Make it work correctly when diagnostics.pm is in use.
 	http://rt.cpan.org/Ticket/Display.html?id=11538

Modified: branches/upstream/libtemplate-plugin-class-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/MANIFEST?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/MANIFEST (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/MANIFEST Tue May  5 20:39:58 2009
@@ -1,8 +1,6 @@
 Changes
-Build.PL
 Makefile.PL
-META.yml
-README
 MANIFEST
 lib/Template/Plugin/Class.pm
 t/class.t
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: branches/upstream/libtemplate-plugin-class-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/META.yml?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/META.yml (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/META.yml Tue May  5 20:39:58 2009
@@ -1,19 +1,20 @@
----
-name: Template-Plugin-Class
-version: 0.13
-author:
-  - Richard Clamp <richardc at unixbeard.net>
-abstract: allow calling of class methods on arbitrary classes
-license: perl
+--- #YAML:1.0
+name:               Template-Plugin-Class
+version:            0.14
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-  Template: 0
-build_requires:
-  Test::More: 0
-provides:
-  Template::Plugin::Class:
-    file: lib/Template/Plugin/Class.pm
-    version: 0.13
-  Template::Plugin::Class::Proxy:
-    file: lib/Template/Plugin/Class.pm
-    version: 0.13
-generated_by: Module::Build version 0.261
+    Template:    0
+    Test::More:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libtemplate-plugin-class-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/Makefile.PL?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/Makefile.PL (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/Makefile.PL Tue May  5 20:39:58 2009
@@ -1,14 +1,12 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+#!perl
+use strict;
+use warnings;
 use ExtUtils::MakeMaker;
-WriteMakefile
-(
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
-          'NAME' => 'Template::Plugin::Class',
-          'VERSION_FROM' => 'lib/Template/Plugin/Class.pm',
-          'PREREQ_PM' => {
-                           'Test::More' => 0,
-                           'Template' => 0
-                         }
-        )
-;
+WriteMakefile(
+    'NAME'         => 'Template::Plugin::Class',
+    'VERSION_FROM' => 'lib/Template/Plugin/Class.pm',
+    'PREREQ_PM'    => {
+        'Test::More' => 0,
+        'Template'   => 0,
+    }
+);

Modified: branches/upstream/libtemplate-plugin-class-perl/current/lib/Template/Plugin/Class.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/lib/Template/Plugin/Class.pm?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/lib/Template/Plugin/Class.pm (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/lib/Template/Plugin/Class.pm Tue May  5 20:39:58 2009
@@ -2,7 +2,7 @@
 package Template::Plugin::Class;
 use base 'Template::Plugin';
 use vars qw( $VERSION );
-$VERSION = '0.13';
+$VERSION = '0.14';
 
 sub new {
     my $class = shift;
@@ -77,7 +77,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (C) 2003, 2004, 2006 Richard Clamp.  All Rights Reserved.
+Copyright (C) 2003, 2004, 2006, 2009 Richard Clamp.  All Rights Reserved.
 
 This module is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libtemplate-plugin-class-perl/current/t/class.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtemplate-plugin-class-perl/current/t/class.t?rev=34811&op=diff
==============================================================================
--- branches/upstream/libtemplate-plugin-class-perl/current/t/class.t (original)
+++ branches/upstream/libtemplate-plugin-class-perl/current/t/class.t Tue May  5 20:39:58 2009
@@ -1,13 +1,15 @@
 #!perl -w
 use strict;
-use Test::More tests => 3;
+use Test::More tests => 2;
 use Template;
 my $tt = Template->new;
 
 my $template = "[% USE foo=Class('Foo') %][% foo.bar %]";
 my $out;
 ok( $tt->process(\$template, {}, \$out), "processed ok" );
-is( $tt->error, undef, "no error" );
+# Template->error changed what it returns for no error - but this test was
+# bogus anyhow
+#is( $tt->error, undef, "no error" );
 
 is( $out, Foo->bar, "method was called" );
 




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