From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/
Date: Tue, 14 Feb 2023 12:02:45 +0000 (UTC) [thread overview]
Message-ID: <1676367480.bba9194644cefba67c1f466243b38b92d672ecad.flow@gentoo> (raw)
commit: bba9194644cefba67c1f466243b38b92d672ecad
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 13 20:17:03 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 09:38:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bba91946
sys-boot/limine: add 4.20230212.1
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
sys-boot/limine/Manifest | 1 +
sys-boot/limine/limine-4.20230212.1.ebuild | 57 ++++++++++++++++++++++++++++++
sys-boot/limine/metadata.xml | 6 ++++
3 files changed, 64 insertions(+)
diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 1a3f7d682..5b31c9a5d 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -3,3 +3,4 @@ DIST limine-3.0.tar.xz 3164168 BLAKE2B fedd161ec8957fd2b3245d8a7a6bffaeab4fa7629
DIST limine-3.4.3.tar.xz 3165344 BLAKE2B fe2afef5c960d9cfb78883ebe02d0fab754e40b466630ec3959d77e3f62f533e94d0ba3ecfda06688b8705140514c9aa4bb5c9e3c91ef884879e9e75c24fcd61 SHA512 986f95e3a12b5d4ae5f166f4d7388aa5feb12fa4b03f0acb8aa00a7494fbd37e53961b5afc2a85b1f399a742a78b72f70c9268792f652a64a491a142d3260256
DIST limine-3.4.4.tar.xz 3166260 BLAKE2B 67645f3461c43b7d600eb9353d8505d2b61abea285eaf4498020c6e19b59b18eccda01316210a918dff712548ad5c08e937c33a5e6ff88bb8a81cc584ae11d87 SHA512 cf5b781963e98379bd8b53819c3afd1e4160f8f088f257131e392aa76f7f7ef71c3a67ae7274514afe30e52f06eb3c52d24a86a482ca6631c4ebddb692be6794
DIST limine-3.4.5.tar.xz 3166660 BLAKE2B 55ddb79af352c1e515b0d423a4e41c50c2ca67f7c3715182c27696c1f41cb271d2d7d967b41430f7782f183899675c3e6c7622805a2953d6e4459cd33ed1d343 SHA512 cc72d3612e757ad79aa5801540581e8e8de568d5cb60b3e4edd6e68ccba40f2a42ceaa6b649aa1c60895be1c528c6e5892a3dfc3791b78d9d3780baf47b98eb0
+DIST limine-4.20230212.1.tar.xz 725084 BLAKE2B d602c70d2d716f7025d81ead55139f3a964f23dbf55a30bc74d11ef920cc698e3e519400df119f4b718e654d176c5b3fb23ac08fa506655c331f5866771fe541 SHA512 416b43d205b8034bb0cbd5ffd0eda9cc972ca5718c71ec5253275c3611b4560a92f99a0fa7c207ff9fb35d2636826cd51d0088e1cda7f1d5e83b7d31108c6f01
diff --git a/sys-boot/limine/limine-4.20230212.1.ebuild b/sys-boot/limine/limine-4.20230212.1.ebuild
new file mode 100644
index 000000000..a87c8f4a0
--- /dev/null
+++ b/sys-boot/limine/limine-4.20230212.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Limine is a modern, advanced x86/x86_64 BIOS/UEFI multiprotocol bootloader"
+HOMEPAGE="https://limine-bootloader.org/"
+SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.xz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+bios +bios-pxe +bios-cd +limine-deploy +uefi +cd-efi +uefi32 +uefi64 +uefiaa64"
+REQUIRED_USE="
+ uefi32? ( uefi )
+ uefi64? ( uefi )
+ uefiaa64? ( uefi )
+ cd-efi? ( uefi )
+ uefi? ( || ( uefi32 uefi64 uefiaa64 cd-efi ) )
+
+ bios-pxe? ( bios )
+ bios-cd? ( bios )
+ limine-deploy? ( bios )
+ bios? ( || ( bios-pxe bios-cd limine-deploy ) )
+"
+
+MY_LLVM_TARGETS="AArch64 ARM X86"
+MY_LLVM_FLAGS="llvm_targets_${MY_LLVM_TARGETS// /(-),llvm_targets_}(-)"
+
+BDEPEND="
+ app-arch/gzip
+ dev-lang/nasm
+ sys-apps/findutils
+ sys-devel/clang[${MY_LLVM_FLAGS}]
+ sys-devel/lld
+ sys-devel/llvm[${MY_LLVM_FLAGS}]
+
+ cd-efi? ( sys-fs/mtools )
+"
+
+src_configure() {
+ local myconf=(
+ "$(use_enable bios)"
+ "$(use_enable bios-cd)"
+ "$(use_enable bios-pxe)"
+ "$(use_enable limine-deploy)"
+
+ "$(use_enable uefi)"
+ "$(use_enable uefi32 uefi-ia32)"
+ "$(use_enable uefi64 uefi-x86-64)"
+ "$(use_enable uefiaa64 uefi-aarch64)"
+ "$(use_enable cd-efi)"
+ )
+
+ CROSS_TOOLCHAIN=llvm \
+ econf "${myconf[@]}"
+}
diff --git a/sys-boot/limine/metadata.xml b/sys-boot/limine/metadata.xml
index 62b2da5b8..3695b8c49 100644
--- a/sys-boot/limine/metadata.xml
+++ b/sys-boot/limine/metadata.xml
@@ -5,6 +5,9 @@
<email>arsen@aarsen.me</email>
<name>Arsen Arsenović</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">limine-bootloader/limine</remote-id>
+ </upstream>
<use>
<flag name="uefi">
Enable UEFI support.
@@ -15,6 +18,9 @@
<flag name="uefi64">
Enable 64-bit UEFI support.
</flag>
+ <flag name="uefiaa64">
+ Enable AArch64 UEFI support.
+ </flag>
<flag name="eltorito-efi">
Enable building eltorito-efi.bin using <pkg>sys-fs/mtools</pkg>.
</flag>
next reply other threads:[~2023-02-14 12:02 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-14 12:02 Florian Schmaus [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-18 9:25 [gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/ David Roman
2025-03-15 10:36 Haelwenn Monnier
2025-03-01 19:19 Haelwenn Monnier
2025-02-18 14:01 David Roman
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
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=1676367480.bba9194644cefba67c1f466243b38b92d672ecad.flow@gentoo \
--to=flow@gentoo.org \
--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