r46359 - in /branches/upstream/libsvn-look-perl/current: Changes MANIFEST META.yml Makefile.PL README lib/SVN/Look.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 07:24:13 UTC 2009


Author: angelabad-guest
Date: Sun Oct 25 07:23:57 2009
New Revision: 46359

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

Added:
    branches/upstream/libsvn-look-perl/current/t/kwalitee.t   (with props)
Modified:
    branches/upstream/libsvn-look-perl/current/Changes
    branches/upstream/libsvn-look-perl/current/MANIFEST
    branches/upstream/libsvn-look-perl/current/META.yml
    branches/upstream/libsvn-look-perl/current/Makefile.PL
    branches/upstream/libsvn-look-perl/current/README
    branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm
    branches/upstream/libsvn-look-perl/current/t/pod-coverage.t
    branches/upstream/libsvn-look-perl/current/t/pod.t

Modified: branches/upstream/libsvn-look-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/Changes?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/Changes (original)
+++ branches/upstream/libsvn-look-perl/current/Changes Sun Oct 25 07:23:57 2009
@@ -1,4 +1,13 @@
 Revision history for SVN-Look. -*- text -*-
+
+0.15	2009-10-24
+
+	Drops the sub-minor version. Now it's just M.mm.
+
+	Implements the kwalitee test.
+
+	Implements the --author-tests flag to Makefile.PL, which
+	enables the pod and kwalitee tests.
 
 0.13	2008-11-06
 

Modified: branches/upstream/libsvn-look-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/MANIFEST?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/MANIFEST (original)
+++ branches/upstream/libsvn-look-perl/current/MANIFEST Sun Oct 25 07:23:57 2009
@@ -7,6 +7,7 @@
 README
 t/00-load.t
 t/01-commands.t
+t/kwalitee.t
 t/pod-coverage.t
 t/pod.t
 t/test-functions.pl

Modified: branches/upstream/libsvn-look-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/META.yml?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/META.yml (original)
+++ branches/upstream/libsvn-look-perl/current/META.yml Sun Oct 25 07:23:57 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVN-Look
-version:             0.14.12
+version:             0.15
 abstract:            A caching wrapper aroung the svnlook command.
 license:             ~
 author:              

Modified: branches/upstream/libsvn-look-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/Makefile.PL?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/Makefile.PL (original)
+++ branches/upstream/libsvn-look-perl/current/Makefile.PL Sun Oct 25 07:23:57 2009
@@ -3,6 +3,16 @@
 use warnings;
 use File::Spec::Functions qw/catfile path/;
 use ExtUtils::MakeMaker;
+use Getopt::Long  qw(GetOptions);
+
+# clean up the testing flag file.
+unlink('t/author.enabled');
+
+my $usage        = "$0 [--author-tests]\n";
+my $author_tests = 0;
+GetOptions(
+    'author-tests' => \$author_tests,
+) or die $usage;
 
 my $svnlook;
 for my $d (
@@ -20,6 +30,11 @@
 die "Aborting because I couldn't find the 'svnlook' executable.\n"
     unless $svnlook;
 
+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::Look',
     AUTHOR              => 'Gustavo Chaves <gustavo+perl at gnustavo.org>',

Modified: branches/upstream/libsvn-look-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/README?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/README (original)
+++ branches/upstream/libsvn-look-perl/current/README Sun Oct 25 07:23:57 2009
@@ -1,6 +1,6 @@
 Name:    SVN-Look
 What:    A caching wrapper aroung the svnlook command.
-Version: 0.13
+Version: 0.15
 Author:  Gustavo Chaves <gnustavo at cpan.org>
 
 SVN-Look is a caching wrapper aroung the svnlook command.

Modified: branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm (original)
+++ branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm Sun Oct 25 07:23:57 2009
@@ -10,11 +10,11 @@
 
 =head1 VERSION
 
-Version 0.13
-
-=cut
-
-our $VERSION = '0.14.' . substr(q$Revision: 12 $, 10); # bump from 10
+Version 0.15
+
+=cut
+
+our $VERSION = '0.15';
 
 =head1 SYNOPSIS
 

Added: branches/upstream/libsvn-look-perl/current/t/kwalitee.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/t/kwalitee.t?rev=46359&op=file
==============================================================================
--- branches/upstream/libsvn-look-perl/current/t/kwalitee.t (added)
+++ branches/upstream/libsvn-look-perl/current/t/kwalitee.t Sun Oct 25 07:23:57 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-look-perl/current/t/kwalitee.t
------------------------------------------------------------------------------
    svn:executable = *

Modified: branches/upstream/libsvn-look-perl/current/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/t/pod-coverage.t?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/t/pod-coverage.t (original)
+++ branches/upstream/libsvn-look-perl/current/t/pod-coverage.t Sun Oct 25 07:23:57 2009
@@ -1,6 +1,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-look-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/t/pod.t?rev=46359&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/t/pod.t (original)
+++ branches/upstream/libsvn-look-perl/current/t/pod.t Sun Oct 25 07:23:57 2009
@@ -1,6 +1,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