blob: 895d54e3ee45eda8ca01bcc1eea3251eafbd960d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
DISTUTILS_EXT=1
PYPI_VERIFY_REPO=https://github.com/pyauth/python-pkcs11
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 edo pypi
DESCRIPTION="PKCS#11/Cryptoki support for Python"
HOMEPAGE="
https://github.com/pyauth/python-pkcs11/
https://pypi.org/project/python-pkcs11/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/asn1crypto[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-libs/openssl
dev-libs/softhsm
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/parameterized[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
src_test() {
local -x PKCS11_MODULE="${BROOT}/usr/$(get_libdir)/softhsm/libsofthsm2.so"
local -x PKCS11_TOKEN_LABEL="TEST"
local -x PKCS11_TOKEN_PIN="1234"
local -x PKCS11_TOKEN_SO_PIN="5678"
mkdir -p "${HOME}/.config/softhsm2" || die
cat > "${HOME}/.config/softhsm2/softhsm2.conf" <<- EOF || die "Failed to create config"
directories.tokendir = ${T}
objectstore.backend = file
EOF
edo softhsm2-util --init-token --free \
--label ${PKCS11_TOKEN_LABEL} \
--pin ${PKCS11_TOKEN_PIN} \
--so-pin ${PKCS11_TOKEN_SO_PIN}
rm -r pkcs11 || die
distutils-r1_src_test
}
|