From 2874c02ee275a309b90c993be83f5af6786aecdd Mon Sep 17 00:00:00 2001 From: Marek Szuba Date: Tue, 21 Feb 2023 23:28:56 +0000 Subject: app-crypt/yubikey-manager: remove dev-python/cryptography version cap in 4.0.8 Seems to have no problems with 39.0.1: - all standard tests pass; - several device-specific PIV tests fail due to newer cryptography not allowing the use of SHA1, which could easily be fixed by patching the offending tests not to use that algorithm - and in any case we do not run any of these in src_test(); - rudimentary run-time testing has shown no issues yet. Going straight to stable due to Bug #893576. Bug: https://bugs.gentoo.org/893522 Signed-off-by: Marek Szuba --- .../yubikey-manager-4.0.8-r1.ebuild | 42 ++++++++++++++++++++++ .../yubikey-manager/yubikey-manager-4.0.8.ebuild | 42 ---------------------- 2 files changed, 42 insertions(+), 42 deletions(-) create mode 100644 app-crypt/yubikey-manager/yubikey-manager-4.0.8-r1.ebuild delete mode 100644 app-crypt/yubikey-manager/yubikey-manager-4.0.8.ebuild (limited to 'app-crypt') diff --git a/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r1.ebuild b/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r1.ebuild new file mode 100644 index 000000000000..c1c671051c91 --- /dev/null +++ b/app-crypt/yubikey-manager/yubikey-manager-4.0.8-r1.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..10} ) +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 +} diff --git a/app-crypt/yubikey-manager/yubikey-manager-4.0.8.ebuild b/app-crypt/yubikey-manager/yubikey-manager-4.0.8.ebuild deleted file mode 100644 index a684d6c63d95..000000000000 --- a/app-crypt/yubikey-manager/yubikey-manager-4.0.8.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} ) -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/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 -} -- cgit v1.2.3-65-gdbad