mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
Done via: ``` git grep -l 'virtual/zlib:0' | xargs sed -i -e 's@virtual/zlib:0@virtual/zlib:=@g' git grep -l 'virtual/zlib:=/' | xargs sed -i -e 's@virtual/zlib:=/@virtual/zlib:0/@g' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
189 lines
4.2 KiB
Bash
189 lines
4.2 KiB
Bash
# Copyright 2008-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Please bump with dev-python/btrfsutil
|
|
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
inherit bash-completion-r1 python-any-r1 udev
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git"
|
|
EGIT_BRANCH="devel"
|
|
WANT_LIBTOOL="none"
|
|
inherit autotools git-r3
|
|
else
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dsterba.asc
|
|
inherit verify-sig
|
|
|
|
MY_PV="v${PV/_/-}"
|
|
MY_P="${PN}-${MY_PV}"
|
|
SRC_URI="
|
|
https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/${PN}/${MY_P}.tar.xz
|
|
verify-sig? ( https://mirrors.edge.kernel.org/pub/linux/kernel/people/kdave/${PN}/${MY_P}.tar.sign )
|
|
"
|
|
S="${WORKDIR}"/${PN}-${MY_PV}
|
|
|
|
if [[ ${PV} != *_rc* ]] ; then
|
|
KEYWORDS="~alpha amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
fi
|
|
fi
|
|
|
|
DESCRIPTION="Btrfs filesystem utilities"
|
|
HOMEPAGE="https://btrfs.readthedocs.io/en/latest/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/0" # libbtrfs soname
|
|
IUSE="+convert +man experimental reiserfs static static-libs udev +zstd"
|
|
# Could support it with just !systemd => eudev, see mdadm, but let's
|
|
# see if someone asks for it first.
|
|
REQUIRED_USE="static? ( !udev )"
|
|
|
|
# Tries to mount repaired filesystems
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
dev-libs/lzo:2=
|
|
sys-apps/util-linux:=[static-libs(+)?]
|
|
virtual/zlib:=
|
|
convert? (
|
|
sys-fs/e2fsprogs:=
|
|
reiserfs? (
|
|
>=sys-fs/reiserfsprogs-3.6.27
|
|
)
|
|
)
|
|
udev? ( virtual/libudev:= )
|
|
zstd? ( app-arch/zstd:= )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
>=sys-kernel/linux-headers-5.10
|
|
convert? ( sys-apps/acl )
|
|
static? (
|
|
dev-libs/lzo:2[static-libs(+)]
|
|
sys-apps/util-linux:0[static-libs(+)]
|
|
virtual/zlib:=[static-libs(+)]
|
|
convert? (
|
|
sys-fs/e2fsprogs[static-libs(+)]
|
|
reiserfs? (
|
|
>=sys-fs/reiserfsprogs-3.6.27[static-libs(+)]
|
|
)
|
|
)
|
|
zstd? ( app-arch/zstd[static-libs(+)] )
|
|
)
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
man? (
|
|
$(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]
|
|
dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]')
|
|
)
|
|
"
|
|
|
|
python_check_deps() {
|
|
python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]" &&
|
|
python_has_version "dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]"
|
|
}
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
BDEPEND+=" sys-devel/gnuconfig"
|
|
else
|
|
BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-dsterba )"
|
|
fi
|
|
|
|
pkg_setup() {
|
|
: # Prevent python-any-r1_python_setup
|
|
}
|
|
|
|
if [[ ${PV} != 9999 ]]; then
|
|
src_unpack() {
|
|
# Upstream sign the decompressed .tar
|
|
if use verify-sig; then
|
|
einfo "Unpacking ${MY_P}.tar.xz ..."
|
|
verify-sig_verify_detached - "${DISTDIR}"/${MY_P}.tar.sign \
|
|
< <(xz -cd "${DISTDIR}"/${MY_P}.tar.xz | tee >(tar -xf -))
|
|
assert "Unpack failed"
|
|
else
|
|
default
|
|
fi
|
|
}
|
|
fi
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
local AT_M4DIR=config
|
|
eautoreconf
|
|
|
|
local automakedir="$(autotools_run_tool --at-output automake --print-libdir)"
|
|
[[ -e ${automakedir} ]] || die "Could not locate automake directory"
|
|
|
|
ln -s "${automakedir}"/install-sh config/install-sh || die
|
|
ln -s "${BROOT}"/usr/share/gnuconfig/config.guess config/config.guess || die
|
|
ln -s "${BROOT}"/usr/share/gnuconfig/config.sub config/config.sub || die
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--bindir="${EPREFIX}"/sbin
|
|
|
|
--enable-lzo
|
|
$(use_enable experimental)
|
|
--disable-python
|
|
$(use_enable convert)
|
|
$(use_enable man documentation)
|
|
$(use_enable elibc_glibc backtrace)
|
|
$(use_enable static-libs static)
|
|
$(use_enable udev libudev)
|
|
$(use_enable zstd)
|
|
|
|
# Could support libgcrypt, libsodium, libkcapi, openssl, botan
|
|
--with-crypto=builtin
|
|
--with-convert=ext2$(usev reiserfs ',reiserfs')
|
|
)
|
|
|
|
export EXTRA_PYTHON_CFLAGS="${CFLAGS}"
|
|
export EXTRA_PYTHON_LDFLAGS="${LDFLAGS}"
|
|
|
|
if use man; then
|
|
python_setup
|
|
fi
|
|
|
|
# bash as a temporary workaround for https://github.com/kdave/btrfs-progs/pull/721
|
|
CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_compile() {
|
|
emake V=1 all $(usev static)
|
|
}
|
|
|
|
src_test() {
|
|
emake V=1 -j1 -C tests test
|
|
}
|
|
|
|
src_install() {
|
|
local makeargs=(
|
|
$(usev static install-static)
|
|
)
|
|
|
|
emake V=1 DESTDIR="${D}" install "${makeargs[@]}"
|
|
|
|
if use experimental; then
|
|
exeinto /sbin
|
|
doexe btrfs-corrupt-block
|
|
fi
|
|
|
|
newbashcomp btrfs-completion btrfs
|
|
}
|
|
|
|
pkg_postinst() {
|
|
udev_reload
|
|
}
|
|
|
|
pkg_postrm() {
|
|
udev_reload
|
|
}
|