r40397 - in /trunk/libhtml-widget-perl/debian: changelog patches/pod-coverage-test.patch patches/series rules
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Tue Jul 21 11:06:28 UTC 2009
Author: gregoa
Date: Tue Jul 21 11:06:20 2009
New Revision: 40397
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=40397
Log:
New patch pod-coverage-test.patch: use a different environment variable
for pod and pod coverage tests, so we can enable them separately.
Added:
trunk/libhtml-widget-perl/debian/patches/pod-coverage-test.patch
Modified:
trunk/libhtml-widget-perl/debian/changelog
trunk/libhtml-widget-perl/debian/patches/series
trunk/libhtml-widget-perl/debian/rules
Modified: trunk/libhtml-widget-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-widget-perl/debian/changelog?rev=40397&op=diff
==============================================================================
--- trunk/libhtml-widget-perl/debian/changelog (original)
+++ trunk/libhtml-widget-perl/debian/changelog Tue Jul 21 11:06:20 2009
@@ -28,6 +28,8 @@
[ gregor herrmann ]
* debian/control: slightly change short and long description.
+ * New patch pod-coverage-test.patch: use a different environment variable
+ for pod and pod coverage tests, so we can enable them separately.
-- Ansgar Burchardt <ansgar at 43-1.org> Mon, 20 Jul 2009 15:09:59 +0200
Added: trunk/libhtml-widget-perl/debian/patches/pod-coverage-test.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-widget-perl/debian/patches/pod-coverage-test.patch?rev=40397&op=file
==============================================================================
--- trunk/libhtml-widget-perl/debian/patches/pod-coverage-test.patch (added)
+++ trunk/libhtml-widget-perl/debian/patches/pod-coverage-test.patch Tue Jul 21 11:06:20 2009
@@ -1,0 +1,13 @@
+Author: gregor herrmann <gregoa at debian.org>
+Description: use a separate variable to en/disable pod coverage tests
+
+--- a/t/03podcoverage.t
++++ b/t/03podcoverage.t
+@@ -5,6 +5,6 @@
+
+ eval "use Test::Pod::Coverage 1.04";
+ plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
++plan skip_all => 'set TEST_POD_COVERAGE to enable this test' unless $ENV{TEST_POD_COVERAGE};
+
+ all_pod_coverage_ok();
Modified: trunk/libhtml-widget-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-widget-perl/debian/patches/series?rev=40397&op=diff
==============================================================================
--- trunk/libhtml-widget-perl/debian/patches/series (original)
+++ trunk/libhtml-widget-perl/debian/patches/series Tue Jul 21 11:06:20 2009
@@ -1,1 +1,2 @@
whatis-entries.patch
+pod-coverage-test.patch
Modified: trunk/libhtml-widget-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-widget-perl/debian/rules?rev=40397&op=diff
==============================================================================
--- trunk/libhtml-widget-perl/debian/rules (original)
+++ trunk/libhtml-widget-perl/debian/rules Tue Jul 21 11:06:20 2009
@@ -1,4 +1,4 @@
#!/usr/bin/make -f
%:
- # TEST_POD=1: coverage tests fail
- dh --with quilt $@
+ # TEST_POD_COVERAGE=1: coverage tests fail
+ TEST_POD=1 dh --with quilt $@
More information about the Pkg-perl-cvs-commits
mailing list