From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87722138335 for ; Mon, 1 Oct 2018 20:08:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A83EE0A52; Mon, 1 Oct 2018 20:08:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6916AE0A52 for ; Mon, 1 Oct 2018 20:08:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3D57335D07 for ; Mon, 1 Oct 2018 20:08:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46DF342E for ; Mon, 1 Oct 2018 20:08:35 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1538424499.4f613c9fe28398d60b4329e2e9e64dd5316579fd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aubio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/aubio/aubio-0.4.7.ebuild X-VCS-Directories: media-libs/aubio/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4f613c9fe28398d60b4329e2e9e64dd5316579fd X-VCS-Branch: master Date: Mon, 1 Oct 2018 20:08:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 786f6578-4ae3-4d0f-b7e3-1d8c58c08b29 X-Archives-Hash: 25877be659893bfb94ea4522e290eb50 commit: 4f613c9fe28398d60b4329e2e9e64dd5316579fd Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 1 20:07:08 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 1 20:08:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f613c9f media-libs/aubio: Disable tests for real Tests were always built and run regardless. At least disable them if not requested. Bug: https://bugs.gentoo.org/651956 Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 media-libs/aubio/aubio-0.4.7.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/media-libs/aubio/aubio-0.4.7.ebuild b/media-libs/aubio/aubio-0.4.7.ebuild index a7d7db9a590..c7b767af9eb 100644 --- a/media-libs/aubio/aubio-0.4.7.ebuild +++ b/media-libs/aubio/aubio-0.4.7.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://aubio.org/pub/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0/5" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc double-precision examples ffmpeg fftw jack libav libsamplerate sndfile python" +IUSE="doc double-precision examples ffmpeg fftw jack libav libsamplerate sndfile python test" RDEPEND=" ffmpeg? ( @@ -46,7 +46,11 @@ PYTHON_SRC_DIR="${S}" src_prepare() { default - sed -i -e "s:doxygen:doxygen_disabled:" wscript || die + sed -e "s:doxygen:doxygen_disabled:" -i wscript || die + + if ! use test; then + sed -e "/bld.*tests/d" -i wscript || die + fi } src_configure() {