diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest index 6e67feb0b6ead..84af639fad23f 100644 --- a/sys-boot/limine/Manifest +++ b/sys-boot/limine/Manifest @@ -1,2 +1 @@ -DIST limine-12.3.3.tar.gz 676347 BLAKE2B 43c8dba8c1cf4efaa79a950cf8fc75b20b085221f2c934587eb11b91d06d0d3745ce624c180b20ab32ee09c7221aeb6cd2337e53778575bd8b96b9133211ef94 SHA512 5d329953ab600c5a9e5cbc34234df5ccd39e42504ce77abe27d0388a3387db49dd62b5aa797779026c9ce57c1850deca7ace50cc1b198b9c01b482fcb22db1fc DIST limine-12.5.2.tar.gz 692967 BLAKE2B c6ed1c1f5d14aae35f029e34e23c61bfd62c8d019a380b1b610235e3240837fd19fe4252c5fcdc9c61874b0c7fb5eb4e58c6a7fbf5da30e43f6c9a20e21710b3 SHA512 52acf4d072099731b36b8c0c69496f95a7d49b8766265c1af2d28302c23735fded5228ec5356ac1ed50ac266033fc1646c4def629da4bbd85cca185365c92d14 diff --git a/sys-boot/limine/limine-12.3.3.ebuild b/sys-boot/limine/limine-12.3.3.ebuild deleted file mode 100644 index e5a5e9f35a54d..0000000000000 --- a/sys-boot/limine/limine-12.3.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_COMPAT=( {19..22} ) -inherit llvm-r2 - -DESCRIPTION="Modern, secure, portable, multiprotocol bootloader and boot manager" -HOMEPAGE="https://limine-bootloader.org/" -SRC_URI="https://github.com/Limine-Bootloader/Limine/releases/download/v${PV}/${P}.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[@]}" -} - -pkg_postinst() { - ewarn "Limine 12.0.0 and later forces hash verification for systems with Secure Boot" - ewarn "enabled if the config hash has been enrolled into the EFI binary with" - ewarn "'limine enroll-config'." - ewarn "If you're using Secure Boot, and are enrolling the config file hash, make sure" - ewarn "the config contains correct hashes for all files referenced within it." -}