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 3A08B1584AD for ; Thu, 01 May 2025 03:47:54 +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 1E434342FEA for ; Thu, 01 May 2025 03:47:54 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0C1CA110328; Thu, 01 May 2025 03:47:53 +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 0448C110328 for ; Thu, 01 May 2025 03:47:52 +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 AA947342FDE for ; Thu, 01 May 2025 03:47:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 424FF1E87 for ; Thu, 01 May 2025 03:47:51 +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: <1746071202.bba743d4990ed38f9b2fec7f9618ca62725e62f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pcsc-tools/pcsc-tools-1.7.2-r1.ebuild sys-apps/pcsc-tools/pcsc-tools-1.7.2.ebuild X-VCS-Directories: sys-apps/pcsc-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bba743d4990ed38f9b2fec7f9618ca62725e62f9 X-VCS-Branch: master Date: Thu, 01 May 2025 03:47:51 +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: 1419ac7b-b6ca-4ad6-90a1-b16ee9e253cc X-Archives-Hash: 8ec57f95032c078bdc23fde52862ca56 commit: bba743d4990ed38f9b2fec7f9618ca62725e62f9 Author: Sam James gentoo org> AuthorDate: Thu May 1 03:46:42 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 1 03:46:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba743d4 sys-apps/pcsc-tools: drop USE=nls, fix Perl deps As I remarked in 9ab2ac6e2ef72ff3a8d9a7130dd297b2511b28df, we really need dev-perl/libintl-perl for {g,}scriptor. USe=nls goes away w/ the meson port in 1.7.3 anyway, so let's drop it here while fixing the Perl dependency. Bug: https://bugs.gentoo.org/927630 Signed-off-by: Sam James gentoo.org> .../{pcsc-tools-1.7.2.ebuild => pcsc-tools-1.7.2-r1.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.7.2.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.7.2-r1.ebuild similarity index 93% rename from sys-apps/pcsc-tools/pcsc-tools-1.7.2.ebuild rename to sys-apps/pcsc-tools/pcsc-tools-1.7.2-r1.ebuild index ea14cd2fedb9..91e78e95b047 100644 --- a/sys-apps/pcsc-tools/pcsc-tools-1.7.2.ebuild +++ b/sys-apps/pcsc-tools/pcsc-tools-1.7.2-r1.ebuild @@ -12,21 +12,22 @@ SRC_URI="https://pcsc-tools.apdu.fr/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86" -IUSE="gui network-cron nls" +IUSE="gui network-cron" DEPEND=">=sys-apps/pcsc-lite-1.4.14" RDEPEND=" ${DEPEND} + dev-perl/libintl-perl dev-perl/pcsc-perl gui? ( dev-perl/Gtk3 ) " BDEPEND=" virtual/pkgconfig - nls? ( sys-devel/gettext ) + sys-devel/gettext " src_configure() { - econf $(use_enable nls gettext) + econf --enable-gettext } src_compile() {