aboutsummaryrefslogtreecommitdiffstats
path: root/main/e2fsprogs/APKBUILD
blob: 9cdce5119dafd7abac510a09178c13021fe99335 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Contributor: Valery Kartel <valery.kartel@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=e2fsprogs
pkgver=1.46.5
pkgrel=2
pkgdesc="Standard Ext2/3/4 filesystem utilities"
url="http://e2fsprogs.sourceforge.net/"
arch="all"
license="GPL-2.0-or-later AND LGPL-2.0-or-later AND BSD-3-Clause AND MIT"
depends_dev="util-linux-dev gawk"
makedepends="$depends_dev linux-headers"
checkdepends="diffutils perl coreutils"
subpackages="$pkgname-static $pkgname-dev $pkgname-doc libcom_err $pkgname-libs $pkgname-extra"
source="$pkgname-$pkgver.tar.gz::https://github.com/tytso/e2fsprogs/archive/v$pkgver.tar.gz
	"

case $CHOST in
	riscv64*)
		# j_recover_fast_commit appears to be a false negative due to a compiler
		# bug or hardware bug
		#
		# https://marc.info/?l=linux-ext4&m=161307702015761&w=2
		options="!check"
		;;
esac

# secfixes:
#   1.45.5-r0:
#     - CVE-2019-5188
#   1.45.4-r0:
#     - CVE-2019-5094

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--mandir=/usr/share/man \
		--enable-elf-shlibs \
		--enable-lto \
		--enable-symlink-install \
		--disable-fsck \
		--disable-uuidd \
		--disable-libuuid \
		--disable-libblkid \
		--disable-nls
	make
}

check() {
	# Disable failing test
	rm -rf tests/m_offset*

	# Failing on CI
	rm -rf tests/f_bigalloc_orphan_list*

	# Fails on armhf on CI
	rm -rf tests/f_extent_htree*

	# Fails on builders with less than 4TB free space
	rm -rf tests/m_hugefile

	make check
}

package() {
	make -j1 MKDIR_P="install -d"  DESTDIR="$pkgdir" install install-libs
	mv "$pkgdir"/sbin/* "$pkgdir"/usr/sbin/
	local i; for i in e2fsck mke2fs mkfs.* fsck.*; do
		mv "$pkgdir"/usr/sbin/$i "$pkgdir"/sbin/
	done
}

dev() {
	default_dev

	amove \
		usr/bin/compile_et \
		usr/bin/mk_cmds \
		usr/share/et \
		usr/share/ss
}

libcom_err() {
	pkgdesc="Common error description library"

	amove lib/libcom_err*
}

extra() {
	depends="$pkgname=$pkgver-r$pkgrel"
	pkgdesc="Ext2/3/4 filesystem extra utilities"

	mkdir -p "$subpkgdir"
	amove usr
	rmdir "$pkgdir"/lib || true
}

sha512sums="
9e21e27b8be86b891cfc5f8c963c398e27f476d5663d6313ae48dc5d3c95f4f4ac95a9f37e971ac1dd0b8beb05b1f83b510027731e3aa906135ea21e99bea9b8  e2fsprogs-1.46.5.tar.gz
"