btrfs-progs: disable btrfs-convert. Drop e2fsprogs dep

This commit is contained in:
Fredrik Rinnestam 2018-03-15 21:55:55 +01:00
parent 86de37a48e
commit ac1ffa9ef1
3 changed files with 10 additions and 8 deletions

View File

@ -4,7 +4,6 @@ drwxr-xr-x root/root lib/udev/rules.d/
-rw-r--r-- root/root lib/udev/rules.d/64-btrfs-dm.rules
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/btrfs
-rwxr-xr-x root/root sbin/btrfs-convert
-rwxr-xr-x root/root sbin/btrfs-debug-tree
-rwxr-xr-x root/root sbin/btrfs-find-root
-rwxr-xr-x root/root sbin/btrfs-image
@ -47,7 +46,6 @@ drwxr-xr-x root/root usr/share/man/man5/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/btrfs-balance.8.gz
-rw-r--r-- root/root usr/share/man/man8/btrfs-check.8.gz
-rw-r--r-- root/root usr/share/man/man8/btrfs-convert.8.gz
-rw-r--r-- root/root usr/share/man/man8/btrfs-debug-tree.8.gz
-rw-r--r-- root/root usr/share/man/man8/btrfs-device.8.gz
-rw-r--r-- root/root usr/share/man/man8/btrfs-filesystem.8.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/UcmkVtzGmKtaO6BeG9n36LkErFkXYjVbtlVM3DWhumnZFXAwCIwUkCmxFwkBNZHlIj4+lx/8pJi2qQHQOwnmwg=
SHA256 (Pkgfile) = 7885f01919adadb2387e4cf410f0a8f40a2d1acd9eb1f542598938b356867acd
SHA256 (.footprint) = a29435b0a075edf510a96e949e3a0d21138e6af59f76ac28307f4435b35da84d
RWSE3ohX2g5d/YaCriJtitawYuvjckoeo171uNaWvtLADnL4rJzX9JyIOCr/oPryK7nxcozf7J7a/4MLc7rNEx8XgymXU8sZtQE=
SHA256 (Pkgfile) = 7f407a4e6496f39280708f40a989d08e72b13d23e5768a4ccb602526072565d4
SHA256 (.footprint) = d50453a09788bc8ad61f544f8680b2e32de30a2693e7307a05843be9b46dd4c7
SHA256 (btrfs-progs-v4.15.1.tar.xz) = 67102ac0d6795f368acc94efaca29b6626d972638790a4a0c9f89a27cd543f96

View File

@ -1,22 +1,26 @@
# Description: Filesystem utilities for btrfs
# URL: http://btrfs.wiki.kernel.org
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: e2fsprogs lzo zstd
# Depends on: lzo zstd
name=btrfs-progs
version=4.15.1
release=1
release=2
source=(https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$version.tar.xz)
build() {
cd $name-v$version
./configure --prefix=/usr \
--bindir=/sbin \
--disable-documentation
--disable-documentation \
--disable-convert
make
make DESTDIR=$PKG install
mkdir -p $PKG/usr/share/man/{man5,man8}
install -m644 Documentation/*.5.gz $PKG/usr/share/man/man5/
install -m644 Documentation/*.8.gz $PKG/usr/share/man/man8/
#btrfs-convert disabled
rm $PKG/usr/share/man/man8/btrfs-convert.8.gz
}