Control: tags -1 + pending Hi,
2017-01-26 21:00 Helmut Grohne:
Source: sndfile-tools Version: 1.03-7 Tags: patch User: [email protected] Usertags: rebootstrap sndfile-tools fails to cross build from source, because it runs the test suite even when given DEB_BUILD_OPTIONS=nocheck. There is no reasonable expectation that the test suite could be run when host architecture executables cannot be run. After disabling the test suite, sndfile-tools cross builds just fine. Please consider applying the attached patch.
I just uploaded a NMU to delayed/10 with this patch applied. If you want me to cancel it, delay it further or otherwise are OK with it and we can reschedule it to happen sooner, please tell me. debdiff attached. Cheers. -- Manuel A. Fernandez Montecelo <[email protected]>
diff -Nru sndfile-tools-1.03/debian/changelog sndfile-tools-1.03/debian/changelog --- sndfile-tools-1.03/debian/changelog 2014-01-30 09:23:00.000000000 +0100 +++ sndfile-tools-1.03/debian/changelog 2017-10-05 23:26:45.000000000 +0200 @@ -1,3 +1,12 @@ +sndfile-tools (1.03-7.1) unstable; urgency=medium + + * Non-maintainer upload. + + [ Helmut Grohne ] + * Fix FTCBFS: Support DEB_BUILD_OPTIONS=nocheck (Closes: #852735). + + -- Manuel A. Fernandez Montecelo <[email protected]> Thu, 05 Oct 2017 23:26:45 +0200 + sndfile-tools (1.03-7) unstable; urgency=low * debian/rules: Switch from autotools-dev to dh-autoreconf. diff -Nru sndfile-tools-1.03/debian/rules sndfile-tools-1.03/debian/rules --- sndfile-tools-1.03/debian/rules 2014-01-30 09:23:00.000000000 +0100 +++ sndfile-tools-1.03/debian/rules 2017-10-05 23:14:29.000000000 +0200 @@ -39,8 +39,10 @@ $(MAKE) +ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) # Failure in test suite must cause a build failure. $(MAKE) check +endif touch build-stamp

