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 6BF3D158030 for ; Mon, 27 Feb 2023 12:45:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AAFD5E07D1; Mon, 27 Feb 2023 12:45:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3704E07D3 for ; Mon, 27 Feb 2023 12:45:23 +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 D870B340E6B for ; Mon, 27 Feb 2023 12:45:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A856E8C7 for ; Mon, 27 Feb 2023 12:45:20 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1677501904.356e8a5eca191508cf4983f89c704d49e65918d5.marecki@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.8-r2.ebuild X-VCS-Directories: app-crypt/yubikey-manager/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 356e8a5eca191508cf4983f89c704d49e65918d5 X-VCS-Branch: master Date: Mon, 27 Feb 2023 12:45:20 +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: 357a4ddb-b478-4dc8-809c-f351560d29da X-Archives-Hash: 4d7a59f14142f5edbe7562e34ef03d63 commit: 356e8a5eca191508cf4983f89c704d49e65918d5 Author: Marek Szuba gentoo org> AuthorDate: Mon Feb 27 12:36:54 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Feb 27 12:45:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=356e8a5e app-crypt/yubikey-manager: enable py3.11 Signed-off-by: Marek Szuba gentoo.org> .../yubikey-manager-4.0.8-r2.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r2.ebuild b/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r2.ebuild new file mode 100644 index 000000000000..084f83c06212 --- /dev/null +++ b/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=poetry + +inherit distutils-r1 + +DESCRIPTION="Python library and command line tool for configuring a YubiKey" +HOMEPAGE="https://developers.yubico.com/yubikey-manager/" +# Per https://github.com/Yubico/yubikey-manager/issues/217, Yubico is +# the official source for tarballs, not Github +SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +IUSE="ssl" + +# 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/pyscard[${PYTHON_USEDEP}] + ssl? ( >=dev-python/pyopenssl-0.15.1[${PYTHON_USEDEP}] )" +BDEPEND="test? ( + dev-python/makefun[${PYTHON_USEDEP}] +)" + +distutils_enable_tests pytest + +python_install_all() { + distutils-r1_python_install_all + doman man/ykman.1 +}