mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
sys-kernel/ugrd: Add 1.24.2
Signed-off-by: Zen <z@pyl.onl> Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
This commit is contained in:
@@ -3,3 +3,4 @@ DIST ugrd-1.17.0.tar.gz 69517 BLAKE2B 2acadac8ab3830791146522ccfff6f8c5e98eff4ce
|
||||
DIST ugrd-1.20.0.tar.gz 64541 BLAKE2B d85241e6c0822d3df0d65cc07cb17014b4d66554476caf4d37ebc77943c57ef3004e1e01b4eb504974b2ab9d1a03015812e8b0cb19ebf03667a9f6c7a1bded03 SHA512 88f137fa5fc4cb61418cda03c0c58ff7632c1e61b7688ad9e8cce538842d817e973c1d2293b8bb92b9697a29511cb535059ca060793ba6353d95d5ddad417f3a
|
||||
DIST ugrd-1.22.0.tar.gz 65955 BLAKE2B 0573364964ce8d874ff126e87e003aeb90d3f6460ecaca7aaf5f231fe9069dca9239c0ee9e68157eebaab8651401df0c22695d5a81e2984dbfb89b4a38f5a0aa SHA512 78598f0b0d81a9528b84fd829269b7ce0588830bf95ce5e6455c02053e38a25dd9eecb664057ea6bfed653590c39f73dd3f4a4235e056d27c9c100b166a29996
|
||||
DIST ugrd-1.23.0.tar.gz 67477 BLAKE2B 12980f3620f9d6c98ee652d957f96961f2b1456719b2806a72c9512bd7f74a74a162f57aefbf2f92967becb7d3e05feebaf4fe590d0be4884c7d99b5f5037ad5 SHA512 ccf4af7fae729142203f5f4e619273705c8d9d9ee56b65e90736aed9f2f7cd0b886f12e84ca3ac4e8f754606bc91e9dc80a14721059e90e76e622ecac3b8e408
|
||||
DIST ugrd-1.24.2.tar.gz 68762 BLAKE2B 2def2144381f66ac79d5c2246f49cacdde3aafd3ee7909cc9bfbfbb31dc554d501b240854452f51e4fd8e66d2af20c7380ee2552eb546f6728d56d59f9a2e9a1 SHA512 d5c756950212509d5a94c8f82b27da2cefdf6b7328f2871a9a56231e8e15d0fde1aea1850066935bdc5c143172fb3b2b09fb9fb131c3f52813d5b609541136d5
|
||||
|
||||
75
sys-kernel/ugrd/ugrd-1.24.2.ebuild
Normal file
75
sys-kernel/ugrd/ugrd-1.24.2.ebuild
Normal file
@@ -0,0 +1,75 @@
|
||||
# Copyright 2023-2024 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 shell-completion
|
||||
|
||||
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 ~arm64"
|
||||
|
||||
RDEPEND="
|
||||
app-misc/pax-utils
|
||||
>=dev-python/zenlib-2.2.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/pycpio-1.3.2[${PYTHON_USEDEP}]
|
||||
sys-apps/pciutils
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
test? (
|
||||
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.lvm support" sys-fs/lvm2[lvm]
|
||||
optfeature "ugrd.fs.mdraid support" sys-fs/mdadm
|
||||
}
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
src_test() {
|
||||
if [[ ! -w '/dev/kvm' ]]; then
|
||||
ewarn "Skipping tests: Cannot write to /dev/kvm."
|
||||
return 1
|
||||
fi
|
||||
if [[ ! -r "$(command -v mount)" ]]; then
|
||||
ewarn "Cannot read the mount binary, tests may fail until"
|
||||
ewarn "util-linux is re-emerged without the sfperms feature."
|
||||
fi
|
||||
|
||||
distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
eunittest tests/
|
||||
}
|
||||
Reference in New Issue
Block a user