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 6E1D415800A for ; Sat, 29 Jul 2023 03:46:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C26E0ACF; Sat, 29 Jul 2023 03:46:30 +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 9C247E0ACF for ; Sat, 29 Jul 2023 03:46:30 +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 A96AD33BED4 for ; Sat, 29 Jul 2023 03:46:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D273DE77 for ; Sat, 29 Jul 2023 03:46:27 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1690602383.3586b3e6796a5c2121e83960c70d66b84fcfdf6a.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/swtpm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/swtpm/swtpm-0.8.0-r1.ebuild app-crypt/swtpm/swtpm-0.8.0-r2.ebuild X-VCS-Directories: app-crypt/swtpm/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 3586b3e6796a5c2121e83960c70d66b84fcfdf6a X-VCS-Branch: master Date: Sat, 29 Jul 2023 03:46:27 +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: 029e06f0-3ae1-4418-86b6-b06405dd89a9 X-Archives-Hash: 3695a3551a870b9027218add800d957e commit: 3586b3e6796a5c2121e83960c70d66b84fcfdf6a Author: Matthias Maier gentoo org> AuthorDate: Sat Jul 29 03:43:08 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Sat Jul 29 03:46:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3586b3e6 app-crypt/swtpm: remove erroneous USE=openssl, remove USE=gnutls - openssl is an unconditional dependency - gnutls was only ever used for running some tests Let us remove all of the stray use flag choices and depend on openssl unconditionally. Thanks to Matt Turner for pointing this out. Bug: https://bugs.gentoo.org/909754 Signed-off-by: Matthias Maier gentoo.org> .../swtpm/{swtpm-0.8.0-r1.ebuild => swtpm-0.8.0-r2.ebuild} | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/app-crypt/swtpm/swtpm-0.8.0-r1.ebuild b/app-crypt/swtpm/swtpm-0.8.0-r2.ebuild similarity index 85% rename from app-crypt/swtpm/swtpm-0.8.0-r1.ebuild rename to app-crypt/swtpm/swtpm-0.8.0-r2.ebuild index dc312dd8bd52..4f2d43053f44 100644 --- a/app-crypt/swtpm/swtpm-0.8.0-r1.ebuild +++ b/app-crypt/swtpm/swtpm-0.8.0-r2.ebuild @@ -14,22 +14,15 @@ SRC_URI="https://github.com/stefanberger/swtpm/archive/v${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" -IUSE="fuse gnutls seccomp +openssl test" +IUSE="fuse seccomp test" RESTRICT="!test? ( test )" RDEPEND="fuse? ( dev-libs/glib:2 sys-fs/fuse:0 ) - gnutls? ( - dev-libs/libtasn1:= - >=net-libs/gnutls-3.4.0:=[tools,pkcs11] - ) - openssl? ( - dev-libs/libtasn1:= - dev-libs/openssl - ) seccomp? ( sys-libs/libseccomp ) + dev-libs/libtasn1:= acct-group/tss acct-user/tss dev-libs/openssl:0= @@ -60,8 +53,6 @@ src_configure() { --with-openssl \ --without-selinux \ $(use_with fuse cuse) \ - $(use_with gnutls) \ - $(use_with openssl) \ $(use_with seccomp) \ $(use_enable test) }