sys-boot/limine: drop 10.5.0

Signed-off-by: Kacper Słomiński <kacper.slominski72@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/45181
Closes: https://github.com/gentoo/gentoo/pull/45181
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Kacper Słomiński 2025-12-27 16:59:15 +01:00 committed by Sam James
parent 3ff316962f
commit 8383d7a780
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 49 deletions

View File

@ -1,2 +1 @@
DIST limine-10.5.0.tar.gz 576035 BLAKE2B 5dc6067646feeda664b2ac1689fa5ef1782e964810bdc79c79f039d5ac619e71367abcd8e88fb5f1bd8330010f233f8d892956d783914dda0ee73e682dc1acce SHA512 b65e3cbf4fa9567d5da1da9a3f70be0b6407f788710ef1e5a1eeb7f2543d29d6b95fdde19aafaa3e087e0be5ae7de639afa515830d753ee33553fd4d304c8187
DIST limine-10.6.0.tar.gz 584121 BLAKE2B 10feef2b05ae05803e8927fa1b7f839d68c186e34ee8a52c4c42eed4e40ee0c6f03684462017816109d967fa759d11dca00653039ece52c14c2df9c06fc9610a SHA512 11f46a3b04643cabfcf3655c148ed1470a8b899d3468e06bdc33881776dad5a3fedaffcbce487f07220ca462f2b1b51c2557f4120a0622f3351858db004c75a6

View File

@ -1,48 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LLVM_COMPAT=( {19..20} )
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[@]}"
}