r46607 - in /trunk/libsys-filesystem-perl/debian: changelog patches/01_fix-podtest-over-aix.patch patches/disable-whereami-test.patch patches/series

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Oct 31 17:32:51 UTC 2009


Author: jawnsy-guest
Date: Sat Oct 31 17:32:42 2009
New Revision: 46607

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46607
Log:
* Remove Aix.pm patch, that was fixed in 1.24 upstream
* Add a new patch to disable tests needing mountpoints

Added:
    trunk/libsys-filesystem-perl/debian/patches/disable-whereami-test.patch
Removed:
    trunk/libsys-filesystem-perl/debian/patches/01_fix-podtest-over-aix.patch
Modified:
    trunk/libsys-filesystem-perl/debian/changelog
    trunk/libsys-filesystem-perl/debian/patches/series

Modified: trunk/libsys-filesystem-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsys-filesystem-perl/debian/changelog?rev=46607&op=diff
==============================================================================
--- trunk/libsys-filesystem-perl/debian/changelog (original)
+++ trunk/libsys-filesystem-perl/debian/changelog Sat Oct 31 17:32:42 2009
@@ -6,6 +6,8 @@
   * Refreshed copyright information
   * Now requires libparams-util-perl (>= 1.00)
   * Use new --with quilt feature
+  * Remove Aix.pm patch, that was fixed in 1.24 upstream
+  * Add a new patch to disable tests needing mountpoints
 
   [ gregor herrmann ]
   * debian/copyright: fix "License: GPL-2+" stanza, which mentioned "version

Added: trunk/libsys-filesystem-perl/debian/patches/disable-whereami-test.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsys-filesystem-perl/debian/patches/disable-whereami-test.patch?rev=46607&op=file
==============================================================================
--- trunk/libsys-filesystem-perl/debian/patches/disable-whereami-test.patch (added)
+++ trunk/libsys-filesystem-perl/debian/patches/disable-whereami-test.patch Sat Oct 31 17:32:42 2009
@@ -1,0 +1,27 @@
+Description: disable "whereami" test
+ This test tries to find bind points for the `perl' executable used
+ to run test scripts, as well as where the test script is itself.
+ When building in some chrooted environments (sbuild and cowbuilder
+ have been confirmed), it causes failures since those items aren't
+ in the `df -ah' output (or /etc/mtab). However, it seems to build
+ fine with pbuilder or with a normal (non-chrooted) build.
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/t/04whereami.t
++++ b/t/04whereami.t
+@@ -1,8 +1,13 @@
+-use Test::More tests => 3;
++use Test::More;
+ use Sys::Filesystem;
+ use Cwd qw(abs_path);
+ use Config;
+ 
++plan skip_tests => 'May fail in some chroots, set TEST_MOUNTPOINTS=1 to run'
++  unless ($ENV{TEST_MOUNTPOINTS});
++
++plan tests => 3;
++
+ my $RealTest = abs_path(__FILE__);
+ my $RealPerl = $Config{perlpath};
+ if ( $^O ne 'VMS' )

Modified: trunk/libsys-filesystem-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsys-filesystem-perl/debian/patches/series?rev=46607&op=diff
==============================================================================
--- trunk/libsys-filesystem-perl/debian/patches/series (original)
+++ trunk/libsys-filesystem-perl/debian/patches/series Sat Oct 31 17:32:42 2009
@@ -1,1 +1,1 @@
-01_fix-podtest-over-aix.patch
+disable-whereami-test.patch




More information about the Pkg-perl-cvs-commits mailing list