r46362 - in /trunk/libsvn-look-perl: Changes MANIFEST META.yml Makefile.PL README debian/changelog debian/control debian/copyright debian/rules 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:50:29 UTC 2009


Author: angelabad-guest
Date: Sun Oct 25 07:50:21 2009
New Revision: 46362

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

Added:
    trunk/libsvn-look-perl/t/kwalitee.t
      - copied unchanged from r46360, branches/upstream/libsvn-look-perl/current/t/kwalitee.t
Modified:
    trunk/libsvn-look-perl/Changes
    trunk/libsvn-look-perl/MANIFEST
    trunk/libsvn-look-perl/META.yml
    trunk/libsvn-look-perl/Makefile.PL
    trunk/libsvn-look-perl/README
    trunk/libsvn-look-perl/debian/changelog
    trunk/libsvn-look-perl/debian/control
    trunk/libsvn-look-perl/debian/copyright
    trunk/libsvn-look-perl/debian/rules
    trunk/libsvn-look-perl/lib/SVN/Look.pm
    trunk/libsvn-look-perl/t/pod-coverage.t
    trunk/libsvn-look-perl/t/pod.t

Modified: trunk/libsvn-look-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/Changes?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/Changes (original)
+++ trunk/libsvn-look-perl/Changes Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/MANIFEST?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/MANIFEST (original)
+++ trunk/libsvn-look-perl/MANIFEST Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/META.yml?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/META.yml (original)
+++ trunk/libsvn-look-perl/META.yml Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/Makefile.PL?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/Makefile.PL (original)
+++ trunk/libsvn-look-perl/Makefile.PL Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/README?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/README (original)
+++ trunk/libsvn-look-perl/README Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/changelog?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/changelog (original)
+++ trunk/libsvn-look-perl/debian/changelog Sun Oct 25 07:50:21 2009
@@ -1,3 +1,13 @@
+libsvn-look-perl (0.15-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/rules: Add --with quilt
+  * debian/rules: Enable author tests
+  * debian/control: Add libtest-kwalitee-perl to B-D-I
+  * Bumped the Standards-Version to 3.8.3.
+
+ -- Angel Abad <angelabad at gmail.com>  Sun, 25 Oct 2009 08:47:35 +0100
+
 libsvn-look-perl (0.14.12-1) UNRELEASED; urgency=low
 
   IGNORE-VERSION: 0.14.12-1

Modified: trunk/libsvn-look-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/control?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/control (original)
+++ trunk/libsvn-look-perl/debian/control Sun Oct 25 07:50:21 2009
@@ -1,20 +1,21 @@
 Source: libsvn-look-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7), quilt (>= 0.40)
-Build-Depends-Indep: perl (>= 5.6.10-12), libtest-pod-coverage-perl (>= 1.08),
- libtest-pod-perl (>= 1.22), subversion
+Build-Depends: debhelper (>= 7.0.50), quilt (>= 0.40)
+Build-Depends-Indep: libtest-pod-coverage-perl (>= 1.08),
+ libtest-pod-perl (>= 1.22), perl, subversion,
+ libtest-kwalitee-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Angel Abad <angelabad at gmail.com>, 
  Antonio Radici <antonio at dyne.org>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/SVN-Look/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsvn-look-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libsvn-look-perl/
 
 Package: libsvn-look-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, subversion
+Depends: ${misc:Depends}, ${perl:Depends}, subversion
 Description: caching wrapper around the svnlook command
  The svnlook command is the workhorse of Subversion hook scripts,
  being used to gather all sorts of information about a repository, its 

Modified: trunk/libsvn-look-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/copyright?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/copyright (original)
+++ trunk/libsvn-look-perl/debian/copyright Sun Oct 25 07:50:21 2009
@@ -1,7 +1,7 @@
 Format-Specification:
     http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Gustavo Chaves <gnustavo at cpan.org>
-Upstream-Source: http://search.cpan.org/dist/SVN-Look
+Upstream-Maintainer: Gustavo Chaves <gustavo+perl at gnustavo.org>
+Upstream-Source: http://search.cpan.org/dist/SVN-Look/
 Upstream-Name: SVN-Look
 
 Files: *
@@ -10,19 +10,20 @@
 License: Artistic | GPL-1+
 
 Files: debian/*
-Copyright: Copyright 2008, Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>
-License-Alias: Perl
+Copyright: 2008, 2009, Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>
+ 2009, Angel Abad <angelabad at gmail.com>
+ 2009, Antonio Radici <antonio at dyne.org>
 License: Artistic | GPL-1+
 
 License: Artistic
     This program is free software; you can redistribute it and/or modify
     it under the terms of the Artistic License, which comes with Perl.
     On Debian GNU/Linux systems, the complete text of the Artistic License
-    can be found in /usr/share/common-licenses/Artistic
+    can be found in `/usr/share/common-licenses/Artistic'
 
 License: GPL-1+
     This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by 
+    it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 1, or (at your option)
     any later version.
     On Debian GNU/Linux systems, the complete text of the GNU General

Modified: trunk/libsvn-look-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/rules?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/rules (original)
+++ trunk/libsvn-look-perl/debian/rules Sun Oct 25 07:50:21 2009
@@ -1,25 +1,7 @@
 #!/usr/bin/make -f
 
-include /usr/share/quilt/quilt.make
+%:
+	dh $@ --with quilt
 
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh build
-	touch $@
-
-clean: unpatch
-	dh $@
-
-install: install-stamp
-install-stamp: build-stamp
-	dh install
-	touch $@
-
-binary-arch:
-
-binary-indep: install
-	dh $@
-
-binary: binary-arch binary-indep
-
-.PHONY: binary binary-arch binary-indep install clean build
+override_dh_auto_configure:
+	dh_auto_configure -- --author-tests

Modified: trunk/libsvn-look-perl/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/lib/SVN/Look.pm?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/lib/SVN/Look.pm (original)
+++ trunk/libsvn-look-perl/lib/SVN/Look.pm Sun Oct 25 07:50:21 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
 

Modified: trunk/libsvn-look-perl/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/t/pod-coverage.t?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/t/pod-coverage.t (original)
+++ trunk/libsvn-look-perl/t/pod-coverage.t Sun Oct 25 07:50:21 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: trunk/libsvn-look-perl/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/t/pod.t?rev=46362&op=diff
==============================================================================
--- trunk/libsvn-look-perl/t/pod.t (original)
+++ trunk/libsvn-look-perl/t/pod.t Sun Oct 25 07:50:21 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