r42148 - in /trunk/libsvn-hooks-perl: Changes META.yml Makefile.PL README debian/changelog debian/control debian/rules 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 11:12:34 UTC 2009


Author: angelabad-guest
Date: Thu Aug 20 11:12:21 2009
New Revision: 42148

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42148
Log:
Release 0.21

Modified:
    trunk/libsvn-hooks-perl/Changes
    trunk/libsvn-hooks-perl/META.yml
    trunk/libsvn-hooks-perl/Makefile.PL
    trunk/libsvn-hooks-perl/README
    trunk/libsvn-hooks-perl/debian/changelog
    trunk/libsvn-hooks-perl/debian/control
    trunk/libsvn-hooks-perl/debian/rules
    trunk/libsvn-hooks-perl/lib/SVN/Hooks.pm
    trunk/libsvn-hooks-perl/t/pod-coverage.t
    trunk/libsvn-hooks-perl/t/pod.t

Modified: trunk/libsvn-hooks-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/Changes?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/Changes (original)
+++ trunk/libsvn-hooks-perl/Changes Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/META.yml?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/META.yml (original)
+++ trunk/libsvn-hooks-perl/META.yml Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/Makefile.PL?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/Makefile.PL (original)
+++ trunk/libsvn-hooks-perl/Makefile.PL Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/README?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/README (original)
+++ trunk/libsvn-hooks-perl/README Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/debian/changelog?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/debian/changelog (original)
+++ trunk/libsvn-hooks-perl/debian/changelog Thu Aug 20 11:12:21 2009
@@ -1,10 +1,16 @@
-libsvn-hooks-perl (0.20-2) UNRELEASED; urgency=low
+libsvn-hooks-perl (0.21-1) unstable; urgency=low
 
+  [Salvatore Bonaccorso]
   * debian/control: Changed: Replace versioned (build-)dependency on
     perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
     permitted by Debian Policy 3.8.3).
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sun, 16 Aug 2009 20:15:50 +0200
+  [ Angel Abad (Ikusnet SLL) ]
+  * New upstream release
+  * debian/control:
+    - Bump Standards-Version to 3.8.3
+
+ -- Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>  Thu, 20 Aug 2009 12:46:32 +0200
 
 libsvn-hooks-perl (0.20-1) unstable; urgency=low
 

Modified: trunk/libsvn-hooks-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/debian/control?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/debian/control (original)
+++ trunk/libsvn-hooks-perl/debian/control Thu Aug 20 11:12:21 2009
@@ -1,24 +1,25 @@
 Source: libsvn-hooks-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.0.50)
-Build-Depends-Indep: perl, libemail-simple-creator-perl,
-  libsoap-lite-perl, libemail-simple-perl, libsvn-look-perl,
-  libemail-send-perl, libsvn-notify-perl, subversion,
-  libtest-pod-perl (>= 1.22), libtest-pod-coverage-perl (>= 1.08)
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libemail-send-perl, libemail-simple-creator-perl,
+ libemail-simple-perl, libsoap-lite-perl, libsvn-look-perl, libsvn-notify-perl,
+ libtest-pod-coverage-perl (>= 1.08), libtest-pod-perl (>= 1.22),
+ subversion
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Angel Abad (Ikusnet SLL) <angel at grupoikusnet.com>,
- gregor herrmann <gregoa at debian.org>, Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
-Standards-Version: 3.8.2
+ gregor herrmann <gregoa at debian.org>,
+ Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/SVN-Hooks/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsvn-hooks-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libsvn-hooks-perl/
 
 Package: libsvn-hooks-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, libemail-simple-creator-perl,
-  libsoap-lite-perl, libemail-simple-perl, libsvn-look-perl,
-  libemail-send-perl, libsvn-notify-perl, subversion
+Depends: ${misc:Depends}, ${perl:Depends}, libemail-send-perl,
+ libemail-simple-creator-perl, libemail-simple-perl, libsoap-lite-perl,
+ libsvn-look-perl, libsvn-notify-perl, perl (>= 5.8.8), subversion
 Description: framework for implementing subversion hooks
  SVN-Hooks is a framework for creating Subversion hooks. It comes with
  a bunch of plugins (actually, sub-modules of SVN::Hooks) that 

Modified: trunk/libsvn-hooks-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/debian/rules?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/debian/rules (original)
+++ trunk/libsvn-hooks-perl/debian/rules Thu Aug 20 11:12:21 2009
@@ -3,5 +3,3 @@
 %:
 	dh $@
 
-override_dh_auto_configure:
-	dh_auto_configure -- --noonline-tests

Modified: trunk/libsvn-hooks-perl/lib/SVN/Hooks.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/lib/SVN/Hooks.pm?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/lib/SVN/Hooks.pm (original)
+++ trunk/libsvn-hooks-perl/lib/SVN/Hooks.pm Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/t/pod-coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/t/pod-coverage.t?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/t/pod-coverage.t (original)
+++ trunk/libsvn-hooks-perl/t/pod-coverage.t Thu Aug 20 11:12:21 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: trunk/libsvn-hooks-perl/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-hooks-perl/t/pod.t?rev=42148&op=diff
==============================================================================
--- trunk/libsvn-hooks-perl/t/pod.t (original)
+++ trunk/libsvn-hooks-perl/t/pod.t Thu Aug 20 11:12:21 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