mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Some progress is made w/ LLVM in this release (thanks to Pepper Gray for reporting bugs upstream and sending PRs there!) but isn't quite there yet. Bug: https://bugs.gentoo.org/949655 Signed-off-by: Sam James <sam@gentoo.org>
66 lines
1.3 KiB
Bash
66 lines
1.3 KiB
Bash
# Copyright 2021-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
|
|
inherit meson python-any-r1 secureboot
|
|
|
|
DESCRIPTION="EFI executable for fwupd"
|
|
HOMEPAGE="https://fwupd.org"
|
|
|
|
if [[ ${PV} = *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/fwupd/fwupd-efi.git"
|
|
else
|
|
SRC_URI="https://github.com/fwupd/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
|
|
fi
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
|
|
# uswid is used as a CLI tool, hence no Pythonic stuff
|
|
BDEPEND="
|
|
$(python_gen_any_dep '
|
|
dev-python/pefile[${PYTHON_USEDEP}]
|
|
')
|
|
sys-apps/uswid
|
|
virtual/pkgconfig
|
|
"
|
|
DEPEND=">=sys-boot/gnu-efi-3.0.18"
|
|
|
|
python_check_deps() {
|
|
python_has_version "dev-python/pefile[${PYTHON_USEDEP}]"
|
|
}
|
|
|
|
pkg_setup() {
|
|
python-any-r1_pkg_setup
|
|
secureboot_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
python_fix_shebang "${S}/efi"
|
|
}
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Defi-libdir="${EPREFIX}"/usr/$(get_libdir)
|
|
-Defi_sbat_distro_id="gentoo"
|
|
-Defi_sbat_distro_summary="Gentoo GNU/Linux"
|
|
-Defi_sbat_distro_pkgname="${PN}"
|
|
-Defi_sbat_distro_version="${PVR}"
|
|
-Defi_sbat_distro_url="https://packages.gentoo.org/packages/${CATEGORY}/${PN}"
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
meson_src_install
|
|
secureboot_auto_sign
|
|
}
|