public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/
Date: Tue, 18 Feb 2025 14:01:14 +0000 (UTC)	[thread overview]
Message-ID: <1739805130.6a75d8cca6d6807d8a6f561b27178d2c085f182a.davidroman@gentoo> (raw)

commit:     6a75d8cca6d6807d8a6f561b27178d2c085f182a
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Mon Feb 17 15:05:40 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Feb 17 15:12:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6a75d8cc

sys-boot/limine: add 9.0.0

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>

 sys-boot/limine/Manifest            |  1 +
 sys-boot/limine/limine-9.0.0.ebuild | 49 +++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 51f249f35..6d8c1e77d 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -19,3 +19,4 @@ DIST limine-8.4.0.tar.gz 602897 BLAKE2B 924631c9cd6f6c6400bf2f355c3cb044c19c8574
 DIST limine-8.5.0.tar.gz 597435 BLAKE2B e39a41c6182bbb992bf14399990b733ca851e14a26dc167ea233dfa1822928958479ec014a9c654e29644c375bdb83c02a4c500931073b1ba951bceb64938a13 SHA512 1cf27e464deb01e69b31007a67558606fb69570e80d7f9261aa78d4fef5e558ad78edf3ec526a8ab064ac18bc9746111a862bcad5355cf30911102a8faa85100
 DIST limine-8.6.0.tar.gz 598538 BLAKE2B a24a416f4d26f2716839e8e1b3852fab0bcbbf8e195f415450cff688d2c853486cfa1d484bb8f440cc494725342b4da02ef5354404469faead173869c99fc0c8 SHA512 a10c066697d26d212f1d77dc0bd666a8c545630002e15564a8628891a759c28d088e61183eb09e58ca079e0aa1a993a63653d02e43d0243649fa5f2f5869ef48
 DIST limine-8.7.0.tar.gz 603144 BLAKE2B fdfbae9ccb238c3dd84f6a7fb8cf80b03f6f9e47fd9556452c30c2658fa6209886df07c8065cd5140036887e4aaf63d9b1ded8853c9ba70c80df8079fa04291d SHA512 f494d644199fda13974d0938626a0753e42dec606c5357d71cd26a8d6c72f6d34ba245c68ef3c9206c304e179da3c28d9061c79d059cd87a18fb1f45c76a09d3
+DIST limine-9.0.0.tar.gz 599578 BLAKE2B bd1324b6463b134d3d2453bbec40ac7c4225cc25178a08a599e4b595bbf447a8f72581b721993c9a2ef1acbef0821aa336dd54faba7a4deb67e753400b64f882 SHA512 e4684896125f67d61caa87301962e5973b6511d0e44c639817c554bf6917622d36f315d7c0f336c477e064527ca667cbca3e3bf3eb5f9b437f47c4fc3bfb9710

diff --git a/sys-boot/limine/limine-9.0.0.ebuild b/sys-boot/limine/limine-9.0.0.ebuild
new file mode 100644
index 000000000..504e7c21d
--- /dev/null
+++ b/sys-boot/limine/limine-9.0.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LLVM_COMPAT=( {16..19} )
+inherit llvm-r1
+
+DESCRIPTION="Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloader"
+HOMEPAGE="https://limine-bootloader.org/"
+SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+bios +bios-pxe +bios-cd +cd-efi +uefi32 +uefi64 +uefiaa64 +uefirv64 +uefiloong64"
+
+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}
+	")
+	cd-efi? ( sys-fs/mtools )
+"
+
+src_configure() {
+	local myconf=(
+		"$(use_enable bios)"
+		"$(use_enable bios-cd)"
+		"$(use_enable bios-pxe)"
+
+		"$(use_enable uefi32 uefi-ia32)"
+		"$(use_enable uefi64 uefi-x86-64)"
+		"$(use_enable uefiaa64 uefi-aarch64)"
+		"$(use_enable uefirv64 uefi-riscv64)"
+		"$(use_enable uefiloong64 uefi-loongarch64)"
+		"$(use_enable cd-efi uefi-cd)"
+	)
+
+	TOOLCHAIN_FOR_TARGET=llvm \
+	econf "${myconf[@]}"
+}


             reply	other threads:[~2025-02-18 14:02 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-18 14:01 David Roman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-01 19:19 [gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/ Haelwenn Monnier
2025-01-11 12:50 David Roman
2024-12-02 10:48 David Roman
2024-11-09 16:30 Viorel Munteanu
2024-11-02 20:52 David Roman
2024-10-19  0:05 David Roman
2024-10-12 18:59 David Roman
2024-10-03  9:43 Andrew Ammerlaan
2024-09-18 23:46 Haelwenn Monnier
2024-09-10 23:59 David Roman
2024-09-06  8:52 David Roman
2024-09-03 10:53 David Roman
2024-08-30 13:16 David Roman
2024-08-19 16:33 Lucio Sauer
2024-08-19 16:33 Lucio Sauer
2024-08-19 16:33 Lucio Sauer
2024-07-08 16:47 David Roman
2024-05-07  3:54 Rui Huang
2024-04-03 20:20 Julien Roy
2024-02-17 21:17 Julien Roy
2024-02-09  0:30 David Roman
2024-02-09  0:30 David Roman
2024-01-20 22:13 David Roman
2024-01-03 15:20 David Roman
2023-11-29 22:40 David Roman
2023-11-06 14:38 David Roman
2023-11-06 14:18 David Roman
2023-08-14 16:36 Haelwenn Monnier
2023-06-07  7:04 Viorel Munteanu
2023-05-29 20:57 Florian Schmaus
2023-05-16  5:08 Viorel Munteanu
2023-04-28 17:52 Arthur Zamarin
2023-04-09 10:05 Viorel Munteanu
2023-04-04  7:48 Florian Schmaus
2023-03-16  8:41 Florian Schmaus
2023-03-10  5:48 Viorel Munteanu
2023-03-06 13:38 Florian Schmaus
2023-03-06 13:38 Florian Schmaus
2023-02-27 15:06 Florian Schmaus
2023-02-14 12:02 Florian Schmaus
2023-02-14 12:02 Florian Schmaus
2022-05-09 18:44 Andrew Ammerlaan
2022-03-11 10:57 Arthur Zamarin
2022-03-11 10:57 Arthur Zamarin
2022-02-24 11:10 Ronny Gutbrod
2022-02-20  8:46 Florian Schmaus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1739805130.6a75d8cca6d6807d8a6f561b27178d2c085f182a.davidroman@gentoo \
    --to=davidroman96@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox