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

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Sun Oct 25 06:59:27 UTC 2009


Author: angelabad-guest
Date: Sun Oct 25 06:59:00 2009
New Revision: 46357

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

Added:
    branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t   (with props)
Modified:
    branches/upstream/libsvn-hooks-perl/current/Changes
    branches/upstream/libsvn-hooks-perl/current/MANIFEST
    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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/Changes (original)
+++ branches/upstream/libsvn-hooks-perl/current/Changes Sun Oct 25 06:59:00 2009
@@ -1,4 +1,9 @@
 Revision history for SVN-Hooks. -*- text -*-
+
+0.23    2009-10-24
+
+	Add kwalitee tests. (See
+	http://cpants.perl.org/dist/overview/SVN-Hooks)
 
 0.22	2009-09-23
 

Modified: branches/upstream/libsvn-hooks-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/MANIFEST?rev=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/MANIFEST (original)
+++ branches/upstream/libsvn-hooks-perl/current/MANIFEST Sun Oct 25 06:59:00 2009
@@ -35,6 +35,7 @@
 t/02-mailer.t
 t/02-notify.t
 t/02-updateconffile.t
+t/kwalitee.t
 t/pod-coverage.t
 t/pod.t
 t/test-functions.pl

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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/META.yml (original)
+++ branches/upstream/libsvn-hooks-perl/current/META.yml Sun Oct 25 06:59:00 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Hooks
-version:             0.22
+version:             0.23
 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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/Makefile.PL (original)
+++ branches/upstream/libsvn-hooks-perl/current/Makefile.PL Sun Oct 25 06:59:00 2009
@@ -4,8 +4,8 @@
 use IO::Socket ();
 use Getopt::Long  qw(GetOptions);
 
-# clean up the online testing flag file.
-unlink("t/online.enabled");
+# clean up the testing flag files.
+unlink('t/online.enabled', 't/author.enabled');
 
 my $usage        = "$0 [--online-tests] [--author-tests]\n";
 my $online_tests = 0;

Modified: branches/upstream/libsvn-hooks-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/README?rev=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/README (original)
+++ branches/upstream/libsvn-hooks-perl/current/README Sun Oct 25 06:59:00 2009
@@ -1,6 +1,6 @@
 Name:    SVN-Hooks
 What:    Framework for Subversion hooks
-Version: 0.22
+Version: 0.23
 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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm (original)
+++ branches/upstream/libsvn-hooks-perl/current/lib/SVN/Hooks.pm Sun Oct 25 06:59:00 2009
@@ -15,11 +15,11 @@
 
 =head1 VERSION
 
-Version 0.22
+Version 0.23
 
 =cut
 
-our $VERSION = '0.22';
+our $VERSION = '0.23';
 
 =head1 SYNOPSIS
 

Added: branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t?rev=46357&op=file
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t (added)
+++ branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t Sun Oct 25 06:59:00 2009
@@ -1,0 +1,15 @@
+use Test::More;
+
+unless (-e 't/author.enabled') {
+    plan skip_all => "Author-only tests";
+    exit 0;
+}
+
+require Test::Kwalitee;
+
+if ($@) {
+   plan skip_all => 'Test::Kwalitee not installed; skipping';
+   exit 0;
+}
+
+Test::Kwalitee->import();

Propchange: branches/upstream/libsvn-hooks-perl/current/t/kwalitee.t
------------------------------------------------------------------------------
    svn:executable = *

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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t (original)
+++ branches/upstream/libsvn-hooks-perl/current/t/pod-coverage.t Sun Oct 25 06:59:00 2009
@@ -1,5 +1,3 @@
-# -*- cperl -*-
-
 use strict;
 use warnings;
 use Test::More;

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=46357&op=diff
==============================================================================
--- branches/upstream/libsvn-hooks-perl/current/t/pod.t (original)
+++ branches/upstream/libsvn-hooks-perl/current/t/pod.t Sun Oct 25 06:59:00 2009
@@ -1,5 +1,3 @@
-# -*- cperl -*-
-
 use strict;
 use warnings;
 use Test::More;




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