commit: f9d6e49b55445a62dcb882dd6f84d9f85c2b7394 Author: Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com> AuthorDate: Sat Jan 17 23:20:06 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Feb 4 01:47:07 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d6e49b
sys-boot/limine: add 10.6.4 Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/45420 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-boot/limine/Manifest | 1 + sys-boot/limine/limine-10.6.4.ebuild | 48 ++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest index 3ea15edc4451..76f1d75679fc 100644 --- a/sys-boot/limine/Manifest +++ b/sys-boot/limine/Manifest @@ -1 +1,2 @@ DIST limine-10.6.0.tar.gz 584121 BLAKE2B 10feef2b05ae05803e8927fa1b7f839d68c186e34ee8a52c4c42eed4e40ee0c6f03684462017816109d967fa759d11dca00653039ece52c14c2df9c06fc9610a SHA512 11f46a3b04643cabfcf3655c148ed1470a8b899d3468e06bdc33881776dad5a3fedaffcbce487f07220ca462f2b1b51c2557f4120a0622f3351858db004c75a6 +DIST limine-10.6.4.tar.gz 587764 BLAKE2B 198fe69b7243bb9591e23367899f54d861b7571af9ae54946f8b53e50b66353cff6648020b6a495b61e2eab0906ba18608964f53365304bf0dab0d73573bd9db SHA512 f01bc94751e60075a559f2f3dd2ecda30a7fe32fb08d4790dae2e3860dc1cfbdd5d830c4324af02e258ec3ddef258dab9ad117e0c6df9c734a82590bc6308d68 diff --git a/sys-boot/limine/limine-10.6.4.ebuild b/sys-boot/limine/limine-10.6.4.ebuild new file mode 100644 index 000000000000..05b3f209bf52 --- /dev/null +++ b/sys-boot/limine/limine-10.6.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-r1 + +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[@]}" +}
