summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Słomiński <kacper.slominski72@gmail.com>2025-11-24 18:29:03 +0100
committerSam James <sam@gentoo.org>2025-11-26 20:06:45 +0000
commit2b29cb716492ff02b9d03e0b6427ef1bcce76105 (patch)
treef8fab41f3454512a5acf9809a2fc86336b1d043c
parent5b7f2249b177dab1fecc7da1112d3e5e91e67181 (diff)
downloadgentoo-2b29cb716492ff02b9d03e0b6427ef1bcce76105.tar.gz
gentoo-2b29cb716492ff02b9d03e0b6427ef1bcce76105.tar.bz2
gentoo-2b29cb716492ff02b9d03e0b6427ef1bcce76105.zip
sys-boot/limine: drop 10.3.0
Signed-off-by: Kacper Słomiński <kacper.slominski72@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44761 Closes: https://github.com/gentoo/gentoo/pull/44761 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--sys-boot/limine/Manifest1
-rw-r--r--sys-boot/limine/limine-10.3.0.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 051403d0d767..4b0b09ff6a5d 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1,2 +1 @@
-DIST limine-10.3.0.tar.gz 574160 BLAKE2B ece48f134299495969dd0f7aca12653e5c72cfcca13839c6a4d6bdd8416c27e9c34a72161d5ce447e99be69cb3d55b929be9fb42da9604616d0b0205474d8568 SHA512 ea6164b29f62f5c3ccaf689cd3dbe1f8fefc829aaeca1965007606a7a4784de7cfbcd5fbf7d703e6eb1646b05072d5f6750d9578dda6b2e1146c3eff4d9e640a
DIST limine-10.3.2.tar.gz 574182 BLAKE2B 11980b21b44eb1f64be165ba2bd8fe0e22e79800e76d7fdfaf40714a5ce2e20d99b3d80795fcfb26e663ef3b4a8a8a4a26011a51ddac76d3d975feb5da7c7735 SHA512 fb58516b1026032604d9b67b1717df243df696fc49ec9c122e8c7e8c434da42e965f264b4db3de170997fc15b178dc21869349ea81065c0bc1307ae08a4b0138
diff --git a/sys-boot/limine/limine-10.3.0.ebuild b/sys-boot/limine/limine-10.3.0.ebuild
deleted file mode 100644
index fe63e8fac3c8..000000000000
--- a/sys-boot/limine/limine-10.3.0.ebuild
+++ /dev/null
@@ -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[@]}"
-}