r70320 - in /branches/upstream/libdancer-perl/current: CHANGES META.yml lib/Dancer.pm t/00_base/14_changelog.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Mar 3 22:43:57 UTC 2011


Author: gregoa
Date: Thu Mar  3 22:43:49 2011
New Revision: 70320

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70320
Log:
[svn-upgrade] new version libdancer-perl (1.3013+dfsg)

Modified:
    branches/upstream/libdancer-perl/current/CHANGES
    branches/upstream/libdancer-perl/current/META.yml
    branches/upstream/libdancer-perl/current/lib/Dancer.pm
    branches/upstream/libdancer-perl/current/t/00_base/14_changelog.t

Modified: branches/upstream/libdancer-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/CHANGES?rev=70320&op=diff
==============================================================================
--- branches/upstream/libdancer-perl/current/CHANGES (original)
+++ branches/upstream/libdancer-perl/current/CHANGES Thu Mar  3 22:43:49 2011
@@ -1,3 +1,9 @@
+1.3013    01.03.2011
+
+    [ ENHANCEMENTS ]
+    * Fix test suite: the changelog test is skipped if not under 
+      RELEASE_TESTING environment.
+
 1.3012    01.03.2011
 
     [ BUG FIXES ]

Modified: branches/upstream/libdancer-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/META.yml?rev=70320&op=diff
==============================================================================
--- branches/upstream/libdancer-perl/current/META.yml (original)
+++ branches/upstream/libdancer-perl/current/META.yml Thu Mar  3 22:43:49 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Dancer
-version:            1.3012
+version:            1.3013
 abstract:           A minimal-effort oriented web application framework
 author:  []
 license:            perl

Modified: branches/upstream/libdancer-perl/current/lib/Dancer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/lib/Dancer.pm?rev=70320&op=diff
==============================================================================
--- branches/upstream/libdancer-perl/current/lib/Dancer.pm (original)
+++ branches/upstream/libdancer-perl/current/lib/Dancer.pm Thu Mar  3 22:43:49 2011
@@ -7,7 +7,7 @@
 
 use vars qw($VERSION $AUTHORITY @EXPORT);
 
-$VERSION   = '1.3012';
+$VERSION   = '1.3013';
 $AUTHORITY = 'SUKRIA';
 
 use Dancer::App;

Modified: branches/upstream/libdancer-perl/current/t/00_base/14_changelog.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdancer-perl/current/t/00_base/14_changelog.t?rev=70320&op=diff
==============================================================================
--- branches/upstream/libdancer-perl/current/t/00_base/14_changelog.t (original)
+++ branches/upstream/libdancer-perl/current/t/00_base/14_changelog.t Thu Mar  3 22:43:49 2011
@@ -2,6 +2,10 @@
 use warnings;
 
 use Test::More import => ['!pass'];
+
+unless ( $ENV{RELEASE_TESTING} ) {
+    plan( skip_all => "Author tests not required for installation" );
+}
 
 #### Change these values if the Changelog syntax changes :
 




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