r60499 - in /trunk/libcoro-perl/debian: changelog control rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Jul 23 12:09:25 UTC 2010


Author: gregoa
Date: Fri Jul 23 12:08:44 2010
New Revision: 60499

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60499
Log:
* Remove override for tests.
* Build with pthread backend on some acrchitectures (cf. #578458).
* Set Standards-Version to 3.9.0 (no changes).

Modified:
    trunk/libcoro-perl/debian/changelog
    trunk/libcoro-perl/debian/control
    trunk/libcoro-perl/debian/rules

Modified: trunk/libcoro-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/changelog?rev=60499&op=diff
==============================================================================
--- trunk/libcoro-perl/debian/changelog (original)
+++ trunk/libcoro-perl/debian/changelog Fri Jul 23 12:08:44 2010
@@ -1,3 +1,11 @@
+libcoro-perl (5.230-3) UNRELEASED; urgency=low
+
+  * Remove override for tests.
+  * Build with pthread backend on some acrchitectures (cf. #578458).
+  * Set Standards-Version to 3.9.0 (no changes).
+
+ -- gregor herrmann <gregoa at debian.org>  Fri, 23 Jul 2010 13:53:15 +0200
+
 libcoro-perl (5.230-2) unstable; urgency=low
 
   * Remove temporary test patch.

Modified: trunk/libcoro-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/control?rev=60499&op=diff
==============================================================================
--- trunk/libcoro-perl/debian/control (original)
+++ trunk/libcoro-perl/debian/control Fri Jul 23 12:08:44 2010
@@ -1,12 +1,12 @@
 Source: libcoro-perl
 Section: perl
 Priority: optional
-Build-Depends: perl, debhelper (>= 7.0.50~),
+Build-Depends: perl, debhelper (>= 7),
  libguard-perl, libanyevent-perl (>= 5), libcommon-sense-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonathan Yu <jawnsy at cpan.org>,
  gregor herrmann <gregoa at debian.org>
-Standards-Version: 3.8.4
+Standards-Version: 3.9.0
 Homepage: http://search.cpan.org/dist/Coro/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcoro-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcoro-perl/

Modified: trunk/libcoro-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/rules?rev=60499&op=diff
==============================================================================
--- trunk/libcoro-perl/debian/rules (original)
+++ trunk/libcoro-perl/debian/rules Fri Jul 23 12:08:44 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/make -f
+
+PTHREAD_ARCHS = "alpha hppa kfreebsd-amd64 kfreebsd-i386 mips mipsel sparc"
+HOST_ARCH     = $(shell dpkg-architecture -qDEB_HOST_ARCH)
+
+ifneq (,$(findstring $(HOST_ARCH),$(PTHREAD_ARCHS)))
+	export CORO_INTERFACE=p
+endif
 
 %:
 	dh $@
-
-override_dh_auto_test:
-	prove --blib --verbose t/*.t




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