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 10F48138334 for ; Wed, 27 Nov 2019 14:43:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31118E08DC; Wed, 27 Nov 2019 14:43:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 09478E08DC for ; Wed, 27 Nov 2019 14:43:07 +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 DF99334D4C3 for ; Wed, 27 Nov 2019 14:43:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E7B38B6 for ; Wed, 27 Nov 2019 14:43:04 +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: <1574865768.d14bfc5f1c36538feb11f73962b55771fe7a7e82.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vigra/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vigra/vigra-1.11.1-r3.ebuild media-libs/vigra/vigra-9999.ebuild X-VCS-Directories: media-libs/vigra/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d14bfc5f1c36538feb11f73962b55771fe7a7e82 X-VCS-Branch: master Date: Wed, 27 Nov 2019 14:43:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5913589-621d-4ef1-ba48-0060b304d614 X-Archives-Hash: 7ac2b4833cce1341afbf4b4d8edad83b commit: d14bfc5f1c36538feb11f73962b55771fe7a7e82 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 27 14:41:48 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 27 14:42:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d14bfc5f media-libs/vigra: Disable more tests Bug: https://bugs.gentoo.org/701328 Package-Manager: Portage-2.3.80, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/vigra/vigra-1.11.1-r3.ebuild | 6 +++++- media-libs/vigra/vigra-9999.ebuild | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/media-libs/vigra/vigra-1.11.1-r3.ebuild b/media-libs/vigra/vigra-1.11.1-r3.ebuild index f2b096eaf51..d38b643763a 100644 --- a/media-libs/vigra/vigra-1.11.1-r3.ebuild +++ b/media-libs/vigra/vigra-1.11.1-r3.ebuild @@ -93,7 +93,11 @@ src_prepare() { sed -i -e '/env/s:python:python3:' config/vigra-config.in || die use doc || cmake_comment_add_subdirectory docsrc - use test || cmake_comment_add_subdirectory test + + if ! use test; then + cmake_comment_add_subdirectory test + sed -e "/ADD_SUBDIRECTORY.*test/s/^/#DONT /" -i vigranumpy/CMakeLists.txt || die + fi } src_configure() { diff --git a/media-libs/vigra/vigra-9999.ebuild b/media-libs/vigra/vigra-9999.ebuild index c1094b89265..289fe049252 100644 --- a/media-libs/vigra/vigra-9999.ebuild +++ b/media-libs/vigra/vigra-9999.ebuild @@ -99,7 +99,10 @@ src_prepare() { # Don't use python_fix_shebang because we can't put this behind USE="python" sed -i -e '/env/s:python:python3:' config/vigra-config.in || die - use test || cmake_comment_add_subdirectory test + if ! use test; then + cmake_comment_add_subdirectory test + sed -e "/ADD_SUBDIRECTORY.*test/s/^/#DONT /" -i vigranumpy/CMakeLists.txt || die + fi } src_configure() {