void-packages/srcpkgs/btrfs-progs/template
Érico Nogueira f5082ab001 btrfs-progs: downgrade to 5.11.1.
Fixes issues with older kernels (at least <=4.19): ENOTTY for
ioctl(BLKGETZONESZ) causes `btrfs device scan` to error out and dump
users to an emergency shell during boot.

We are moving to 5.11.1 instead of reverting the 5.12.1 commit (which
would be a downgrade to 5.10), because 5.11* picked up a few bug fixes
that are nice to have.

Fixes #31275
Upstream issue: https://github.com/kdave/btrfs-progs/issues/376

Also closes #31288 by leaving a comment about the license change.
2021-06-04 19:31:30 -03:00

73 lines
2.1 KiB
Bash

# Template file for 'btrfs-progs'
# XXX: >=5.12 moves to LGPL-2.1-or-later
pkgname=btrfs-progs
reverts="5.12.1_1"
version=5.11.1
revision=1
wrksrc="${pkgname}-v${version}"
build_style=gnu-configure
make_check_target=test
configure_args="--disable-backtrace --disable-python"
hostmakedepends="asciidoc pkg-config xmlto"
makedepends="acl-devel libzstd-devel lzo-devel libblkid-devel libuuid-devel
$(vopt_if e2fs 'e2fsprogs-devel') $(vopt_if reiserfs 'reiserfsprogs')
zlib-devel"
short_desc="Btrfs filesystem utilities"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="GPL-2.0-only, LGPL-3.0-or-later"
homepage="https://btrfs.wiki.kernel.org/index.php/Main_Page"
changelog="https://raw.githubusercontent.com/kdave/btrfs-progs/master/CHANGES"
distfiles="${KERNEL_SITE}/kernel/people/kdave/${pkgname}/${pkgname}-v${version}.tar.xz"
checksum=e3aaccc4756ec4e5502cb2a9f85b67d52896644f4c3c0f88a6bc598c70bdebfe
# Most of the tests depend on `mount` and `fallocate` commands, which are not
# presented in chroot-util-linux
make_check=no
build_options="reiserfs e2fs"
build_options_default="e2fs"
desc_option_reiserfs="Enable support for converting reiserfs disk to btrfs"
desc_option_e2fs="Enable support for converting ext2/3/4 disk to btrfs"
pre_build() {
if [ $CROSS_BUILD ]; then
${BUILD_CC} ${BUILD_CFLAGS} kernel-lib/mktables.c -o mktables
fi
}
post_install() {
vinstall btrfs-completion 644 /usr/share/bash-completion/completions btrfs
}
libbtrfs_package() {
short_desc+=" - btrfs library"
pkg_install() {
vmove "usr/lib/libbtrfs.so.*"
}
}
libbtrfs-devel_package() {
short_desc+=" - libbtrfs development files"
depends="libbtrfs>=${version}_${revision}"
pkg_install() {
vmove usr/include/btrfs
vmove usr/lib/libbtrfs.a
vmove usr/lib/libbtrfs.so
}
}
libbtrfsutil_package() {
short_desc+=" - btrfsutil library"
pkg_install() {
vmove "usr/lib/libbtrfsutil.so.*"
}
}
libbtrfsutil-devel_package() {
depends="libbtrfsutil-${version}_${revision}"
short_desc+=" - libbtrfsutil development files"
pkg_install() {
vmove usr/include/btrfsutil.h
vmove usr/lib/libbtrfsutil.a
vmove usr/lib/libbtrfsutil.so
}
}