From 9e8dca96e9ecf7e87cb108a56bb4f674ba9e2530 Mon Sep 17 00:00:00 2001 From: thomas Date: Fri, 15 Dec 2017 16:48:08 +0100 Subject: [PATCH 1/2] Add spl/zfs version 0.7.3 Userland tools for the ZFS file system from oracle Homepage: http://zfsonlinux.org/ --- spl.be0 | 35 +++++++++++++++++++++++++++++++++++ zfs.be0 | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100755 spl.be0 create mode 100755 zfs.be0 diff --git a/spl.be0 b/spl.be0 new file mode 100755 index 000000000..59861bf53 --- /dev/null +++ b/spl.be0 @@ -0,0 +1,35 @@ +#!/usr/bin/env beesh + +# BEE_VERSION spl-0.7.3-0 + +SRCURL[0]="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PKGVERSION}/spl-${PKGVERSION}.tar.gz" + +PATCHURL[0]="" + +# BEE_CONFIGURE=compat + +# BEE_BUILDTYPE= + +# EXCLUDE=() + +# build_in_sourcedir + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure --with-config=user --with-spec=generic +} + +#mee_build() { +# bee_build prefix=${PREFIX} +#} + +#mee_install() { +# bee_install prefix=${D}/${PREFIX} +#} diff --git a/zfs.be0 b/zfs.be0 new file mode 100755 index 000000000..a6d087ca2 --- /dev/null +++ b/zfs.be0 @@ -0,0 +1,42 @@ +#!/usr/bin/env beesh + +# BEE_VERSION zfs-0.7.3-0 + +SRCURL[0]="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PKGVERSION}/zfs-${PKGVERSION}.tar.gz" + +PATCHURL[0]="" + +# BEE_CONFIGURE=compat + +# BEE_BUILDTYPE= + +# EXCLUDE=() + +build_in_sourcedir + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure --with-config=user --with-spec=generic --with-mounthelperdir=/usr/sbin +} + +#mee_build() { +# bee_build prefix=${PREFIX} +#} + +#mee_install() { +# bee_install prefix=${D}/${PREFIX} +#} + +mee_install_post() { + start_cmd rm -vrf ${D}/etc/init.d + start_cmd rm -vrf ${D}/lib + start_cmd rm -vrf ${D}/usr/lib/modules-load.d + start_cmd rm -vrf ${D}/usr/lib/systemd +} From 2ec72fc88f121bcd1db44e0dee76f1bb6c136091 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 4 Jan 2018 09:19:58 +0100 Subject: [PATCH 2/2] zfs: remove tests from bee-package too --- zfs.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/zfs.be0 b/zfs.be0 index a6d087ca2..caaf52eb2 100755 --- a/zfs.be0 +++ b/zfs.be0 @@ -39,4 +39,5 @@ mee_install_post() { start_cmd rm -vrf ${D}/lib start_cmd rm -vrf ${D}/usr/lib/modules-load.d start_cmd rm -vrf ${D}/usr/lib/systemd + start_cmd rm -vrf ${D}/usr/share/zfs/zfs-tests }