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 BB958138206 for ; Thu, 29 Jul 2021 15:59:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B0CCE088C; Thu, 29 Jul 2021 15:59:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 F220CE088C for ; Thu, 29 Jul 2021 15:59:19 +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 0FB2533BE58 for ; Thu, 29 Jul 2021 15:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B48D25 for ; Thu, 29 Jul 2021 15:59:17 +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: <1627574348.1d3ad4049aed14eda7c68d25760084b5b72a052b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubikey-manager/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/yubikey-manager/yubikey-manager-4.0.5-r1.ebuild app-crypt/yubikey-manager/yubikey-manager-4.0.5.ebuild X-VCS-Directories: app-crypt/yubikey-manager/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1d3ad4049aed14eda7c68d25760084b5b72a052b X-VCS-Branch: master Date: Thu, 29 Jul 2021 15:59:17 +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: 822c2552-c255-40e6-8fe3-ac85468bddc0 X-Archives-Hash: 63a695c770417d0cbe49c4edfcddce0b commit: 1d3ad4049aed14eda7c68d25760084b5b72a052b Author: David Seifert gentoo org> AuthorDate: Thu Jul 29 15:59:08 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jul 29 15:59:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d3ad404 app-crypt/yubikey-manager: make app-crypt/ccid unconditional Bug: https://bugs.gentoo.org/728704 Bug: https://bugs.gentoo.org/779427 Signed-off-by: David Seifert gentoo.org> ...ager-4.0.5.ebuild => yubikey-manager-4.0.5-r1.ebuild} | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app-crypt/yubikey-manager/yubikey-manager-4.0.5.ebuild b/app-crypt/yubikey-manager/yubikey-manager-4.0.5-r1.ebuild similarity index 79% rename from app-crypt/yubikey-manager/yubikey-manager-4.0.5.ebuild rename to app-crypt/yubikey-manager/yubikey-manager-4.0.5-r1.ebuild index b5099ff320d..260ec24a756 100644 --- a/app-crypt/yubikey-manager/yubikey-manager-4.0.5.ebuild +++ b/app-crypt/yubikey-manager/yubikey-manager-4.0.5-r1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) DISTUTILS_USE_SETUPTOOLS=pyproject.toml -inherit distutils-r1 optfeature +inherit distutils-r1 DESCRIPTION="Python library and command line tool for configuring a YubiKey" HOMEPAGE="https://developers.yubico.com/yubikey-manager/" @@ -19,20 +19,18 @@ SLOT="0" KEYWORDS="~amd64 ~x86" RESTRICT="test" # Tests require non-existing package makefun +# app-crypt/ccid required for +# - 'ykman oath' +# - 'ykman openpgp' +# - 'ykman piv' RDEPEND=" + app-crypt/ccid dev-python/click[${PYTHON_USEDEP}] dev-python/cryptography[${PYTHON_USEDEP}] dev-python/fido2:0/0.9[${PYTHON_USEDEP}] - dev-python/pyopenssl[${PYTHON_USEDEP}] dev-python/pyscard[${PYTHON_USEDEP}]" python_install_all() { distutils-r1_python_install_all doman man/ykman.1 } - -pkg_postinst() { - optfeature "'ykman oath'" app-crypt/ccid - optfeature "'ykman openpgp'" app-crypt/ccid - optfeature "'ykman piv'" app-crypt/ccid -}