diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-02-26 23:23:38 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-02-26 23:32:28 +0000 |
commit | cb6c6f7fea9a3b180630ad34c31acff87fda593a (patch) | |
tree | 0eb4c8d91bb5c14580f6384f66414200111dedcc /sys-auth | |
parent | dev-python/fido2: EAPI bump, enable tests, py3.11 in 0.9.3 (diff) | |
download | gentoo-cb6c6f7fea9a3b180630ad34c31acff87fda593a.tar.gz gentoo-cb6c6f7fea9a3b180630ad34c31acff87fda593a.tar.bz2 gentoo-cb6c6f7fea9a3b180630ad34c31acff87fda593a.zip |
sys-auth/solo1: enable py3.11
Turns out it wasn't necessary for upstream to start supporting fido2-1.0
after all.
Closes: https://bugs.gentoo.org/897268
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/solo1/solo1-0.1.1-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-auth/solo1/solo1-0.1.1-r1.ebuild b/sys-auth/solo1/solo1-0.1.1-r1.ebuild new file mode 100644 index 000000000000..bd6a6de61f44 --- /dev/null +++ b/sys-auth/solo1/solo1-0.1.1-r1.ebuild @@ -0,0 +1,39 @@ +# 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=flit + +inherit distutils-r1 + +DESCRIPTION="CLI and Python library for SoloKeys Solo 1" +HOMEPAGE="https://github.com/solokeys/solo1-cli" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0 MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv" + +RDEPEND=">=dev-python/click-7.1.0[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/ecdsa[${PYTHON_USEDEP}] + dev-python/fido2:0/0.9[${PYTHON_USEDEP}] + dev-python/intelhex[${PYTHON_USEDEP}] + dev-python/pyserial[${PYTHON_USEDEP}] + dev-python/pyusb[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}]" + +pkg_postinst() { + if [[ -n ${REPLACING_VERSIONS} ]]; then + local ver + for ver in ${REPLACING_VERSIONS}; do + if ver_test ${ver} -lt 0.1.1; then + ewarn "Note that since version 0.1.1 the CLI executable is called '${PN}' rather than 'solo'" + ewarn "The old name can still be used for now but is deprecated" + break + fi + done + fi +} |