r11897 - in /trunk/libdevice-cdio-perl/debian: changelog patches/00list patches/07_pod-coverage.dpatch
gregoa-guest at users.alioth.debian.org
gregoa-guest at users.alioth.debian.org
Tue Jan 1 23:11:41 UTC 2008
Author: gregoa-guest
Date: Tue Jan 1 23:11:40 2008
New Revision: 11897
URL: http://svn.debian.org/wsvn/?sc=1&rev=11897
Log:
* Add new patch 07_pod-coverage.dpatch: only test pod coverage for modules
in lib/Device/ (closes: #456845).
* Set urgency to medium because of the fix for a FTBFS bug.
Added:
trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch (with props)
Modified:
trunk/libdevice-cdio-perl/debian/changelog
trunk/libdevice-cdio-perl/debian/patches/00list
Modified: trunk/libdevice-cdio-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevice-cdio-perl/debian/changelog?rev=11897&op=diff
==============================================================================
--- trunk/libdevice-cdio-perl/debian/changelog (original)
+++ trunk/libdevice-cdio-perl/debian/changelog Tue Jan 1 23:11:40 2008
@@ -1,7 +1,13 @@
-libdevice-cdio-perl (0.2.4-4) UNRELEASED; urgency=low
+libdevice-cdio-perl (0.2.4-4) UNRELEASED; urgency=medium
+ [ Frank Lichtenheld ]
* Clean up debian/rules target dependencies so that the package
can be build with dpkg-buildpackage -j. Found by Daniel Schepler.
+
+ [ gregor herrmann ]
+ * Add new patch 07_pod-coverage.dpatch: only test pod coverage for modules
+ in lib/Device/ (closes: #456845).
+ * Set urgency to medium because of the fix for a FTBFS bug.
-- Frank Lichtenheld <djpig at debian.org> Tue, 30 Oct 2007 07:51:06 +0100
Modified: trunk/libdevice-cdio-perl/debian/patches/00list
URL: http://svn.debian.org/wsvn/trunk/libdevice-cdio-perl/debian/patches/00list?rev=11897&op=diff
==============================================================================
--- trunk/libdevice-cdio-perl/debian/patches/00list (original)
+++ trunk/libdevice-cdio-perl/debian/patches/00list Tue Jan 1 23:11:40 2008
@@ -4,3 +4,4 @@
04_wrong_handling_of_output_parameters
05_buffer_overflows_in_perliso9660
06_module_build
+07_pod-coverage
Added: trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch
URL: http://svn.debian.org/wsvn/trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch?rev=11897&op=file
==============================================================================
--- trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch (added)
+++ trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch Tue Jan 1 23:11:40 2008
@@ -1,0 +1,30 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 07_pod-coverage.dpatch by <gregor+debian at comodo.priv.at>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Only test pod coverage for modules in lib/Device.
+## DP: Seems to have been the author's intention, and closes #456845
+
+ at DPATCH@
+diff -urNad libdevice-cdio-perl~/t/01.pod-coverage.t libdevice-cdio-perl/t/01.pod-coverage.t
+--- libdevice-cdio-perl~/t/01.pod-coverage.t 2008-01-01 23:59:25.000000000 +0100
++++ libdevice-cdio-perl/t/01.pod-coverage.t 2008-01-02 00:00:55.000000000 +0100
+@@ -11,7 +11,7 @@
+ eval "use Test::Pod::Coverage 1.04";
+ plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
+
+-all_pod_coverage_ok();
++# all_pod_coverage_ok();
+
+ # Don't know how to get this from perlcdio ignored.
+ #all_pod_coverage_ok(
+@@ -19,3 +19,9 @@
+ # { also_private => [ qr/this$/ ] },
+ # "perlcdio, 'this' routine"
+ # );
++
++my @modules = all_modules('blib/lib/Device');
++plan tests => $#modules + 1;
++foreach (@modules) {
++ pod_coverage_ok($_);
++}
Propchange: trunk/libdevice-cdio-perl/debian/patches/07_pod-coverage.dpatch
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-perl-cvs-commits
mailing list