r20865 - in /trunk/libmodule-install-perl/debian: changelog patches/build-in-cowbuilder.patch patches/disable-t_03_autoinstall.patch patches/series

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Jun 9 06:34:11 UTC 2008


Author: dmn
Date: Mon Jun  9 06:34:08 2008
New Revision: 20865

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20865
Log:
skip t/03_auoinstall.t during build as it requires a configured CPAN home.
Fixes FTBFS in clean environment (Closes: #479923)

Added:
    trunk/libmodule-install-perl/debian/patches/disable-t_03_autoinstall.patch
Removed:
    trunk/libmodule-install-perl/debian/patches/build-in-cowbuilder.patch
Modified:
    trunk/libmodule-install-perl/debian/changelog
    trunk/libmodule-install-perl/debian/patches/series

Modified: trunk/libmodule-install-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-perl/debian/changelog?rev=20865&op=diff
==============================================================================
--- trunk/libmodule-install-perl/debian/changelog (original)
+++ trunk/libmodule-install-perl/debian/changelog Mon Jun  9 06:34:08 2008
@@ -6,16 +6,18 @@
   Warning: prerequisite ExtUtils::Install 1.50 not found. We have 1.44.
   Warning: prerequisite ExtUtils::ParseXS 2.19 not found. We have 2.15.
   Warning: prerequisite YAML::Tiny 1.31 not found. We have 1.29.
-  
+
   plus three lintian manpage-has-bad-whatis-entry warnings
-  
+
   [ AGOSTINI Yves ]
   * New upstream release.
   * force libmodule-corelist-perl (>= 2.15) in B-D
-  * a simple patch for t/03_autoinstall.t which remove
-    ExtUtils::MakeMaker::prompt close FTBFS in cowbuilder (Closes: #479923)
   * add quilt dep in control
   * add quilt use in rules
+
+  [ Damyan Ivanov ]
+  * skip t/03_auoinstall.t during build as it requires a configured CPAN home.
+    Fixes FTBFS in clean environment (Closes: #479923)
 
  -- AGOSTINI Yves <agostini at univ-metz.fr>  Mon, 02 Jun 2008 19:00:42 +0200
 

Added: trunk/libmodule-install-perl/debian/patches/disable-t_03_autoinstall.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-perl/debian/patches/disable-t_03_autoinstall.patch?rev=20865&op=file
==============================================================================
--- trunk/libmodule-install-perl/debian/patches/disable-t_03_autoinstall.patch (added)
+++ trunk/libmodule-install-perl/debian/patches/disable-t_03_autoinstall.patch Mon Jun  9 06:34:08 2008
@@ -1,0 +1,21 @@
+--- a/t/03_autoinstall.t
++++ b/t/03_autoinstall.t
+@@ -6,7 +6,17 @@ BEGIN {
+ }
+ 
+ use strict;
+-use Test::More tests => 6;
++use Test::More;
++if( $ENV{AUTOMATED_TESTING} )
++{
++    plan skip_all => 'AUTOMATED_TESTING set';
++}
++else
++{
++    plan tests => 6;
++}
++
++
+ 
+ # Intercepts calls to WriteMakefile and prompt.
+ my $mm_args;

Modified: trunk/libmodule-install-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-perl/debian/patches/series?rev=20865&op=diff
==============================================================================
--- trunk/libmodule-install-perl/debian/patches/series (original)
+++ trunk/libmodule-install-perl/debian/patches/series Mon Jun  9 06:34:08 2008
@@ -1,1 +1,1 @@
-build-in-cowbuilder.patch
+disable-t_03_autoinstall.patch




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