sys-kernel/ugrd: drop 2.0.1

Signed-off-by: Zen <z@pyl.onl>
Part-of: https://github.com/gentoo/gentoo/pull/43022
Closes: https://github.com/gentoo/gentoo/pull/43022
Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
This commit is contained in:
Zen
2025-07-18 12:44:20 -05:00
committed by Nowa Ammerlaan
parent e392174624
commit b8f6115c6f
2 changed files with 0 additions and 82 deletions

View File

@@ -2,5 +2,4 @@ DIST ugrd-1.27.2.tar.gz 76119 BLAKE2B 7a97f0189f1b39f0a1264c4ac9fbc8dc15f6bf9363
DIST ugrd-1.28.2.tar.gz 79970 BLAKE2B 545d9a21e3fa5dbee3a29adad5f3df4f4c60c363866277520d0783c0e578d762301c94b0791b5a21b47ef8172cf9658ae47c43a5b696d311a76fea6649f80d17 SHA512 7598cf15869f3e8aca681fd1d8f239da66b84252978152559fa154d43ae06a1edab2cbee0b7fbaf8a48abc40e9b96c769534c95fed4e040e2f9ae7ab90694a6d
DIST ugrd-1.29.0.tar.gz 81078 BLAKE2B 6f0e25d325878a0bfba442fafd4dcd4ed0f51312339c3cfc8ef4a43b90020b143c34d7f9fddaa7e4af90260e25c5a9776842a61f6ad7483b7dd9e3c3c02049b2 SHA512 68ecfb9694e789df5de12068b4fac97d578d1ce1bc046e67f5859c5742e6cc3c33d3d87703c80d50603a4b1d504fed57a27d8e2a609f243f236f9040ddbf85bf
DIST ugrd-1.31.2.tar.gz 87959 BLAKE2B 2a569154d871fac0efde0eaab914a5ddc48d84b3b4d207514b3fa038b9f6403ecba3096af44374880ebe0a652f22198c5b95c3589e6114aa28a4637cc199d01f SHA512 fa1147ba61075868d1ade76bc8ad2913902c21cfea9879a2709511650673f06728570a0b8bb11ad3166ee034cbb113115bbe617855356e01af74ce383882bff8
DIST ugrd-2.0.1.tar.gz 107195 BLAKE2B 2a4644b31dbf7496ba6aec0c01508731a89fcf242cdc85a9a65b52d4d2a826bebf67828b1fd34a8e00186cc9556b2fee3aa8f4d37ad88635c109764b7d4a1a11 SHA512 407da90dc0999441ab6ae504bfecd870fc7d427bd992a9607b0349ae3a4d544f8fec2269a41efa1cfb93b3550cbdc82075713bf75702699a9502296bc7a6ffa7
DIST ugrd-2.0.2.tar.gz 107640 BLAKE2B 31a8307fc1e516c94eac5a75ff70e10adcec041359d065fcb24e708f3578b219907ce8144a6d8ad0fb168127040c620cb5bbdcdaedd9e9dd86a61ff72fb7ce00 SHA512 cb91622ef0fd93aeb491bbc8fc05a549a3ee1f36afc59e4e47e824f6aba6e95e8d8047e320295815c830c47f91b9197bc60d5ab6d64f77a81f806c1225c2e5b3

View File

@@ -1,81 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 optfeature shell-completion
DESCRIPTION="Python based POSIX initramfs generator with TOML definitions"
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 ~arm64"
RESTRICT="test"
PROPERTIES="test_privileged"
RDEPEND="
app-misc/pax-utils
sys-devel/bc
>=dev-python/zenlib-3.0.2[${PYTHON_USEDEP}]
>=dev-python/pycpio-1.5.2[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
sys-fs/cryptsetup
sys-fs/btrfs-progs
sys-fs/e2fsprogs
sys-fs/f2fs-tools
sys-fs/xfsprogs
sys-fs/squashfs-tools
dev-python/zstandard
amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] )
arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] )
)
"
python_install_all() {
# Call the distutils-r1_python_install_all function
distutils-r1_python_install_all
# Install the example config into /etc/ugrd/config.toml
# Do not overwrite an existing config
insinto /etc/ugrd
newins examples/example.toml config.toml
# Install the kernel preinst.d hook
exeinto /usr/lib/kernel/preinst.d
doexe hooks/installkernel/52-ugrd.install
exeinto /usr/lib/kernel/install.d
doexe hooks/kernel-install/52-ugrd.install
dobashcomp completion/ugrd # Install bash autocomplete script
dozshcomp completion/_ugrd # Install zsh autocomplete script
}
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.ext4 support" sys-fs/e2fsprogs
optfeature "ugrd.fs.f2s support" sys-fs/f2fs-tools
optfeature "ugrd.fs.lvm support" sys-fs/lvm2[lvm]
optfeature "ugrd.fs.zfs support" sys-fs/zfs
optfeature "ugrd.fs.mdraid support" sys-fs/mdadm
optfeature "ugrd.base.plymouth support" sys-boot/plymouth
optfeature "ZSTD compression support" dev-python/zstandard
}
distutils_enable_tests unittest
src_test() {
addwrite /dev/kvm
distutils-r1_src_test
}
python_test() {
eunittest tests/
}