app-crypt/pynitrokey: add 0.12.1

Signed-off-by: Jernej Jakob <jernej.jakob@gmail.com>
This commit is contained in:
Jernej Jakob
2026-05-08 00:57:56 +02:00
parent 30835f75aa
commit 78ce45107f
2 changed files with 53 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pynitrokey-0.12.0.gh.tar.gz 222156 BLAKE2B 293706c0c063343ddba14b1767ed547914465089a2e1a35a7ebf57dee2b5b5df7a0e437a5f48971587d1f468465bbba6e015bcee0a2c6a060ad7db969948ddff SHA512 57e235b6ee6532be76f566ad06a1795663134dfeb9260a7f8f58645d712c0ff435b13d9fc68d5724e2bd8cd2e4e2d4a3df651964cebf18623cd097bcfa448397
DIST pynitrokey-0.12.1.gh.tar.gz 223235 BLAKE2B ae58a9d6b82a748809ba85a99445f1f2d54e459ab4ce2953bf29d1647d1d4890902d646c24f62ea09a952d7b99c0ad2cd68f6974184e87f8ec6a67f6c3579311 SHA512 458a2b3a0210eb27c057d57ba117b0feaf515b6c042d44b980bda91afe2e0da91795c51b2b9117c30beb85c367cd26cabbdcc92c75ff9daa30da7b6fef243526

View File

@@ -0,0 +1,52 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{12..13} )
inherit distutils-r1
DESCRIPTION="A command line interface for the Nitrokey FIDO2, Start, 3 and NetHSM"
HOMEPAGE="https://github.com/Nitrokey/pynitrokey"
SRC_URI="https://github.com/Nitrokey/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64"
IUSE="piv"
RDEPEND="
$(python_gen_cond_dep '
>=dev-python/cffi-1.15[${PYTHON_USEDEP}]
<dev-python/cffi-3[${PYTHON_USEDEP}]
>=dev-python/click-8.2[${PYTHON_USEDEP}]
<dev-python/click-9[${PYTHON_USEDEP}]
>=dev-python/cryptography-43[${PYTHON_USEDEP}]
<dev-python/cryptography-49[${PYTHON_USEDEP}]
=dev-python/fido2-2*[${PYTHON_USEDEP}]
>=dev-python/hidapi-0.14[${PYTHON_USEDEP}]
=dev-python/intelhex-2*[${PYTHON_USEDEP}]
>=dev-python/nitrokey-0.4.2[${PYTHON_USEDEP}]
<dev-python/nitrokey-0.5[${PYTHON_USEDEP}]
=dev-python/nkdfu-0.2*[${PYTHON_USEDEP}]
=dev-python/pyusb-1*[${PYTHON_USEDEP}]
=dev-python/requests-2*[${PYTHON_USEDEP}]
=dev-python/tqdm-4*[${PYTHON_USEDEP}]
=dev-python/tlv8-0.10*[${PYTHON_USEDEP}]
=dev-python/semver-3*[${PYTHON_USEDEP}]
>=dev-python/nethsm-2.1[${PYTHON_USEDEP}]
<dev-python/nethsm-3[${PYTHON_USEDEP}]
piv? ( =dev-python/pyscard-2*[${PYTHON_USEDEP}] )
')
"
# tests require a connected nitrokey device and will destroy the data on it!
# it would be bad if the user was not expecting this.
RESTRICT="test"
pkg_postinst(){
elog "To use the 'piv' subcommand, enable USE 'piv'"
}