sys-kernel/ugrd: Replaced 10.1 with 10.2

Signed-off-by: Zen <z@pyl.onl>
This commit is contained in:
Zen
2023-11-24 14:15:02 -06:00
parent 0208032a32
commit a5da217fcf
2 changed files with 34 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
DIST ugrd-0.10.1.tar.gz 43893 BLAKE2B 56b3a54aa3441b03a69d3823478ebbee9c5b0beb84f43450346421dc2e9d47de63db2e2587011b42b39ae25e5dbd92af81746618901c7c2c36d8dc4e7fa365fe SHA512 8da840db87887873f82ad0cf1615599f03a4a329bbbf6114ffad005bed059055580a4f7f1909a2eff03e2c5fe08447c0ef5e3b9973037a9d4970818e9d5a6b2d
DIST ugrd-0.10.2.tar.gz 43902 BLAKE2B fee84ffac6698f671442974b90499d2c7a7e61d6b9d4d1a3ffc3be14ff0db929b42c4f4fbd0742f4ac3b52f0682635877feafaa910cb823e187cd16d74856ea7 SHA512 089d018a9f2c6b64872fe9f02479c95932a848b76f1e04d8e8ab3b2288cc0552a872d7918167f7848b17fa20d25f61a4d60ade864e6ec19b6a91cda19f2a7ea0
DIST ugrd-0.8.2.tar.gz 44135 BLAKE2B aea7294336327a332518f667aa85fd668af11e3293f83837bff03eaab75e024eae14e239cadf085713b94e556a3a312d829a66ec68fa89e926cde0f146238727 SHA512 1a760253e1c44893b27b1d04939fb251a31c0a9b7cc63e63d6b3f86f5f20d3bf08cf83029a3f2324cfe1e32e0940f3e45fecf2b96c5e7e323fb48d18567b79a2

View File

@@ -0,0 +1,33 @@
# 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} )
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"
DEPEND="dev-python/zenlib"
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
}