diff options
author | Jonathan Vasquez <fearedbliss@gentoo.org> | 2020-07-18 12:35:26 -0400 |
---|---|---|
committer | Jonathan Vasquez <fearedbliss@gentoo.org> | 2020-07-18 12:35:26 -0400 |
commit | 77fb3b2f277796c5cec4a8a9dbd95405c580ad27 (patch) | |
tree | 68a15ce579f50b7038116ab0b445bae32835f37f /sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild | |
parent | sys-kernel/bliss-initramfs: stabilizing 8.1.0-r1 (diff) | |
download | gentoo-77fb3b2f277796c5cec4a8a9dbd95405c580ad27.tar.gz gentoo-77fb3b2f277796c5cec4a8a9dbd95405c580ad27.tar.bz2 gentoo-77fb3b2f277796c5cec4a8a9dbd95405c580ad27.zip |
sys-kernel/bliss-initramfs: bumping 9.0.0 to 9.1.0
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Jonathan Vasquez <fearedbliss@gentoo.org>
Diffstat (limited to 'sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild')
-rw-r--r-- | sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild b/sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild new file mode 100644 index 000000000000..042e7d7cf5d5 --- /dev/null +++ b/sys-kernel/bliss-initramfs/bliss-initramfs-9.1.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{3_6,3_7,3_8} ) +inherit python-single-r1 + +DESCRIPTION="Boot your system's rootfs from Encrypted/OpenZFS." +HOMEPAGE="https://github.com/fearedbliss/bliss-initramfs" +SRC_URI="https://github.com/fearedbliss/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="strip" +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="-* ~amd64" + +RDEPEND=" + ${PYTHON_DEPS} + app-arch/cpio + virtual/udev" + +S="${WORKDIR}/${PN}-${PV}" + +CONFIG_FILE="/etc/bliss-initramfs/settings.json" + +src_install() { + # Copy the main executable + local executable="mkinitrd.py" + exeinto "/opt/${PN}" + doexe "${executable}" + + # Copy the libraries required by this executable + cp -r "${S}/files" "${D}/opt/${PN}" || die + cp -r "${S}/pkg" "${D}/opt/${PN}" || die + + # Copy documentation files + dodoc README.md README-MORE.md USAGE.md + + # Copy the configuration file for the user + dodir "/etc/${PN}" + cp "${S}/files/default-settings.json" "${D}${CONFIG_FILE}" + + # Make a relative symbolic link: /sbin/bliss-initramfs + dosym "../opt/${PN}/${executable}" "/sbin/${PN}" +} + +pkg_postinst() { + elog "Version >=9.0.0 is a BREAKING CHANGE! bliss-initramfs now has native" + elog "zfs encryption support, and LUKS has been completely removed. If you" + elog "are using LUKS, please stay on version 8.1.0 since that is the last" + elog "version to support LUKS!\n" + elog "For a full list of changes, please read the release info located here:" + elog "https://github.com/fearedbliss/bliss-initramfs/releases/tag/9.0.0" + elog "" + elog "As of version 8.1.0, ${PN} has a new centralized configuration architecture." + elog "Any customizations you want to provide to ${PN} should be done by modifying" + elog "${CONFIG_FILE}. You can use the \"-c/--config\" option to provide" + elog "an alternate configuration path.\n" + elog "For a full list of changes, please read the release info located here:" + elog "https://github.com/fearedbliss/bliss-initramfs/releases/tag/8.1.0" +} |