Your message dated Fri, 10 May 2013 01:04:35 +0000 with message-id <[email protected]> and subject line Bug#685920: fixed in wv2 0.4.2.dfsg.1-10 has caused the Debian Bug report #685920, regarding src:wv2: Does not honour DEB_BUILD_OPTIONS nocheck to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 685920: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685920 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: src:wv2 Severity: important Justification: Debian Policy 4.9.1 "recommended" Control: tag -1 + patch -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Without DEB_BUILD_OPTIONS nocheck: debian/rules override_dh_auto_test make[1]: Entering directory `/tmp/buildd/wv2-0.4.2.dfsg.1' dh_auto_test make[2]: Entering directory `/tmp/buildd/wv2-0.4.2.dfsg.1/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/buildd/wv2-0.4.2.dfsg.1 -B/tmp/buildd/wv2-0.4.2.dfsg.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/$ make -f CMakeFiles/Makefile2 test [..] make[2]: Leaving directory `/tmp/buildd/wv2-0.4.2.dfsg.1/obj-x86_64-linux-gnu' cp tests/*.doc obj-*/tests cd obj-*/tests ; for t in *test ; do \ echo "Running test $t" ;\ if [ $t = handlertest ]; then \ set -e ; ./$t testole.doc ;\ else \ set -e ; ./$t ;\ fi \ done Running test handlertest [..] Without DEB_BUILD_OPTIONS nocheck: debian/rules override_dh_auto_test make[1]: Entering directory `/tmp/buildd/wv2-0.4.2.dfsg.1' dh_auto_test cp tests/*.doc obj-*/tests cd obj-*/tests ; for t in *test ; do \ echo "Running test $t" ;\ if [ $t = handlertest ]; then \ set -e ; ./$t testole.doc ;\ else \ set -e ; ./$t ;\ fi \ done Running test *test /bin/sh: 6: ./*test: not found make[1]: *** [override_dh_auto_test] Error 127 make[1]: Leaving directory `/tmp/buildd/wv2-0.4.2.dfsg.1' make: *** [build] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 E: Failed autobuilding of package A possible patch is attached; an alternative might be to -x $t before running them. (Side note: the tests seem to mess up my terminal somehow; if I run them, I end up with a beep and % 1;2c1;2c1;2c1;2c at the prompt.) Cheers, gregor -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAEBCAAGBQJQOicWAAoJELs6aAGGSaoGn5kP/RSm4a8fP7neFrFaQ5WG1oPM obWVBtqpu0yH7xTCxSQa2Y9z+U8wWquQjhtYsNBkHNF5cNmBW1WNQ21qdDx7aU+R 5rkxJUTzS1eDUl/xXg9sUjWNBg7N4CmOASKC+cthz37+jmjf701N9qmtn0oXxY9a rxDLNvlWB9tXpgc07MpjY38gxwR4uxzToyvWSKJFRByHLsO/+V9YvtpsmLc3F0KS YeKQnUhiGA9G4lqn398IMd7Hk2WTMwSHwuHDhOYubAO5O4YWlDDX1mq411jMgldt 3PRAokHzk6JTPTOYs1hP6yhzPWBXzlDmlH80rYuTSoLleLCpQkin3KRkdI743ajL 85hJGGSWO3WXJN1zkcXpCyBW/gN8ELt7Z/ckPm9ZJ0tAr4RtMn6ufbGBOOh87RH8 W9D8699YSBicnokMysPPi9cwTrYcsT1tH2smEKJwgGGEVpO6ZBtktu+DmHhQT8V7 0cq7tzmoifDGijPgwnxdACMlTNpQo6mW33KJQGYgZbMzxWV4eKAd57r8e/fhLfEK Pb5XOVEk8ecoYdzitauSBYXb/gpuNrK66yfQyK3OtE2ohSxDExAQC2EZvLAViwcO xzMxH0IXvjHalCSdrC/gVoE+by0jnEGIpT9g/1kp6eKoBb8/F/rd4AaeW26poqcd Wzvp+7xbGk28Z3ACjVxg =FbDT -----END PGP SIGNATURE-----diff -Nru wv2-0.4.2.dfsg.1/debian/changelog wv2-0.4.2.dfsg.1/debian/changelog --- wv2-0.4.2.dfsg.1/debian/changelog 2012-08-26 15:21:08.000000000 +0200 +++ wv2-0.4.2.dfsg.1/debian/changelog 2012-08-26 15:37:27.000000000 +0200 @@ -1,3 +1,11 @@ +wv2 (0.4.2.dfsg.1-9.2) UNRELEASED; urgency=low + + * Non-maintainer upload. + * Honour DEB_BUILD_OPTIONS nocheck in debian/rules. + (Closes: #nnnnnn) + + -- gregor herrmann <[email protected]> Sun, 26 Aug 2012 15:31:17 +0200 + wv2 (0.4.2.dfsg.1-9.1) unstable; urgency=low * Non-maintainer upload. diff -Nru wv2-0.4.2.dfsg.1/debian/rules wv2-0.4.2.dfsg.1/debian/rules --- wv2-0.4.2.dfsg.1/debian/rules 2012-03-25 06:07:57.000000000 +0200 +++ wv2-0.4.2.dfsg.1/debian/rules 2012-08-26 15:32:05.000000000 +0200 @@ -16,6 +16,7 @@ override_dh_auto_test: dh_auto_test +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) cp tests/*.doc obj-*/tests cd obj-*/tests ; for t in *test ; do \ echo "Running test $$t" ;\ @@ -25,3 +26,4 @@ set -e ; ./$$t ;\ fi \ done +endif
--- End Message ---
--- Begin Message ---Source: wv2 Source-Version: 0.4.2.dfsg.1-10 We believe that the bug you reported is fixed in the latest version of wv2, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Olly Betts <[email protected]> (supplier of updated wv2 package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Fri, 10 May 2013 12:06:41 +1200 Source: wv2 Binary: libwv2-4 libwv2-dev Architecture: source amd64 Version: 0.4.2.dfsg.1-10 Distribution: unstable Urgency: low Maintainer: Olly Betts <[email protected]> Changed-By: Olly Betts <[email protected]> Description: libwv2-4 - library for accessing Microsoft Word documents libwv2-dev - development files for Microsoft Word access library Closes: 685920 707417 Changes: wv2 (0.4.2.dfsg.1-10) unstable; urgency=low . * Fix to use -I options from libgsf's pkg-config so libxml headers are found. (Closes: #707417) * Honour DEB_BUILD_OPTIONS nocheck in debian/rules. (Closes: #685920) * Fix double "-l" in output from wv2-config --libs. (LP: #1017413) Checksums-Sha1: 73d0deb492baa2e7a9949c3e3cca98fcbb6094af 1856 wv2_0.4.2.dfsg.1-10.dsc 547f79a6bea517ae14f43d2cd2daaffb05d7dd69 13673 wv2_0.4.2.dfsg.1-10.debian.tar.gz 71ae900ee8282b2852a330160ed88cfffb1de184 262088 libwv2-4_0.4.2.dfsg.1-10_amd64.deb 607d1e382edcfff6ef99bc849067e8906614ea7a 102474 libwv2-dev_0.4.2.dfsg.1-10_amd64.deb Checksums-Sha256: 970efb68cd11ed7172b6dca6f925240db3a55dd88dedfd3869e12fefa683dd99 1856 wv2_0.4.2.dfsg.1-10.dsc 3ec3c57f3f9efcbd0bc00902dd309d4ad017975075a1d15503706dc34c6af291 13673 wv2_0.4.2.dfsg.1-10.debian.tar.gz e4650d7482da3884be2300126cbd3805bf34761e9395466f08be0dd559de6abe 262088 libwv2-4_0.4.2.dfsg.1-10_amd64.deb 33ffc995aa49a3be8cff9075fb8fc9ff7b111adba2a689d4c77cbbbba1fc1ce3 102474 libwv2-dev_0.4.2.dfsg.1-10_amd64.deb Files: 5b8a163aa198a07fcfcd683e9bc59ce6 1856 libs optional wv2_0.4.2.dfsg.1-10.dsc 5cbf356b35e86b76bff6e11f0dbd6b61 13673 libs optional wv2_0.4.2.dfsg.1-10.debian.tar.gz a0903e425e1a2eee3bd7a42dad1d6f1c 262088 libs optional libwv2-4_0.4.2.dfsg.1-10_amd64.deb c4711bc05b264e1d20fad7047aaf042e 102474 libdevel optional libwv2-dev_0.4.2.dfsg.1-10_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAEBAgAGBQJRjEOIAAoJEBgUewc7rSsHRT0P/299ILj7wRcVOMaZYyrzH85F DqmQ7Vr3sSdRDzpLe5qmzYiiTGsdCPwNtbSKF9J4JC4nEqP/BveVf+KzzBUcBOuu g/iGKTxZ+xGB9lU/hx48qThO3ZScCweYZ0oTlnhIqeEwHkunM/Y8l+myBwFVhy8w XUCDgYCfNKlV+jL5Wt0WrO3EsRVwxQyp+SNW5dhk/qkKwzZf1jbN8eWQRLigJUPP evcoKdMKvkodnnwFvZm+I7kH8hsl5Z6w0a/z7z5e8gm8YItyc6o57S4hQxRsZ0gq HCh0lCEU0atWHYdn0lA9Uo+ea9lMvuWE75lrQac/iy5p3focpMjL25k6XVUWGuMb 5ntQdE6jYdAdBj40e6cfpeKCxWH1HaFSLHzHA6t81kqWRnWkdy+r/548chGHf1iO 0UnFNYVWd06SvNPMF1/pZYqbZYQWhcWzIiERWQDCY7ZybmBbeFgFM/ibJ984MJEo 5IOh6fC5i+FaDuQ2/NorFOn92FQu8fErs70fVBV0T0TPpRdM8tRk6aRpRMgKj3co o8RxCTeNM0byuWwGFAZght9Y8nMypcNh+o/ey4zoWxgLyL9fEUpTEOa+c7e45BG5 FXPI0jgeg36TvT/zGSkZuwv7b9H+xWAgAkhkcVuurjsyYylxvtex5/uYWS6QfMVm PfufpLKjl+qYaTrxcMAi =DVd2 -----END PGP SIGNATURE-----
--- End Message ---

