diff options
author | David Seifert <soap@gentoo.org> | 2022-08-07 17:39:11 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-08-07 17:39:11 +0200 |
commit | 5fa5d7953ab1b3f7ebde77667fd99a33412c6fc0 (patch) | |
tree | 05b31208bee0d9837b97678de07d5366c5da090d /app-crypt | |
parent | dev-python/pyotherside: enable py3.11 (diff) | |
download | gentoo-5fa5d7953ab1b3f7ebde77667fd99a33412c6fc0.tar.gz gentoo-5fa5d7953ab1b3f7ebde77667fd99a33412c6fc0.tar.bz2 gentoo-5fa5d7953ab1b3f7ebde77667fd99a33412c6fc0.zip |
app-crypt/yubikey-manager: add 4.0.9
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/yubikey-manager/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/yubikey-manager/yubikey-manager-4.0.9.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app-crypt/yubikey-manager/Manifest b/app-crypt/yubikey-manager/Manifest index eb25dcd6f82b..ed88c94f3c4b 100644 --- a/app-crypt/yubikey-manager/Manifest +++ b/app-crypt/yubikey-manager/Manifest @@ -1 +1,2 @@ DIST yubikey-manager-4.0.8.tar.gz 147076 BLAKE2B efdefb15c3939bfb2171766aec195fb776668894d4439565840587d14387999e052aee6eb225b9332662f1ebdbf1db24fceb606393e23d591ff61b91c1ee96f5 SHA512 87352bbb133eead48d1588df2db5420687278a9f76ceb283a53af8eab3d29e30c86e01a588a6da2884e6dac6af192ad355a28745f2f8505ef6cd0e96dea3e9c7 +DIST yubikey-manager-4.0.9.tar.gz 145952 BLAKE2B e7a5488be1163e3f3f82c049b7c068c4be82debfccab1d6a60c1f9bdebcab4df94f257082e9c83d6bb0ea037bdab4b47b924d27890537d066205e2fbc28d2066 SHA512 bbffbdf9437d0f2de0b7713fe577a342c8da95e9d9512cb5118374b63637dbde6ee95e516dbb47bbea3af5b2e5edd495882c7e4adcbec1fd3eb750471a50add5 diff --git a/app-crypt/yubikey-manager/yubikey-manager-4.0.9.ebuild b/app-crypt/yubikey-manager/yubikey-manager-4.0.9.ebuild new file mode 100644 index 000000000000..71a5219bfd87 --- /dev/null +++ b/app-crypt/yubikey-manager/yubikey-manager-4.0.9.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..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/" +SRC_URI="https://github.com/Yubico/yubikey-manager/releases/download/${PV}/${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-39[${PYTHON_USEDEP}] + dev-python/fido2:0/1.0[${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 +} |