r34601 - in /trunk/libbio-primerdesigner-perl/debian: changelog rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri May 1 23:29:33 UTC 2009


Author: gregoa
Date: Fri May  1 23:29:28 2009
New Revision: 34601

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34601
Log:
debian/rules: skip test t/remote.t which tries to connect to somewhere and
causes a FBTFS; thanks to Daniel Schepler for the bug report
(closes: #526566)

Modified:
    trunk/libbio-primerdesigner-perl/debian/changelog
    trunk/libbio-primerdesigner-perl/debian/rules

Modified: trunk/libbio-primerdesigner-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbio-primerdesigner-perl/debian/changelog?rev=34601&op=diff
==============================================================================
--- trunk/libbio-primerdesigner-perl/debian/changelog (original)
+++ trunk/libbio-primerdesigner-perl/debian/changelog Fri May  1 23:29:28 2009
@@ -1,6 +1,12 @@
 libbio-primerdesigner-perl (0.05-2) UNRELEASED; urgency=low
 
+  [ Charles Plessy ]
   * debian/copyright: show the way to GPLv3, not GPLv2.
+
+  [ gregor herrmann ]
+  * debian/rules: skip test t/remote.t which tries to connect to somewhere and
+    causes a FBTFS; thanks to Daniel Schepler for the bug report
+    (closes: #526566)
 
  -- Charles Plessy <plessy at debian.org>  Sun, 08 Mar 2009 14:25:54 +0900
 

Modified: trunk/libbio-primerdesigner-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbio-primerdesigner-perl/debian/rules?rev=34601&op=diff
==============================================================================
--- trunk/libbio-primerdesigner-perl/debian/rules (original)
+++ trunk/libbio-primerdesigner-perl/debian/rules Fri May  1 23:29:28 2009
@@ -18,6 +18,8 @@
 PACKAGE = $(shell dh_listpackages)
 TMP     = $(CURDIR)/debian/$(PACKAGE)
 
+TEST_FILES= $(filter-out t/remote.t,$(shell echo t/*.t))
+
 build: build-stamp
 build-stamp:
 	dh_testdir
@@ -25,7 +27,7 @@
 	$(PERL) Build.PL installdirs=vendor
 	$(PERL) Build
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-	$(PERL) Build test
+	$(PERL) Build test test_files="$(TEST_FILES)"
 endif
 	touch $@
 




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