Package: elfutils Version: 0.157-3 Severity: normal Tags: patch User: [email protected] Usertag: arm64
elfutils fails a couple of tests on arm64, due to missing backend aarch64 implmentation. (I't done upstream on 0.158). However this doesn't actually matter for bootstrapping purposes and the package remains very useful as a dependency, so this fix is a good one to use until 0.158 is uploaded. I'm happy to NMU this if that's OK with you. Is anything blocking an update to 0.158? -- System Information: Debian Release: 7.4 APT prefers stable APT policy: (990, 'stable') Architecture: i386 (i686) Kernel: Linux 3.2.0-kvm-i386-20110111 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash
diff -Nru elfutils-0.157/debian/changelog elfutils-0.157/debian/changelog --- elfutils-0.157/debian/changelog 2013-11-17 21:55:05.000000000 +0000 +++ elfutils-0.157/debian/changelog 2014-04-20 22:16:01.000000000 +0000 @@ -1,3 +1,10 @@ +elfutils (0.157-3+arm64) unreleased; urgency=low + + * Non-maintainer upload. + * Skip the testsuite on arm64/aarch64 as backend is missing in 0.157 + + -- Wookey <[email protected]> Sun, 20 Apr 2014 22:01:02 +0000 + elfutils (0.157-3) unstable; urgency=low * Build-Depend on gcc-multilib on [any-amd64] instead of [amd64] diff -Nru elfutils-0.157/debian/rules elfutils-0.157/debian/rules --- elfutils-0.157/debian/rules 2013-11-04 20:09:10.000000000 +0000 +++ elfutils-0.157/debian/rules 2014-04-20 21:59:44.000000000 +0000 @@ -31,6 +31,10 @@ make_check = no endif +ifneq (,$(findstring aarch64, $(DEB_HOST_GNU_TYPE))) + make_check = no +endif + DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk

