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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4989B158020 for ; Tue, 29 Nov 2022 15:02:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C669E07B2; Tue, 29 Nov 2022 15:02:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 0D158E07B2 for ; Tue, 29 Nov 2022 15:02:28 +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 F17DE3412F3 for ; Tue, 29 Nov 2022 15:02:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F4163759 for ; Tue, 29 Nov 2022 15:02:16 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1669734086.2df0c1b4b6658d66e1b1b6634ff64b4184156de6.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-crystal/spectator/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-crystal/spectator/spectator-0.11.4.ebuild X-VCS-Directories: dev-crystal/spectator/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 2df0c1b4b6658d66e1b1b6634ff64b4184156de6 X-VCS-Branch: dev Date: Tue, 29 Nov 2022 15:02:16 +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: a8a027c1-512f-4d49-95da-c9a62f69913c X-Archives-Hash: 4b68828ca47d8c88ea5ffbefb90be9fd commit: 2df0c1b4b6658d66e1b1b6634ff64b4184156de6 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Nov 29 15:01:26 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Nov 29 15:01:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2df0c1b4 dev-crystal/spectator: add "test" USE flag Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-crystal/spectator/spectator-0.11.4.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-crystal/spectator/spectator-0.11.4.ebuild b/dev-crystal/spectator/spectator-0.11.4.ebuild index ac6ecd55d..d23903ad6 100644 --- a/dev-crystal/spectator/spectator-0.11.4.ebuild +++ b/dev-crystal/spectator/spectator-0.11.4.ebuild @@ -12,15 +12,17 @@ SRC_URI="https://github.com/icy-arctic-fox/${PN}/archive/refs/tags/v${PV}.tar.gz LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" DOCS=( {ARCHITECTURE,CHANGELOG,CONTRIBUTING,README}.md ) CHECKREQS_MEMORY="3G" pkg_pretend() { - has test "${FEATURES}" && check-reqs_pkg_pretend + use test && check-reqs_pkg_pretend } pkg_setup() { - has test "${FEATURES}" && check-reqs_pkg_setup + use test && check-reqs_pkg_setup }