2023-09-07 14:05:19 +03:00
|
|
|
# Copyright 2022-2023 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
|
|
|
|
inherit cmake meson python-any-r1 systemd verify-sig
|
|
|
|
|
|
|
|
DESCRIPTION="FUSE filesystem for LXC"
|
|
|
|
HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/"
|
|
|
|
SRC_URI="https://linuxcontainers.org/downloads/lxcfs/${P}.tar.gz
|
|
|
|
verify-sig? ( https://linuxcontainers.org/downloads/lxcfs/${P}.tar.gz.asc )"
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0 LGPL-2+"
|
|
|
|
SLOT="0"
|
2023-10-06 13:50:37 +03:00
|
|
|
KEYWORDS="amd64 ~arm64 ~riscv ~x86"
|
2023-09-07 14:05:19 +03:00
|
|
|
IUSE="doc test"
|
|
|
|
|
|
|
|
DEPEND="sys-fs/fuse:3"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND="${PYTHON_DEPS}
|
|
|
|
virtual/pkgconfig
|
|
|
|
$(python_gen_any_dep '
|
|
|
|
dev-python/jinja[${PYTHON_USEDEP}]
|
|
|
|
')
|
|
|
|
doc? ( sys-apps/help2man )
|
|
|
|
verify-sig? ( sec-keys/openpgp-keys-linuxcontainers )"
|
|
|
|
|
|
|
|
# Needs some black magic to work inside container/chroot.
|
|
|
|
RESTRICT="test"
|
|
|
|
|
2023-11-03 02:16:56 +03:00
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/linuxcontainers.asc
|
2023-09-07 14:05:19 +03:00
|
|
|
|
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${PN}-5.0.4-fix-incompatible-pointer-conversion.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
python_check_deps() {
|
|
|
|
python_has_version -b "dev-python/jinja[${PYTHON_USEDEP}]"
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
python-any-r1_pkg_setup
|
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
|
|
|
|
# Fix python shebangs for python-exec[-native-symlinks], #851480
|
|
|
|
local shebangs=($(grep -rl "#!/usr/bin/env python3" || die))
|
|
|
|
python_fix_shebang -q ${shebangs[*]}
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local emesonargs=(
|
|
|
|
--localstatedir "${EPREFIX}/var"
|
|
|
|
|
|
|
|
$(meson_use doc docs)
|
|
|
|
$(meson_use test tests)
|
|
|
|
|
|
|
|
-Dfuse-version=3
|
|
|
|
-Dinit-script=""
|
|
|
|
-Dwith-init-script=""
|
|
|
|
)
|
|
|
|
|
|
|
|
meson_src_configure
|
|
|
|
}
|
|
|
|
|
|
|
|
src_test() {
|
|
|
|
cd "${BUILD_DIR}"/tests || die "failed to change into tests/ directory."
|
|
|
|
./main.sh || die
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
meson_src_install
|
|
|
|
|
|
|
|
newconfd "${FILESDIR}"/lxcfs-5.0.2.confd lxcfs
|
|
|
|
newinitd "${FILESDIR}"/lxcfs-5.0.2.initd lxcfs
|
|
|
|
|
|
|
|
# Provide our own service file (copy of upstream) due to paths being different from upstream,
|
|
|
|
# #728470
|
|
|
|
systemd_newunit "${FILESDIR}"/lxcfs-5.0.2.service lxcfs.service
|
|
|
|
}
|