tags 727296 + pending thanks Dear maintainer,
This bug has been pending for several months, and needs fixing for new ports such as arm64 (http://buildd.debian-ports.org/status/architecture.php?a=arm64&suite=sid), so I've prepared an NMU (versioned as 2.2.1-1.1) and uploaded it to DELAYED/7. Please feel free to tell me if I should delay it longer. Discussion on debian-devel revealed consensus that the right way to ensure successful builds on all new architectures was to autoreconf packages, so that method has been used to fix this bug. This works for all arches, even those that need libtool changes, and will continue to work into the future without an update as each new arch comes along. (Discussion at https://lists.debian.org/debian-devel/2014/04/msg00383.html, thread starting at https://lists.debian.org/debian-devel/2014/04/msg00342.html ) As you can see this works fine on your package, and is a very simple patch.
diff -Nru exempi-2.2.1/debian/changelog exempi-2.2.1/debian/changelog --- exempi-2.2.1/debian/changelog 2013-06-30 07:03:29.000000000 +0100 +++ exempi-2.2.1/debian/changelog 2014-06-21 16:35:48.000000000 +0100 @@ -1,3 +1,11 @@ +exempi (2.2.1-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Use dh-autoreconf during the build to support new architectures + (Closes: 727296) + + -- Wookey <woo...@debian.org> Fri, 20 Jun 2014 15:12:08 +0100 + exempi (2.2.1-1) unstable; urgency=low * Remove Asheesh from Maintainer and move myself from Uploaders to diff -Nru exempi-2.2.1/debian/control exempi-2.2.1/debian/control --- exempi-2.2.1/debian/control 2013-06-30 07:03:29.000000000 +0100 +++ exempi-2.2.1/debian/control 2014-06-03 07:53:49.000000000 +0100 @@ -2,7 +2,7 @@ Section: libs Priority: optional Maintainer: Michael Biebl <bi...@debian.org> -Build-Depends: debhelper (>= 9), libexpat1-dev, zlib1g-dev +Build-Depends: debhelper (>= 9), libexpat1-dev, zlib1g-dev, dh-autoreconf Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/collab-maint/exempi.git Vcs-Browser: http://git.debian.org/?p=collab-maint/exempi.git;a=summary diff -Nru exempi-2.2.1/debian/rules exempi-2.2.1/debian/rules --- exempi-2.2.1/debian/rules 2013-06-30 07:03:29.000000000 +0100 +++ exempi-2.2.1/debian/rules 2014-06-03 07:52:50.000000000 +0100 @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --with autoreconf override_dh_auto_configure: dh_auto_configure -- --disable-unittest