blob: a1423fa1c6ec1aeb4b6e66d2753f9ac5dd3f7a79 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{9..10} )
inherit autotools python-single-r1
DESCRIPTION="Library for manipulating and storing storage volume encryption keys"
HOMEPAGE="https://pagure.io/volume_key"
SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
app-crypt/gpgme:=
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
sys-apps/util-linux
sys-fs/cryptsetup:=
"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
test? ( dev-libs/nss[utils] )
"
PATCHES=(
"${FILESDIR}/${P}-support_higher_LUKS_versions.patch"
"${FILESDIR}/${PN}-0.3.12-find_python3.patch" #764230
)
src_prepare() {
default
# bug #764230
eautoreconf
}
src_configure() {
# --without-python disables python2
econf --without-python --with-python3
}
src_install() {
default
find "${ED}" -type f -name "*.la" -delete || die
python_optimize
}
|