tags 727493 + patch tags 727493 + pending thanks Dear maintainer,
This bug has been pending for some time, and needs fixing for new ports, including arm64 which is building now: (http://buildd.debian-ports.org/status/architecture.php?a=arm64&suite=sid). So I've prepared an NMU for pgdbf (versioned as 0.6.2-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 this package, and is a very simple patch.
diff -Nru pgdbf-0.6.2/debian/changelog pgdbf-0.6.2/debian/changelog --- pgdbf-0.6.2/debian/changelog 2013-07-28 07:33:52.000000000 +0100 +++ pgdbf-0.6.2/debian/changelog 2014-06-23 03:44:23.000000000 +0100 @@ -1,3 +1,10 @@ +pgdbf (0.6.2-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Use dh-autoreconf in build to support new architectures (Closes: #727493) + + -- Chen Baozi <baoz...@gmail.com> Fri, 06 Jun 2014 20:01:38 +0800 + pgdbf (0.6.2-1) unstable; urgency=low * New upstream release. diff -Nru pgdbf-0.6.2/debian/control pgdbf-0.6.2/debian/control --- pgdbf-0.6.2/debian/control 2013-07-28 07:27:42.000000000 +0100 +++ pgdbf-0.6.2/debian/control 2014-06-24 01:22:16.000000000 +0100 @@ -2,7 +2,7 @@ Section: database Priority: optional Maintainer: Chris Taylor <ctay...@debian.org> -Build-Depends: debhelper (>= 9), autotools-dev +Build-Depends: debhelper (>= 9), dh-autoreconf Standards-Version: 3.9.4 Homepage: http://pgdbf.sourceforge.net/ diff -Nru pgdbf-0.6.2/debian/rules pgdbf-0.6.2/debian/rules --- pgdbf-0.6.2/debian/rules 2013-07-28 07:26:22.000000000 +0100 +++ pgdbf-0.6.2/debian/rules 2014-06-23 03:42:57.000000000 +0100 @@ -1,3 +1,3 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --with autoreconf