r35047 - in /trunk/libwww-freshmeat-perl/debian: changelog control rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri May 8 21:29:14 UTC 2009


Author: gregoa
Date: Fri May  8 21:29:09 2009
New Revision: 35047

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35047
Log:
debian/rules: filter out tests that need an internet connection, thanks to
Daniel Schepler for the bug report (closes: #527819). Bump versioned on
debhelper in debian/control.

Modified:
    trunk/libwww-freshmeat-perl/debian/changelog
    trunk/libwww-freshmeat-perl/debian/control
    trunk/libwww-freshmeat-perl/debian/rules

Modified: trunk/libwww-freshmeat-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libwww-freshmeat-perl/debian/changelog?rev=35047&op=diff
==============================================================================
--- trunk/libwww-freshmeat-perl/debian/changelog (original)
+++ trunk/libwww-freshmeat-perl/debian/changelog Fri May  8 21:29:09 2009
@@ -1,3 +1,11 @@
+libwww-freshmeat-perl (0.12-3) UNRELEASED; urgency=low
+
+  * debian/rules: filter out tests that need an internet connection, thanks to
+    Daniel Schepler for the bug report (closes: #527819). Bump versioned on
+    debhelper in debian/control.
+
+ -- gregor herrmann <gregoa at debian.org>  Fri, 08 May 2009 23:22:44 +0200
+
 libwww-freshmeat-perl (0.12-2) unstable; urgency=low
 
   * fix dependency on liblw*P*-online-perl

Modified: trunk/libwww-freshmeat-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libwww-freshmeat-perl/debian/control?rev=35047&op=diff
==============================================================================
--- trunk/libwww-freshmeat-perl/debian/control (original)
+++ trunk/libwww-freshmeat-perl/debian/control Fri May  8 21:29:09 2009
@@ -1,7 +1,7 @@
 Source: libwww-freshmeat-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7)
+Build-Depends: debhelper (>= 7.0.50)
 Build-Depends-Indep: perl (>= 5.8.0-7), libwww-perl, libxml-simple-perl, libtest-pod-perl, libtest-pod-coverage-perl,
  liblwp-online-perl, libhtml-treebuilder-xpath-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>

Modified: trunk/libwww-freshmeat-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libwww-freshmeat-perl/debian/rules?rev=35047&op=diff
==============================================================================
--- trunk/libwww-freshmeat-perl/debian/rules (original)
+++ trunk/libwww-freshmeat-perl/debian/rules Fri May  8 21:29:09 2009
@@ -1,9 +1,14 @@
 #!/usr/bin/make -f
+
+TEST_FILES = $(filter-out t/nonexistingproject.t t/project.t,$(shell echo t/*.t))
 
 build: build-stamp
 build-stamp:
 	dh build
 	touch $@
+
+override_dh_auto_test:
+	dh_auto_test -- TEST_FILES="$(TEST_FILES)"
 
 clean:
 	dh $@




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