From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 931271580EB for ; Wed, 21 May 2025 18:04:45 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7D7BE3430E9 for ; Wed, 21 May 2025 18:04:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 76E791103DE; Wed, 21 May 2025 18:04:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6D2CD1103DE for ; Wed, 21 May 2025 18:04:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BE3B343057 for ; Wed, 21 May 2025 18:04:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8338519E5 for ; Wed, 21 May 2025 18:04:42 +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: <1747850660.dc035533dec3a10c2fb03985135b096fde6742a8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsidplayfp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild X-VCS-Directories: media-libs/libsidplayfp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dc035533dec3a10c2fb03985135b096fde6742a8 X-VCS-Branch: master Date: Wed, 21 May 2025 18:04:42 +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: a922b699-59c2-4bb4-b877-5bc5a8386483 X-Archives-Hash: 4a699bd6498e430b8b1272a2f5f7aa61 commit: dc035533dec3a10c2fb03985135b096fde6742a8 Author: Sam James gentoo org> AuthorDate: Wed May 21 17:46:52 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 21 18:04:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc035533 media-libs/libsidplayfp: wire up tests Signed-off-by: Sam James gentoo.org> media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild b/media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild index 4eefc5282af5..c93d38355e5d 100644 --- a/media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild +++ b/media-libs/libsidplayfp/libsidplayfp-2.11.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -10,7 +10,10 @@ SRC_URI="https://downloads.sourceforge.net/sidplay-residfp/${PN}/$(ver_cut 1-2)/ LICENSE="GPL-2" SLOT="0/6" KEYWORDS="amd64 ~hppa ~riscv x86" -IUSE="static-libs" +IUSE="static-libs test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-libs/unittest++ )" src_prepare() { default @@ -20,7 +23,8 @@ src_prepare() { src_configure() { econf \ - $(use_enable static-libs static) + $(use_enable static-libs static) \ + $(use_enable test tests) } src_install() {