sys-fs/zfs: set gentoo revision for utils
authorGeorgy Yakovlev <gyakovlev@gentoo.org>
Thu, 23 May 2019 23:17:37 +0000 (16:17 -0700)
committerGeorgy Yakovlev <gyakovlev@gentoo.org>
Thu, 23 May 2019 23:19:21 +0000 (16:19 -0700)
we already do that for kmod
Release: field in the top level META file.
downstream packagers are free to modify the release string as they see fit.

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
sys-fs/zfs/zfs-9999.ebuild

index e24458b4194f6b95167fde693b88698caddec6ec..129f3484544765db8a379b735d8c6a783bd81f4a 100644 (file)
@@ -98,7 +98,12 @@ pkg_setup() {
 src_prepare() {
        default
 
-       [[ ${PV} == "9999" ]] && eautoreconf
+       if [[ ${PV} == "9999" ]]; then
+               eautoreconf
+       else
+               # Set revision number
+               sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die "Could not set Gentoo release"
+       fi
 
        # Update paths
        sed -e "s|/sbin/lsmod|/bin/lsmod|" \
@@ -170,6 +175,12 @@ src_install() {
 }
 
 pkg_postinst() {
+       if has_version "<=sys-kernel/genkernel-3.5.3.3"; then
+               einfo "genkernel version 3.5.3.3 and earlier does NOT support"
+               einfo " unlocking pools with native zfs encryption enabled at boot"
+               einfo " use dracut or genkernel-9999 if you requre this functionality"
+       fi
+
        if ! use kernel-builtin && [[ ${PV} = "9999" ]]; then
                einfo "Adding ${P} to the module database to ensure that the"
                einfo "kernel modules and userland utilities stay in sync."