r42146 - in /branches/upstream/libsvn-hooks-perl/current: Changes META.yml Makefile.PL README lib/SVN/Hooks.pm t/pod-coverage.t t/pod.t

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Thu Aug 20 10:44:18 UTC 2009


Author: angelabad-guest
Date: Thu Aug 20 10:44:13 2009
New Revision: 42146

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42146
Log:
[svn-upgrade] Integrating new upstream version, libsvn-hooks-perl (0.21)

Modified:
    branches/upstream/libsvn-hooks-perl/current/Changes
    branches/upstream/libsvn-hooks-perl/current/META.yml
    branches/upstream/libsvn-hooks-perl/current/Makefile.PL
    branches/upstream/libsvn-hooks-perl/current/README
    branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm
    branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t
    branches/upstream/libsvn-hooks-perl/current/t/pod.t

Modified: branches/upstream/libsvn-hooks-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/Changes?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/Changes (original)
+++ branches/upstream/libsvn-hooks-perl/current/Changes Thu Aug 20 10:44:13 2009
@@ -1,4 +1,9 @@
 Revision history for SVN-Hooks. -*- text -*-
+
+0.21	2009-08-19
+
+	The pod tests are skipped by default unless you use
+	perl Makefile.PL --author-tests.
 
 0.20	2009-07-28
 

Modified: branches/upstream/libsvn-hooks-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/META.yml?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/META.yml (original)
+++ branches/upstream/libsvn-hooks-perl/current/META.yml Thu Aug 20 10:44:13 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Hooks
-version:             0.20
+version:             0.21
 abstract:            A framework for implementing Subversion hooks.
 license:             ~
 author:              

Modified: branches/upstream/libsvn-hooks-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/Makefile.PL?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/Makefile.PL (original)
+++ branches/upstream/libsvn-hooks-perl/current/Makefile.PL Thu Aug 20 10:44:13 2009
@@ -7,10 +7,12 @@
 # clean up the online testing flag file.
 unlink("t/online.enabled");
 
-my $usage        = "$0 [--[no]online-tests]\n";
+my $usage        = "$0 [--online-tests] [--author-tests]\n";
 my $online_tests = 0;
+my $author_tests = 0;
 GetOptions(
-    'online-tests!' => \$online_tests,
+    'online-tests' => \$online_tests,
+    'author-tests' => \$author_tests,
 ) or die $usage;
 
 #
@@ -39,6 +41,11 @@
     close(ENABLED)                     or die "Can't touch ./t/online.enabled: $!";
 }
 
+if ($author_tests) {
+    open(ENABLED, ">t/author.enabled") or die "Can't touch ./t/author.enabled: $!";
+    close(ENABLED)                     or die "Can't touch ./t/author.enabled: $!";
+}
+
 WriteMakefile(
     NAME                => 'SVN::Hooks',
     AUTHOR              => 'Gustavo Chaves <gnustavo at cpan.org>',

Modified: branches/upstream/libsvn-hooks-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/README?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/README (original)
+++ branches/upstream/libsvn-hooks-perl/current/README Thu Aug 20 10:44:13 2009
@@ -1,6 +1,6 @@
 Name:    SVN-Hooks
 What:    Framework for Subversion hooks
-Version: 0.20
+Version: 0.21
 Author:  Gustavo Chaves <gnustavo at cpan.org>
 
 SVN-Hooks is a framework for creating Subversion hooks

Modified: branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm (original)
+++ branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm Thu Aug 20 10:44:13 2009
@@ -15,11 +15,11 @@
 
 =head1 VERSION
 
-Version 0.20
+Version 0.21
 
 =cut
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t (original)
+++ branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t Thu Aug 20 10:44:13 2009
@@ -3,6 +3,8 @@
 use strict;
 use warnings;
 use Test::More;
+
+plan skip_all => "Author-only tests" unless -e 't/author.enabled';
 
 # Ensure a recent version of Test::Pod::Coverage
 my $min_tpc = 1.08;

Modified: branches/upstream/libsvn-hooks-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/t/pod.t?rev=42146&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/t/pod.t (original)
+++ branches/upstream/libsvn-hooks-perl/current/t/pod.t Thu Aug 20 10:44:13 2009
@@ -3,6 +3,8 @@
 use strict;
 use warnings;
 use Test::More;
+
+plan skip_all => "Author-only tests" unless -e 't/author.enabled';
 
 # Ensure a recent version of Test::Pod
 my $min_tp = 1.22;




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