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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 46094139345 for ; Thu, 15 Jul 2021 19:02:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4617AE0ACF; Thu, 15 Jul 2021 19:02:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DE5EE0ACF for ; Thu, 15 Jul 2021 19:02:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5806335C9A for ; Thu, 15 Jul 2021 19:02:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29F747B3 for ; Thu, 15 Jul 2021 19:02:42 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626374743.ac488d958da13f70ab5a947fbc238ccd5a2a127a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gnupg-pkcs11-scd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/gnupg-pkcs11-scd/gnupg-pkcs11-scd-0.9.2.ebuild X-VCS-Directories: app-crypt/gnupg-pkcs11-scd/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: ac488d958da13f70ab5a947fbc238ccd5a2a127a X-VCS-Branch: master Date: Thu, 15 Jul 2021 19:02:42 +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: 0968a9cd-d045-49f2-900a-f83ec8a046ce X-Archives-Hash: f82ab1a2d67bb2ab90ce83571dbddc74 commit: ac488d958da13f70ab5a947fbc238ccd5a2a127a Author: Conrad Kostecki gentoo org> AuthorDate: Thu Jul 15 18:45:43 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Jul 15 18:45:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac488d95 app-crypt/gnupg-pkcs11-scd: drop old version Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> .../gnupg-pkcs11-scd/gnupg-pkcs11-scd-0.9.2.ebuild | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/app-crypt/gnupg-pkcs11-scd/gnupg-pkcs11-scd-0.9.2.ebuild b/app-crypt/gnupg-pkcs11-scd/gnupg-pkcs11-scd-0.9.2.ebuild deleted file mode 100644 index 5c5f9dd439b..00000000000 --- a/app-crypt/gnupg-pkcs11-scd/gnupg-pkcs11-scd-0.9.2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit user - -DESCRIPTION="PKCS#11 support for GnuPG" -HOMEPAGE="http://gnupg-pkcs11.sourceforge.net" -SRC_URI="https://github.com/alonbl/${PN}/releases/download/${P}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="proxy" - -RDEPEND=" - dev-libs/openssl:0= - dev-libs/libassuan:= - >=dev-libs/libgcrypt-1.2.2:= - >=dev-libs/libgpg-error-1.3:= - >=dev-libs/pkcs11-helper-1.02:=" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -pkg_setup() { - if use proxy; then - enewgroup gnupg-pkcs11 - enewgroup gnupg-pkcs11-scd-proxy - enewuser gnupg-pkcs11-scd-proxy -1 -1 / gnupg-pkcs11-scd-proxy,gnupg-pkcs11 - fi -} - -src_configure() { - econf \ - $(use_enable proxy) \ - --with-proxy-socket=/run/gnupg-pkcs11-scd-proxy/cmd -} - -src_install() { - default - if use proxy; then - newinitd "${FILESDIR}/gnupg-pkcs11-scd-proxy.initd" gnupg-pkcs11-scd-proxy - newconfd "${FILESDIR}/gnupg-pkcs11-scd-proxy.confd" gnupg-pkcs11-scd-proxy - fi -}