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 2254D1382C5 for ; Mon, 4 Jan 2021 17:00:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D908E0A7D; Mon, 4 Jan 2021 16:59:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 45566E0A7D for ; Mon, 4 Jan 2021 16:59:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7B1FC3411EF for ; Mon, 4 Jan 2021 16:59:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C89E492 for ; Mon, 4 Jan 2021 16:59:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609779000.6464a885784f5e794c1d609f1e44423ea72c538d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/codec2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/codec2/codec2-0.9.2-r1.ebuild X-VCS-Directories: media-libs/codec2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6464a885784f5e794c1d609f1e44423ea72c538d X-VCS-Branch: master Date: Mon, 4 Jan 2021 16:59:54 +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: ef2aca48-2102-4fae-9b37-57ef76af1dbe X-Archives-Hash: fbb0ed3b646ded5819f6b981f7c3ba45 commit: 6464a885784f5e794c1d609f1e44423ea72c538d Author: Sam James gentoo org> AuthorDate: Mon Jan 4 16:49:17 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 4 16:50:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6464a885 media-libs/codec2: add tests (even if we don't run them yet) Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/codec2/codec2-0.9.2-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-libs/codec2/codec2-0.9.2-r1.ebuild b/media-libs/codec2/codec2-0.9.2-r1.ebuild index ca1c0954f6c..d79f4ea85d0 100644 --- a/media-libs/codec2/codec2-0.9.2-r1.ebuild +++ b/media-libs/codec2/codec2-0.9.2-r1.ebuild @@ -13,11 +13,13 @@ SRC_URI="https://github.com/drowe67/codec2/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0/${PV}" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="examples" +IUSE="examples test" +# Not yet passing, but infrastructure added to run +RESTRICT="test" multilib_src_configure() { local mycmakeargs=( - -DUNITTEST=OFF + -DUNITTEST=$(usex test) -DINSTALL_EXAMPLES=$(usex examples) ) cmake_src_configure