r66064 - in /trunk/libdigest-crc-perl/debian: changelog control rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Dec 21 15:17:12 UTC 2010


Author: gregoa
Date: Tue Dec 21 15:16:58 2010
New Revision: 66064

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66064
Log:
Run the CRC64 tests only if the build machine reports to have 64 bits; add
"dpkg-dev (>= 1.15.4)" to Build-Depends.

Modified:
    trunk/libdigest-crc-perl/debian/changelog
    trunk/libdigest-crc-perl/debian/control
    trunk/libdigest-crc-perl/debian/rules

Modified: trunk/libdigest-crc-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-crc-perl/debian/changelog?rev=66064&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/debian/changelog (original)
+++ trunk/libdigest-crc-perl/debian/changelog Tue Dec 21 15:16:58 2010
@@ -1,13 +1,5 @@
 libdigest-crc-perl (0.16-1) UNRELEASED; urgency=low
 
-  PROBLEM:
-  FTBFS on i386 (with WITH_CRC64 set, without it the tests pass)
-    #   Failed test 'crc64 2321281022'
-    #   at t/crc.t line 32.
-    # Looks like you failed 1 test of 21.
-    t/crc.t .. 
-  (builds on amd64)
-  
   [ Joachim Breitner ]
   * Removed myself from uploaders.
 
@@ -28,6 +20,10 @@
   * Bump Standards-Version to 3.9.1.
   * Add myself to Uploaders.
   * Update my email address.
+
+  [ gregor herrmann ]
+  * Run the CRC64 tests only if the build machine reports to have 64 bits; add
+    "dpkg-dev (>= 1.15.4)" to Build-Depends.
 
  -- Ansgar Burchardt <ansgar at 43-1.org>  Sun, 03 Oct 2010 18:27:50 +0200
 

Modified: trunk/libdigest-crc-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-crc-perl/debian/control?rev=66064&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/debian/control (original)
+++ trunk/libdigest-crc-perl/debian/control Tue Dec 21 15:16:58 2010
@@ -9,7 +9,7 @@
 Homepage: http://search.cpan.org/dist/Digest-CRC/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdigest-crc-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdigest-crc-perl/
-Build-Depends: debhelper (>= 7.3.0~), perl
+Build-Depends: debhelper (>= 7.3.0~), perl, dpkg-dev (>= 1.15.4)
 
 Package: libdigest-crc-perl
 Architecture: any

Modified: trunk/libdigest-crc-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-crc-perl/debian/rules?rev=66064&op=diff
==============================================================================
--- trunk/libdigest-crc-perl/debian/rules (original)
+++ trunk/libdigest-crc-perl/debian/rules Tue Dec 21 15:16:58 2010
@@ -1,7 +1,11 @@
 #!/usr/bin/make -f
+
+ifeq (64,$(shell dpkg-architecture -qDEB_BUILD_ARCH_BITS))
+	HAVE_64_BITS=1
+endif
 
 %:
 	dh $@ --buildsystem=perl_makemaker
 
 override_dh_auto_test:
-	WITH_CRC64=1 dh_auto_test --buildsystem=perl_makemaker
+	WITH_CRC64=$(HAVE_64_BITS) dh_auto_test --buildsystem=perl_makemaker




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