commit: 93c987e395d7a64cc180a872edf732f1caa3f9e5 Author: Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com> AuthorDate: Tue Mar 10 18:07:49 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 11 14:15:39 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93c987e3
sys-boot/limine: add 10.8.4 Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/45914 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-boot/limine/Manifest | 1 + sys-boot/limine/limine-10.8.4.ebuild | 48 ++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest index 6255d4477a84..67a19be556a7 100644 --- a/sys-boot/limine/Manifest +++ b/sys-boot/limine/Manifest @@ -1 +1,2 @@ DIST limine-10.7.0.tar.gz 599338 BLAKE2B d7d1ef919fd568427ef77a60aa2fcf2f6dad5239876ee081199f821da8cd43ed5df71ab179359e477ad42ac1d4657aa98b2bebb494eb7780c544f8c9752c91d2 SHA512 090300b993103c264a4682f5d0d2bc185b7c791786115dbe609729f8d62399f749aeb778184e33b93fbfbfc66bdd3fb44e0893d9cd882af0618bb910cd06d04a +DIST limine-10.8.4.tar.gz 607662 BLAKE2B e2aed179b9f88750e5829c8c4b7693c64fd296b0a1f3f182340330e750e955306f648cccee649560a9e111ccc8978421b9da9e702e694da24cd62830110943d1 SHA512 4ef18e78b2f483722be23e19870e15217f90e5a6c72b53a925654971fe1cdee8f036aca057821e8d2e9a24e1c9b815fbdd20b639850b08b2c8c7e72dfec4db42 diff --git a/sys-boot/limine/limine-10.8.4.ebuild b/sys-boot/limine/limine-10.8.4.ebuild new file mode 100644 index 000000000000..28df13c04624 --- /dev/null +++ b/sys-boot/limine/limine-10.8.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LLVM_COMPAT=( {19..21} ) +inherit llvm-r2 + +DESCRIPTION="Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloader" +HOMEPAGE="https://limine-bootloader.org/" +SRC_URI="https://codeberg.org/Limine/Limine/releases/download/v${PV}/limine-${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+bios +bios-pxe +bios-cd +uefi-cd +uefi-ia32 +uefi-x86-64 +uefi-aarch64 +uefi-riscv64 +uefi-loongarch64" + +MY_LLVM_TARGETS="AArch64 ARM X86 RISCV LoongArch" +MY_LLVM_FLAGS="llvm_targets_${MY_LLVM_TARGETS// /(-),llvm_targets_}(-)" + +BDEPEND=" + app-alternatives/gzip + dev-lang/nasm + sys-apps/findutils + $(llvm_gen_dep " + llvm-core/llvm:\${LLVM_SLOT}[${MY_LLVM_FLAGS}] + llvm-core/clang:\${LLVM_SLOT}[${MY_LLVM_FLAGS}] + llvm-core/lld:\${LLVM_SLOT} + ") + uefi-cd? ( sys-fs/mtools ) +" + +src_configure() { + local myconf=( + "$(use_enable bios)" + "$(use_enable bios-cd)" + "$(use_enable bios-pxe)" + + "$(use_enable uefi-ia32)" + "$(use_enable uefi-x86-64)" + "$(use_enable uefi-aarch64)" + "$(use_enable uefi-riscv64)" + "$(use_enable uefi-loongarch64)" + "$(use_enable uefi-cd)" + ) + + econf "${myconf[@]}" +}
