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 DB80715AD33 for ; Tue, 9 May 2023 17:46:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F5F9E07EC; Tue, 9 May 2023 17:46:35 +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 pigeon.gentoo.org (Postfix) with ESMTPS id DB656E07EA for ; Tue, 9 May 2023 17:46:34 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E585833BE34 for ; Tue, 9 May 2023 17:46:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DECAA67 for ; Tue, 9 May 2023 17:46:32 +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: <1683654380.d45ba3abc85a2b1120d9c4c1f948d063e6a4f0c8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/pkcs11-helper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild X-VCS-Directories: dev-libs/pkcs11-helper/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d45ba3abc85a2b1120d9c4c1f948d063e6a4f0c8 X-VCS-Branch: master Date: Tue, 9 May 2023 17:46:32 +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: 31a822ce-d41b-474e-a262-6b9e57477a14 X-Archives-Hash: 122008a1839ecfb4668632fa9aa6d372 commit: d45ba3abc85a2b1120d9c4c1f948d063e6a4f0c8 Author: Sam James gentoo org> AuthorDate: Tue May 9 16:37:29 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 9 17:46:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d45ba3ab dev-libs/pkcs11-helper: wire up (restricted) tests Signed-off-by: Sam James gentoo.org> dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild b/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild index fa7ca082dda3..fa9b65fb42cf 100644 --- a/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild +++ b/dev-libs/pkcs11-helper/pkcs11-helper-1.29.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -10,7 +10,9 @@ SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.bz2" LICENSE="|| ( BSD GPL-2 )" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" -IUSE="doc gnutls nss" +IUSE="doc gnutls nss test" +# Fails trying to load /usr/lib/pkcs11/provider.so? +RESTRICT="!test? ( test ) test" RDEPEND=">=dev-libs/openssl-0.9.7:= gnutls? ( >=net-libs/gnutls-1.4.4:= ) @@ -29,7 +31,8 @@ src_configure() { --disable-crypto-engine-mbedtls \ $(use_enable doc) \ $(use_enable gnutls crypto-engine-gnutls) \ - $(use_enable nss crypto-engine-nss) + $(use_enable nss crypto-engine-nss) \ + $(use_enable test tests) } src_install() {