Diff cryfs-1.0.1-r1 with a cryfs-1.0.3

/usr/portage/sys-fs/cryfs/cryfs-1.0.3.ebuild 2026-05-27 19:17:04.748968359 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{10..13} )
6
PYTHON_COMPAT=( python3_{10..14} )
7 7
inherit cmake eapi9-ver flag-o-matic linux-info python-any-r1
8 8

  
9 9
if [[ ${PV} == 9999 ]] ; then
......
20 20

  
21 21
LICENSE="LGPL-3 MIT"
22 22
SLOT="0"
23
IUSE="test"
23
IUSE="selinux test"
24 24
RESTRICT="!test? ( test )"
25 25

  
26 26
RDEPEND="
27
	dev-libs/boost:=
27
	>=dev-libs/boost-1.84.0:=
28 28
	dev-libs/crypto++:=
29 29
	dev-libs/libfmt:=
30 30
	dev-libs/spdlog:=
......
38 38
		dev-cpp/gtest
39 39
	)
40 40
"
41
RDEPEND+=" selinux? ( sec-policy/selinux-cryfs )"
41 42
BDEPEND="
42 43
	${PYTHON_DEPS}
43 44
	virtual/pkgconfig
......
49 50
PATCHES=(
50 51
	# TODO: upstream:
51 52
	"${FILESDIR}"/cryfs-1.0.1-unbundle-vendored-libs.patch
52

  
53
	# backports
54
	"${FILESDIR}"/cryfs-1.0.1-boost-1.88.patch
55 53
)
56 54

  
57 55
python_check_deps() {
Thank you!