Gentoo Archives: gentoo-commits

From: Jonathan Vasquez <fearedbliss@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/bliss-initramfs/
Date: Thu, 03 Sep 2020 16:38:59
Message-Id: 1599151121.ae5be29362e177ce0d8759ee42fe8e7de00fed17.fearedbliss@gentoo
1 commit: ae5be29362e177ce0d8759ee42fe8e7de00fed17
2 Author: Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 3 16:38:41 2020 +0000
4 Commit: Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 3 16:38:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae5be293
7
8 sys-kernel/bliss-initramfs: bumping to 9.2.0
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Jonathan Vasquez <fearedbliss <AT> gentoo.org>
12
13 sys-kernel/bliss-initramfs/Manifest | 1 +
14 .../bliss-initramfs/bliss-initramfs-9.2.0.ebuild | 63 ++++++++++++++++++++++
15 2 files changed, 64 insertions(+)
16
17 diff --git a/sys-kernel/bliss-initramfs/Manifest b/sys-kernel/bliss-initramfs/Manifest
18 index 393307efc8d..11c203f7157 100644
19 --- a/sys-kernel/bliss-initramfs/Manifest
20 +++ b/sys-kernel/bliss-initramfs/Manifest
21 @@ -1,2 +1,3 @@
22 DIST bliss-initramfs-8.1.0.tar.gz 34464 BLAKE2B 5cc4c547fa9fadc91b21f9e752242dd1f3fa81a589457297c2d058fa811ea08deb3aacdcc5f2448856fd1d1c627037c47796f69b39b9691a60d8b0bcfc499cff SHA512 bee5e206ddd388a06ef876d99e36d0e1587d9148d890761e4d56b27e12c83c9a51794a3c9e99cac70de9729297e27051d6c323986f13cf8b3666a6ec66b85090
23 DIST bliss-initramfs-9.1.0.tar.gz 27708 BLAKE2B 920e33e5c63d0c8eec2f17ceca42c6b83c3850714b63fd8d80855fafaea7f5799a22d213fb05e6ee03c9321d2eaffac434cec2822326d18cb5f8bcea5d361eaa SHA512 2ce98a6dd837062accfdcb145f1eba9e93c6f21f41fc6fdeb38f939749a1a86c6971aa9e438f99a06a7fec7013ff19e8cd3dd346cc9aa80b0048c6402c93865a
24 +DIST bliss-initramfs-9.2.0.tar.gz 27837 BLAKE2B 9a8dd611b75c2892dba7d96c8e79385034e7a923c62d2223d69ee48a6a8090271981b367d8083db553dfe5a1bbd661857036998bcfe7daf78e1f15bbdb8b1c9c SHA512 2af311a166e4b46bdb365e8e6a518354f27216275f2d941e430d356727c9b2b9080dce411509a3e9093c5324f28ed9e73c3831140d7d2eef3ab8cd514b5c0e43
25
26 diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-9.2.0.ebuild b/sys-kernel/bliss-initramfs/bliss-initramfs-9.2.0.ebuild
27 new file mode 100644
28 index 00000000000..042e7d7cf5d
29 --- /dev/null
30 +++ b/sys-kernel/bliss-initramfs/bliss-initramfs-9.2.0.ebuild
31 @@ -0,0 +1,63 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python{3_6,3_7,3_8} )
38 +inherit python-single-r1
39 +
40 +DESCRIPTION="Boot your system's rootfs from Encrypted/OpenZFS."
41 +HOMEPAGE="https://github.com/fearedbliss/bliss-initramfs"
42 +SRC_URI="https://github.com/fearedbliss/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45 +RESTRICT="strip"
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="-* ~amd64"
49 +
50 +RDEPEND="
51 + ${PYTHON_DEPS}
52 + app-arch/cpio
53 + virtual/udev"
54 +
55 +S="${WORKDIR}/${PN}-${PV}"
56 +
57 +CONFIG_FILE="/etc/bliss-initramfs/settings.json"
58 +
59 +src_install() {
60 + # Copy the main executable
61 + local executable="mkinitrd.py"
62 + exeinto "/opt/${PN}"
63 + doexe "${executable}"
64 +
65 + # Copy the libraries required by this executable
66 + cp -r "${S}/files" "${D}/opt/${PN}" || die
67 + cp -r "${S}/pkg" "${D}/opt/${PN}" || die
68 +
69 + # Copy documentation files
70 + dodoc README.md README-MORE.md USAGE.md
71 +
72 + # Copy the configuration file for the user
73 + dodir "/etc/${PN}"
74 + cp "${S}/files/default-settings.json" "${D}${CONFIG_FILE}"
75 +
76 + # Make a relative symbolic link: /sbin/bliss-initramfs
77 + dosym "../opt/${PN}/${executable}" "/sbin/${PN}"
78 +}
79 +
80 +pkg_postinst() {
81 + elog "Version >=9.0.0 is a BREAKING CHANGE! bliss-initramfs now has native"
82 + elog "zfs encryption support, and LUKS has been completely removed. If you"
83 + elog "are using LUKS, please stay on version 8.1.0 since that is the last"
84 + elog "version to support LUKS!\n"
85 + elog "For a full list of changes, please read the release info located here:"
86 + elog "https://github.com/fearedbliss/bliss-initramfs/releases/tag/9.0.0"
87 + elog ""
88 + elog "As of version 8.1.0, ${PN} has a new centralized configuration architecture."
89 + elog "Any customizations you want to provide to ${PN} should be done by modifying"
90 + elog "${CONFIG_FILE}. You can use the \"-c/--config\" option to provide"
91 + elog "an alternate configuration path.\n"
92 + elog "For a full list of changes, please read the release info located here:"
93 + elog "https://github.com/fearedbliss/bliss-initramfs/releases/tag/8.1.0"
94 +}