r58315 - in /trunk/libhtml-template-pro-perl: Changes MANIFEST META.yml Pro.xs README debian/changelog lib/HTML/Template/Pro.pm perl-HTML-Template-Pro.spec t/06loop_var.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun May 23 14:52:32 UTC 2010


Author: gregoa
Date: Sun May 23 14:52:17 2010
New Revision: 58315

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58315
Log:
New upstream release.

Added:
    trunk/libhtml-template-pro-perl/t/06loop_var.t
      - copied unchanged from r58314, branches/upstream/libhtml-template-pro-perl/current/t/06loop_var.t
Modified:
    trunk/libhtml-template-pro-perl/Changes
    trunk/libhtml-template-pro-perl/MANIFEST
    trunk/libhtml-template-pro-perl/META.yml
    trunk/libhtml-template-pro-perl/Pro.xs
    trunk/libhtml-template-pro-perl/README
    trunk/libhtml-template-pro-perl/debian/changelog
    trunk/libhtml-template-pro-perl/lib/HTML/Template/Pro.pm
    trunk/libhtml-template-pro-perl/perl-HTML-Template-Pro.spec

Modified: trunk/libhtml-template-pro-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/Changes?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/Changes (original)
+++ trunk/libhtml-template-pro-perl/Changes Sun May 23 14:52:17 2010
@@ -280,3 +280,8 @@
 0.94 Tue Feb 16 16:58:39 EET 2010
 	- c lib 1.3 (4:0:3) ABI (see htmltmplpro/API for details)
 	- fixed lexer bug (thanks to Svetlana Safronova)
+
+0.95 Fri May 21 22:25:10 EEST 2010
+	- perl specific: fixed bug in perl wrapper
+	(list evaluated to false). thanks to Shigeki Morimoto 
+	for bugreport and patch.

Modified: trunk/libhtml-template-pro-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/MANIFEST?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/MANIFEST (original)
+++ trunk/libhtml-template-pro-perl/MANIFEST Sun May 23 14:52:17 2010
@@ -64,6 +64,7 @@
 t/03complex.t
 t/04register.t
 t/05path_like_variable_scope.t
+t/06loop_var.t
 t/HTML-Template-Expr.t
 t/HTML-Template-Pro.t
 t/HTML-Template.t

Modified: trunk/libhtml-template-pro-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/META.yml?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/META.yml (original)
+++ trunk/libhtml-template-pro-perl/META.yml Sun May 23 14:52:17 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               HTML-Template-Pro
-version:            0.94
+version:            0.95
 abstract:           Perl/XS module to use HTML Templates from CGI scripts
 author:
     - I. Yu. Vlasenko <viy at altlinux.org>

Modified: trunk/libhtml-template-pro-perl/Pro.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/Pro.xs?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/Pro.xs (original)
+++ trunk/libhtml-template-pro-perl/Pro.xs Sun May 23 14:52:17 2010
@@ -104,7 +104,7 @@
   if (SvOK(SVval) && SvROK(SVval)) {
     if (SvTYPE(SvRV(SVval))==SVt_PVCV) {
       SVval = call_coderef(SVval);
-    } else {
+    } else if(SvTYPE(SvRV(SVval))==SVt_PV) {
       SVval = SvRV(SVval);
     }
     SvGETMAGIC(SVval);

Modified: trunk/libhtml-template-pro-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/README?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/README (original)
+++ trunk/libhtml-template-pro-perl/README Sun May 23 14:52:17 2010
@@ -1,4 +1,4 @@
-HTML-Template-Pro version 0.94
+HTML-Template-Pro version 0.95
 ==============================
 
 DESCRIPTION

Modified: trunk/libhtml-template-pro-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/debian/changelog?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/debian/changelog (original)
+++ trunk/libhtml-template-pro-perl/debian/changelog Sun May 23 14:52:17 2010
@@ -1,3 +1,9 @@
+libhtml-template-pro-perl (0.95-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sun, 23 May 2010 16:51:46 +0200
+
 libhtml-template-pro-perl (0.94-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libhtml-template-pro-perl/lib/HTML/Template/Pro.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/lib/HTML/Template/Pro.pm?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/lib/HTML/Template/Pro.pm (original)
+++ trunk/libhtml-template-pro-perl/lib/HTML/Template/Pro.pm Sun May 23 14:52:17 2010
@@ -12,7 +12,7 @@
 use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
 @ISA = qw(DynaLoader Exporter);
 
-$VERSION = '0.94';
+$VERSION = '0.95';
 
 @EXPORT_OK = qw/ASK_NAME_DEFAULT ASK_NAME_AS_IS ASK_NAME_LOWERCASE ASK_NAME_UPPERCASE ASK_NAME_MASK/;
 %EXPORT_TAGS = (const => [qw/ASK_NAME_DEFAULT ASK_NAME_AS_IS ASK_NAME_LOWERCASE ASK_NAME_UPPERCASE ASK_NAME_MASK/]);

Modified: trunk/libhtml-template-pro-perl/perl-HTML-Template-Pro.spec
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-template-pro-perl/perl-HTML-Template-Pro.spec?rev=58315&op=diff
==============================================================================
--- trunk/libhtml-template-pro-perl/perl-HTML-Template-Pro.spec (original)
+++ trunk/libhtml-template-pro-perl/perl-HTML-Template-Pro.spec Sun May 23 14:52:17 2010
@@ -6,7 +6,7 @@
 %define module HTML-Template-Pro
 
 Name: perl-%module
-Version: 0.94
+Version: 0.95
 Release: alt1
 
 Packager: Igor Yu. Vlasenko <viy at altlinux.org>
@@ -54,6 +54,9 @@
 %perl_vendor_man3dir/*
 
 %changelog
+* Fri May 21 2010 Igor Vlasenko <viy at altlinux.ru> 0.95-alt1
+- new version; see Changes
+
 * Tue Feb 16 2010 Igor Vlasenko <viy at altlinux.ru> 0.94-alt1
 - new version; see Changes
 




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