Your message dated Tue, 17 Jul 2018 17:04:25 +0000 with message-id <E1ffTOj-000GXH-0I@fasolo.debian.org> and subject line Bug#900913: fixed in sonic-visualiser 3.1-1 has caused the Debian Bug report #900913, regarding sonic-visualizer FTCBFS: runs qmake for the build architecture 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 owner@bugs.debian.org immediately.) -- 900913: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900913 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: sonic-visualizer FTCBFS: runs qmake for the build architecture
- From: Helmut Grohne <helmut@subdivi.de>
- Date: Wed, 6 Jun 2018 18:49:36 +0200
- Message-id: <20180606164934.GA21686@alf.mars>
Source: sonic-visualiser Version: 3.0.3-4 Tags: patch upstream User: helmutg@debian.org Usertags: rebootstrap sonic-visualizer fails to cross build from source, because it runs qmake for the build architecture. The behaviour of qmake is architecture-dependent and thus a triplet-prefixed version of it exists in Debian. By using AC_CHECK_TOOL/AC_PATH_TOOL rather than AC_CHECK_PROG/AC_PATH_PROG, autoconf prefers that one and the build proceeds until it fails executing capnp. Such a failure looks like a problem in capnp to me, so the attached patch only fixes the qmake part. I only used the TOOL variant for tools on $PATH and not for searching $QTDIR as the latter installations are typically configured for a particular architecture. Please consider applying the patch and close this bug when doing so. Helmut--- sonic-visualiser-3.0.3.orig/acinclude.m4 +++ sonic-visualiser-3.0.3/acinclude.m4 @@ -78,13 +78,13 @@ AC_CHECK_PROG(QMAKE, qmake.exe, $QTDIR/bin/qmake.exe,,$QTDIR/bin/) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake-qt5, qmake-qt5,,$PATH) + AC_PATH_TOOL(QMAKE, qmake-qt5,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qt5-qmake, qt5-qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qt5-qmake,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake, qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qmake,,$PATH) fi if test x$QMAKE = x ; then AC_MSG_ERROR([ --- sonic-visualiser-3.0.3.orig/svapp/acinclude.m4 +++ sonic-visualiser-3.0.3/svapp/acinclude.m4 @@ -78,13 +78,13 @@ AC_CHECK_PROG(QMAKE, qmake.exe, $QTDIR/bin/qmake.exe,,$QTDIR/bin/) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake-qt5, qmake-qt5,,$PATH) + AC_PATH_TOOL(QMAKE, qmake-qt5,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qt5-qmake, qt5-qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qt5-qmake,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake, qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qmake,,$PATH) fi if test x$QMAKE = x ; then AC_MSG_ERROR([ --- sonic-visualiser-3.0.3.orig/svcore/acinclude.m4 +++ sonic-visualiser-3.0.3/svcore/acinclude.m4 @@ -78,13 +78,13 @@ AC_CHECK_PROG(QMAKE, qmake.exe, $QTDIR/bin/qmake.exe,,$QTDIR/bin/) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake-qt5, qmake-qt5,,$PATH) + AC_PATH_TOOL(QMAKE, qmake-qt5,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qt5-qmake, qt5-qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qt5-qmake,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake, qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qmake,,$PATH) fi if test x$QMAKE = x ; then AC_MSG_ERROR([ --- sonic-visualiser-3.0.3.orig/svgui/acinclude.m4 +++ sonic-visualiser-3.0.3/svgui/acinclude.m4 @@ -78,13 +78,13 @@ AC_CHECK_PROG(QMAKE, qmake.exe, $QTDIR/bin/qmake.exe,,$QTDIR/bin/) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake-qt5, qmake-qt5,,$PATH) + AC_PATH_TOOL(QMAKE, qmake-qt5,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qt5-qmake, qt5-qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qt5-qmake,,$PATH) fi if test x$QMAKE = x ; then - AC_CHECK_PROG(QMAKE, qmake, qmake,,$PATH) + AC_PATH_TOOL(QMAKE, qmake,,$PATH) fi if test x$QMAKE = x ; then AC_MSG_ERROR([
--- End Message ---
--- Begin Message ---
- To: 900913-close@bugs.debian.org
- Subject: Bug#900913: fixed in sonic-visualiser 3.1-1
- From: IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
- Date: Tue, 17 Jul 2018 17:04:25 +0000
- Message-id: <E1ffTOj-000GXH-0I@fasolo.debian.org>
Source: sonic-visualiser Source-Version: 3.1-1 We believe that the bug you reported is fixed in the latest version of sonic-visualiser, 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 900913@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> (supplier of updated sonic-visualiser 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 ftpmaster@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Tue, 17 Jul 2018 17:16:09 +0200 Source: sonic-visualiser Binary: sonic-visualiser Architecture: source Version: 3.1-1 Distribution: unstable Urgency: medium Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> Changed-By: IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Description: sonic-visualiser - viewing and analysing the contents of music audio files Closes: 900913 Changes: sonic-visualiser (3.1-1) unstable; urgency=medium . * New upstream version 3.1 . [ Ondřej Nový ] * d/copyright: Use https protocol in Format field * d/control: Set Vcs-* to salsa.debian.org . [ IOhannes m zmölnig (Debian/GNU) ] * Patch for cross-compilation. Thanks to Helmut Grohne <helmut@subdivi.de> (Closes: #900913) * Switched upstream URLs to https:// * Bumped standards version to 4.1.5 Checksums-Sha1: 324904c68951163a69f498f1d4fb188684090455 2516 sonic-visualiser_3.1-1.dsc 5e1b1205741c12d63ed9a54f8d339ed68e687ea3 5299561 sonic-visualiser_3.1.orig.tar.gz 14a93332bbe5e0f9a18940dd2b4a7def59dd3bc4 18292 sonic-visualiser_3.1-1.debian.tar.xz 15924d46b6127fd5b6a8ecf43848016c99f47bbd 14616 sonic-visualiser_3.1-1_amd64.buildinfo Checksums-Sha256: 0c24c07170418142712b53a696718f43f77e35dc4829c6c4bef9271dd4f70a6f 2516 sonic-visualiser_3.1-1.dsc 9684cb2ae3be7372b0aee44304544d93345f2f9776f3a01def109323af84fdda 5299561 sonic-visualiser_3.1.orig.tar.gz 22258fbc37ec2a067efe8c236abda50613f570ceccf6aa87861aaa33cd4a240f 18292 sonic-visualiser_3.1-1.debian.tar.xz 6808c7abee51e6b73445450d0cecc7da2d3ca8c3acb658b6448aab7680737ac5 14616 sonic-visualiser_3.1-1_amd64.buildinfo Files: e3b290cd6bb7a6bb762483d8986d88a7 2516 sound optional sonic-visualiser_3.1-1.dsc fdbe0bd19aa2485337656bb1ffce7b0c 5299561 sound optional sonic-visualiser_3.1.orig.tar.gz 644bdb24554720ffc2d03c2ec52036a5 18292 sound optional sonic-visualiser_3.1-1.debian.tar.xz 5186da9b7c33ffa42f287c31df2d7040 14616 sound optional sonic-visualiser_3.1-1_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEdAXnRVdICXNIABVttlAZxH96NvgFAltOG1QACgkQtlAZxH96 NvipuQ//Tl43mXdheuVwYeu+5Nz5X7r5SDl4a67CIZI7Z3wxXpJepa6Pv0ZkbCFi Dcghm2bwzsu8UqgHhJruvDPKzVFZZEmRPUYsuLCwUa3MRYNT5Qj0OfMyjstrRciv jcw6HfoZ+5mb7GrbhgEdtVDOTpau3PzS8kXlEc3QTVwHe9kiY0USn7c3WIUXVdBw 3NB+lGu8Zq0Q6N6pN3owVc3NbZnpvcI3g9Lgc7IOhdd9fbwl80XiAAUGwLqHKLni WbDlfIWo7dH162XGw1pSLaGzCiTK/shdSdqJ8HRSYT7X9+cfSTkWix8no193xlH4 6ASpMroQwE3revna6ygThV0XAkQvAP7wD74KVM0EKUZG/wgnc3l3K6IcAfY3XMDN sd/J0D+3aTkwK5Yaz7iP85PTbC9AnuNidkU8Nt+B8+VLuuOa6sBx0yb9SR7tBr5S qVdPSj5hMPXzs1wb5wjWdt95AgU/6q/+FIj3Ui11osxRPpTfDWnAvM7ljoATn0ym 1U51UARV36DfcLp4hS0nmy+W807Zky2GHrOrUqTuDMjaeeincVNtXgRsXqR2kcY2 rr7T81CvF3geOrlxmowaZnQppzIL2Vz/0rkrj4+xMgqnURsWk1N6gpz32s6jdD6h gPvm0DFxdSwYV62G3qLVgRl0r3Q0//ocVskbrl9HB+AhSu/8k+M= =2VyA -----END PGP SIGNATURE-----
--- End Message ---