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 61DB815800A for ; Sun, 6 Aug 2023 09:11:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F6362BC013; Sun, 6 Aug 2023 09:11:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 35C0E2BC013 for ; Sun, 6 Aug 2023 09:11:17 +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 5A3763407AF for ; Sun, 6 Aug 2023 09:11:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A850FE8F for ; Sun, 6 Aug 2023 09:11:14 +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: <1691313065.51f82138b50b4983b87e69e651dc11ce8267b847.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/scute/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/scute/scute-1.7.0.ebuild X-VCS-Directories: app-crypt/scute/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 51f82138b50b4983b87e69e651dc11ce8267b847 X-VCS-Branch: master Date: Sun, 6 Aug 2023 09:11:14 +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: 907c5e39-9925-4306-9dbd-5c1fc17afcd2 X-Archives-Hash: aeda51ee6ec2c3a470aa6fee1ebd4e31 commit: 51f82138b50b4983b87e69e651dc11ce8267b847 Author: David Seifert gentoo org> AuthorDate: Sun Aug 6 09:11:05 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 6 09:11:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f82138 app-crypt/scute: drop 1.7.0 Signed-off-by: David Seifert gentoo.org> app-crypt/scute/scute-1.7.0.ebuild | 54 -------------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-crypt/scute/scute-1.7.0.ebuild b/app-crypt/scute/scute-1.7.0.ebuild deleted file mode 100644 index 6aee8c85a67a..000000000000 --- a/app-crypt/scute/scute-1.7.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A PKCS #11 module for OpenPGP smartcards" -HOMEPAGE="http://www.scute.org/" -SRC_URI=" - mirror://gnupg/scute/${P}.tar.bz2 - https://dev.gentoo.org/~soap/distfiles/${P}-manual-eps-images.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -# configure script try to check the version of gpgsm and gpg-agent when -# non-crosscompiling so we need to have them as build-time dependency as -# well as runtime. Require a version of gnupg that is patched to have -# gpgsm-gencert.sh working (as that's what the documentation describe). -BDEPEND=" - >=app-crypt/pinentry-0.7.0 - >=app-crypt/gnupg-2.0.17-r1[smartcard]" -DEPEND=" - >=dev-libs/libgpg-error-1.4 - >=dev-libs/libassuan-2.0.0" -RDEPEND=" - ${DEPEND} - ${BDEPEND}" -BDEPEND+=" - sys-apps/texinfo" - -PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) - -src_unpack() { - default - - # have to use pregenerated EPS files required for the texinfo documentation, - # due to bug 664236 preventing even converting *to* eps. - mv scute-eps/*.eps "${S}"/doc/ || die -} - -src_configure() { - econf \ - --libdir="${EPREFIX}"/usr/$(get_libdir)/pkcs11 \ - --with-libgpg-error-prefix="${ESYSROOT}"/usr \ - --with-libassuan-prefix="${ESYSROOT}"/usr -} - -src_install() { - default - - # only building plugins - find "${ED}" -name '*.la' -delete || die -}