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 7486E158003 for ; Wed, 1 Feb 2023 17:59:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A310E0BDF; Wed, 1 Feb 2023 17:59:50 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F76CE0BDF for ; Wed, 1 Feb 2023 17:59:50 +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 4039F335C0D for ; Wed, 1 Feb 2023 17:59:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 148A375 for ; Wed, 1 Feb 2023 17:59:47 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1675274378.373008ffe37b405350971f5e5cbb862638712edf.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/opensc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/opensc/metadata.xml dev-libs/opensc/opensc-0.23.0.ebuild X-VCS-Directories: dev-libs/opensc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 373008ffe37b405350971f5e5cbb862638712edf X-VCS-Branch: master Date: Wed, 1 Feb 2023 17:59:47 +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: 64071311-e2ea-47eb-8ced-309209a6d2d0 X-Archives-Hash: 8e75b4e77fdedb10e5fb6fef734f00eb commit: 373008ffe37b405350971f5e5cbb862638712edf Author: David Seifert gentoo org> AuthorDate: Wed Feb 1 17:59:38 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Feb 1 17:59:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373008ff dev-libs/opensc: Rename 'openpace' use flag to 'pace' Signed-off-by: David Seifert gentoo.org> dev-libs/opensc/metadata.xml | 2 +- dev-libs/opensc/opensc-0.23.0.ebuild | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/opensc/metadata.xml b/dev-libs/opensc/metadata.xml index 58a0aa27c2a1..67d2c026ef02 100644 --- a/dev-libs/opensc/metadata.xml +++ b/dev-libs/opensc/metadata.xml @@ -19,7 +19,7 @@ Use CT-API for accessing Smartcard hardware Enable notifications Use dev-libs/openct (and CT-API) for accessing Smartcard hardware - Use dev-libs/openpace for EAC version 2 support + Use dev-libs/openpace for EAC version 2 support Use sys-apps/pcsc-lite (and PC/SC API) for accessing Smartcard hardware Enable secure messaging diff --git a/dev-libs/opensc/opensc-0.23.0.ebuild b/dev-libs/opensc/opensc-0.23.0.ebuild index 1a356b477973..663f56e2d091 100644 --- a/dev-libs/opensc/opensc-0.23.0.ebuild +++ b/dev-libs/opensc/opensc-0.23.0.ebuild @@ -12,14 +12,14 @@ SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="ctapi doc openct openpace notify +pcsc-lite readline secure-messaging ssl test zlib" +IUSE="ctapi doc openct notify pace +pcsc-lite readline secure-messaging ssl test zlib" RESTRICT="!test? ( test )" RDEPEND="zlib? ( sys-libs/zlib ) readline? ( sys-libs/readline:0= ) ssl? ( dev-libs/openssl:0= ) openct? ( >=dev-libs/openct-0.5.0 ) - openpace? ( dev-libs/openpace:= ) + pace? ( dev-libs/openpace:= ) pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 ) notify? ( dev-libs/glib:2 )" DEPEND="${RDEPEND} @@ -49,9 +49,9 @@ src_configure() { --enable-man \ $(use_enable ctapi) \ $(use_enable doc) \ - $(use_enable notify ) \ + $(use_enable notify) \ $(use_enable openct) \ - $(use_enable openpace ) \ + $(use_enable pace openpace) \ $(use_enable pcsc-lite pcsc) \ $(use_enable readline) \ $(use_enable secure-messaging sm) \