summaryrefslogtreecommitdiff
path: root/sys-kernel/bliss-initramfs
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
committerV3n3RiX <venerix@koprulu.sector>2022-05-12 16:42:50 +0300
commit752d6256e5204b958b0ef7905675a940b5e9172f (patch)
tree330d16e6362a49cbed8875a777fe641a43376cd3 /sys-kernel/bliss-initramfs
parent0c100b7dd2b30e75b799d806df4ef899fd98e1ea (diff)
gentoo resync : 12.05.2022
Diffstat (limited to 'sys-kernel/bliss-initramfs')
-rw-r--r--sys-kernel/bliss-initramfs/Manifest2
-rw-r--r--sys-kernel/bliss-initramfs/bliss-initramfs-8.1.0-r1.ebuild60
2 files changed, 0 insertions, 62 deletions
diff --git a/sys-kernel/bliss-initramfs/Manifest b/sys-kernel/bliss-initramfs/Manifest
index 55210916d573..04c1b13dbec6 100644
--- a/sys-kernel/bliss-initramfs/Manifest
+++ b/sys-kernel/bliss-initramfs/Manifest
@@ -1,5 +1,3 @@
-DIST bliss-initramfs-8.1.0.tar.gz 34464 BLAKE2B 5cc4c547fa9fadc91b21f9e752242dd1f3fa81a589457297c2d058fa811ea08deb3aacdcc5f2448856fd1d1c627037c47796f69b39b9691a60d8b0bcfc499cff SHA512 bee5e206ddd388a06ef876d99e36d0e1587d9148d890761e4d56b27e12c83c9a51794a3c9e99cac70de9729297e27051d6c323986f13cf8b3666a6ec66b85090
DIST bliss-initramfs-9.3.0.tar.gz 28318 BLAKE2B c96a23030fc5e3ae168dbc6a4bd127eb9d6f19c0121a02351422062911274e16fe5911946942d7ef60b5eb692e679616901ac842f2af133631be894c9be36c1c SHA512 051652da42356ef601453088cc2af2c08dea5101dc922dbab966aec939717441ab31a3f6cc65599eabcd2628d156c5e22675703e48f862ed168f093f115c8dd0
-EBUILD bliss-initramfs-8.1.0-r1.ebuild 1932 BLAKE2B 648cb638d52198c331ef5d9399bf46aca842e7b06127cfbf3e5e27f5e422a5d833e26f59b482b5f9adb982d47ec0033c878a8bc192dad2a53b75098b3dd199d0 SHA512 87a60602a70bbbcc8a257ba0e3b1f3d757fc419e2ce3f6bdb4302d93ee184b184971db5e00a46da78a86551bacc7bab217b27e798b846d2547178e76ba4a53cb
EBUILD bliss-initramfs-9.3.0.ebuild 2065 BLAKE2B 6d5e0b7f02fdd535876131603ece5421ddc467a64f42ad3f242e2565d670fbe3f136b405d2bfefc010329f0cb0e23e319640a5df8f0980b87cabf2bc9c3ca214 SHA512 6a155fb2f031dfdacffbf69ed92321daaa794af31646032b69d431e992685392b435a449271698e3dd65c62a1c6120131d06aa139897242fd4e6b4f064e3faa3
MISC metadata.xml 273 BLAKE2B ec6a25c1ea028c98e4eac33083cf81a0ee5f8eab49b380a9af0aa2f2ae91de7a101ac1bd4e86f796a4ae20a09776b5198fc9655d3ddd018416aee61aecb1d7a9 SHA512 6fda37f0e2fb93ee8179d8b5b83857a5ed6da9545b3df8b0e3e1050a44a6c663ee7f65eb2034ab7ba311f0417f16ce5f8a66079a64b919dae4aae8b5fb469c59
diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-8.1.0-r1.ebuild b/sys-kernel/bliss-initramfs/bliss-initramfs-8.1.0-r1.ebuild
deleted file mode 100644
index 302d51af65d3..000000000000
--- a/sys-kernel/bliss-initramfs/bliss-initramfs-8.1.0-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit python-single-r1
-
-DESCRIPTION="Boot your system's rootfs from OpenZFS/LUKS"
-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"
-
-DOCS=( README.md README-MORE.md USAGE.md )
-
-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 the configuration file for the user
- dodir "/etc/${PN}"
- cp "${S}/files/default-settings.json" "${D}${CONFIG_FILE}"
-
- python_fix_shebang "${D}/opt/${PN}/${executable}"
-
- # Make a relative symbolic link: /sbin/bliss-initramfs
- dosym "../opt/${PN}/${executable}" "/sbin/${PN}"
-}
-
-pkg_postinst() {
- 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"
- elog ""
- elog "Also, 8.1.0 is the last version to include support for LUKS! Starting with"
- elog "version 9.0.0, bliss-initramfs only contains support for ZFS' Native Encryption."
- elog "If you are a LUKS/OpenZFS user, please stay on 8.1.0 until you migrate over to"
- elog "the native encryption."
-}