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 3559415810D for ; Wed, 31 May 2023 08:06:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16EF1E08A8; Wed, 31 May 2023 08:06:31 +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 EAE88E08A8 for ; Wed, 31 May 2023 08:06: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 F217133D3C1 for ; Wed, 31 May 2023 08:06:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 577C0A7F for ; Wed, 31 May 2023 08:06:28 +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: <1685520369.dbe09ca8fe77d867503ceb579ed64198624f5214.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/opensc/ X-VCS-Repository: repo/gentoo X-VCS-Files: 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: dbe09ca8fe77d867503ceb579ed64198624f5214 X-VCS-Branch: master Date: Wed, 31 May 2023 08:06:28 +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: 47841d28-f206-4651-b0f3-1184e766e559 X-Archives-Hash: 4cb15519cc29fe867203065bb56b68d4 commit: dbe09ca8fe77d867503ceb579ed64198624f5214 Author: David Seifert gentoo org> AuthorDate: Wed May 31 08:06:09 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Wed May 31 08:06:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbe09ca8 dev-libs/opensc: sync with 9999 ebuild Signed-off-by: David Seifert gentoo.org> dev-libs/opensc/opensc-0.23.0.ebuild | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/dev-libs/opensc/opensc-0.23.0.ebuild b/dev-libs/opensc/opensc-0.23.0.ebuild index b46faccba7b9..5e6d2db59ebf 100644 --- a/dev-libs/opensc/opensc-0.23.0.ebuild +++ b/dev-libs/opensc/opensc-0.23.0.ebuild @@ -7,11 +7,17 @@ inherit bash-completion-r1 libtool DESCRIPTION="Libraries and applications to access smartcards" HOMEPAGE="https://github.com/OpenSC/OpenSC/wiki" -SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz" + +if [[ ${PV} == *9999 ]]; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/OpenSC/OpenSC.git" +else + SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz" + KEYWORDS="amd64 ppc64 x86" +fi LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ppc64 x86" IUSE="ctapi doc openct notify pace +pcsc-lite readline secure-messaging ssl test zlib" RESTRICT="!test? ( test )" @@ -36,7 +42,12 @@ REQUIRED_USE=" src_prepare() { default - elibtoolize + + if [[ ${PV} == *9999 ]]; then + eautoreconf + else + elibtoolize + fi } src_configure() {