mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 00:18:26 +00:00
55 lines
1.2 KiB
Bash
55 lines
1.2 KiB
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
|
|
inherit distutils-r1 optfeature pypi systemd
|
|
|
|
DESCRIPTION="Tools for ovmf/armvirt firmware volumes"
|
|
HOMEPAGE="
|
|
https://gitlab.com/kraxel/virt-firmware
|
|
https://pypi.org/project/virt-firmware/
|
|
"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
|
|
|
|
RDEPEND="
|
|
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
dev-python/pefile[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
# Need systemd-detect-virt
|
|
BDEPEND="
|
|
test? (
|
|
sys-apps/systemd
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests unittest
|
|
|
|
python_test() {
|
|
eunittest tests
|
|
}
|
|
|
|
python_install_all() {
|
|
distutils-r1_python_install_all
|
|
|
|
doman man/*.1
|
|
|
|
doinitd "${FILESDIR}/kernel-bootcfg-boot-successful"
|
|
systemd_dounit systemd/kernel-bootcfg-boot-successful.service
|
|
|
|
# Use our own provided by sys-kernel/installkernel[efistub,systemd]
|
|
#exeinto /usr/lib/kernel/install.d
|
|
#doexe systemd/99-uki-uefi-setup.install
|
|
}
|
|
|
|
pkg_postinst() {
|
|
optfeature "automatically updating UEFI configuration on each kernel installation or removal" \
|
|
"sys-kernel/installkernel[systemd,efistub]"
|
|
}
|