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 4717813835A for ; Thu, 24 Jun 2021 09:07:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3AE63E0874; Thu, 24 Jun 2021 09:07:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 0748DE0874 for ; Thu, 24 Jun 2021 09:07:10 +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 D157B341F17 for ; Thu, 24 Jun 2021 09:07:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F2017A7 for ; Thu, 24 Jun 2021 09:07:08 +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: <1624525591.2b8488497cc29da9301c84812f504d813f816bff.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/zxing-cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild X-VCS-Directories: media-libs/zxing-cpp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2b8488497cc29da9301c84812f504d813f816bff X-VCS-Branch: master Date: Thu, 24 Jun 2021 09:07:08 +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: cbe6ad29-c261-49b3-912f-7d57a5b24864 X-Archives-Hash: 2303b04c56f3eaa87b9f34dae01a2844 commit: 2b8488497cc29da9301c84812f504d813f816bff Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jun 24 09:06:31 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jun 24 09:06:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b848849 media-libs/zxing-cpp: Drop tests due to upstream use of FetchContent Upstream commits: fad045ff2e53e2a69f7b091cfe77e8bea31222b6 c0c3e0b306d78efae9f0af02e3cc20126ff8ebe4 Closes: https://bugs.gentoo.org/793173 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild b/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild index 8f32a4b24e1..c65c08e82a3 100644 --- a/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild +++ b/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild @@ -12,14 +12,13 @@ SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="test" - -RESTRICT="!test? ( test )" +IUSE="" src_configure() { local mycmakeargs=( -DBUILD_EXAMPLES=OFF # nothing is installed - -DBUILD_BLACKBOX_TESTS=$(usex test) + -DBUILD_BLACKBOX_TESTS=OFF # FIXME: FetchContent.cmake module usage + -DBUILD_UNIT_TESTS=OFF # for both tests options. no thanks. bug #793173 ) cmake_src_configure }