commit: b0b3e590955f18c3194d2c5000e586e486561fe7
Author: Zen <z <AT> pyl <DOT> onl>
AuthorDate: Sat Nov 18 19:49:50 2023 +0000
Commit: George Zenner <dev <AT> pyl <DOT> onl>
CommitDate: Sat Nov 18 19:49:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b0b3e590
sys-kernel/ugrd: Added version 0.8.2
Signed-off-by: Zen <z <AT> pyl.onl>
sys-kernel/ugrd/Manifest | 1 +
sys-kernel/ugrd/ugrd-0.8.2.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest
index 7cfadff8e1..fbe5fd5ce4 100644
--- a/sys-kernel/ugrd/Manifest
+++ b/sys-kernel/ugrd/Manifest
@@ -1 +1,2 @@
DIST ugrd-0.8.1.tar.gz 42632 BLAKE2B
c530d9613d383eb3a04e30ea23ad4b9308d63b4be702c91c32ab971a0a447820ea312720b219f28accc328582f5aaf82bf92523a56ebfa1f107cbf4438c5a418
SHA512
2dd52fc4652a648811dfaf8a1f07217108d2b7d07ebfdf795e79e06cf3cb7ed0b5bf8deedca669f8faf4b0d0bdb5cb111d3ec37d73859854df6f36e2d81eab4f
+DIST ugrd-0.8.2.tar.gz 44135 BLAKE2B
aea7294336327a332518f667aa85fd668af11e3293f83837bff03eaab75e024eae14e239cadf085713b94e556a3a312d829a66ec68fa89e926cde0f146238727
SHA512
1a760253e1c44893b27b1d04939fb251a31c0a9b7cc63e63d6b3f86f5f20d3bf08cf83029a3f2324cfe1e32e0940f3e45fecf2b96c5e7e323fb48d18567b79a2
diff --git a/sys-kernel/ugrd/ugrd-0.8.2.ebuild
b/sys-kernel/ugrd/ugrd-0.8.2.ebuild
new file mode 100644
index 0000000000..be7eb7e67c
--- /dev/null
+++ b/sys-kernel/ugrd/ugrd-0.8.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} pypy3 )
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Python based initramfs generator with TOML defintions"
+HOMEPAGE="https://github.com/desultory/ugrd"
+SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="app-misc/pax-utils"
+
+src_install() {
+ # Call the distutils-r1_src_install function to install the package
+ distutils-r1_src_install
+ # Create the ugrd config directory
+ keepdir /etc/ugrd
+}
+
+pkg_postinst() {
+ optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup
+ optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs
+ optfeature "ugrd.crypto.gpg support" app-crypt/gnupg
+ optfeature "ugrd.fs.zfs support" sys-fs/zfs
+}