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: Mon, 29 May 2023 20:57:28 +0000 (UTC) [thread overview]
Message-ID: <1685390881.24937797da3e2b5cbe7d939fc17f4585ac1d4d7e.flow@gentoo> (raw)
commit: 24937797da3e2b5cbe7d939fc17f4585ac1d4d7e
Author: Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 20:08:01 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon May 29 20:08:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24937797
sys-boot/limine: add 4.20230529.0
Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>
sys-boot/limine/Manifest | 1 +
sys-boot/limine/limine-4.20230529.0.ebuild | 43 ++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 12c8e3f3f..39b8a33df 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -5,3 +5,4 @@ DIST limine-4.20230422.0.tar.xz 891604 BLAKE2B a4fcefb33d45a67a94a4f6ecb8ee49133
DIST limine-4.20230428.0.tar.xz 892396 BLAKE2B 951e142ea457f958ac08d2c4c9b4fd78090fde5e8ae67ef7b629fcaa18a5b667299f8af713a160e2aa0924a4fb81d6a67df9f56dc917884c56c9ad713b3baf7d SHA512 3e566803d784aa3cd8027cb9f942fab6c6a8cd8be42415a0bdfb51b9f1543d0c649ec9f5a90e140a0d4af2355e5b8703964b59c0734d09e4dc64308ceb0141e5
DIST limine-4.20230503.0.tar.xz 966088 BLAKE2B d268a1e6ff6c0da46d457ba077227f8552a272992d6eb399241e57bfd7de2321f44e616cf2cade05fae70c55c3cdea8d122b09939202ade153c18bae72393eb3 SHA512 7808d81d6ed1c135d55199521c7490dfa0bfd3fc134e7cde4bedbc133494a906d85d1b0b7626b3e541cc67da832034e85364c893b260adfd7fb1c55f0e056e88
DIST limine-4.20230514.0.tar.xz 966160 BLAKE2B 6556adc6c2efffb2876c103b4428f42b57f74d25b7d901a573b7d1b20d84665a336b8bb8bbc84b936a9bf52795fa08a5af769f541736b89faf5306a4ec4ba654 SHA512 8ea04c54d95309185e91ee28cc7f6c64e948d29aff70626372328d59304a21efd0d2a7adf20fb38607b69c2863be6817c2ea768c8129e3f3305e56a4b1585886
+DIST limine-4.20230529.0.tar.xz 961384 BLAKE2B 3345fb306f4c215719e0839200633e7ed46e4aa845918464d79c6a65c5a0d325305e1372ebcac58c9e28e37193c49dc3cc084f1ed584cda1c0004ee6564bf835 SHA512 bf679b8f833fbe3b6c3926da0b4cda066f7050d87cf29c59b1ca2998d05b15b7d5539f289e9871eb6e185caadd5ace9d994839ff4fbcaadfc28c7e16d61c7261
diff --git a/sys-boot/limine/limine-4.20230529.0.ebuild b/sys-boot/limine/limine-4.20230529.0.ebuild
new file mode 100644
index 000000000..5a72ed2ff
--- /dev/null
+++ b/sys-boot/limine/limine-4.20230529.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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.xz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+bios +bios-pxe +bios-cd +cd-efi +uefi32 +uefi64 +uefiaa64"
+
+MY_LLVM_TARGETS="AArch64 ARM X86"
+MY_LLVM_FLAGS="llvm_targets_${MY_LLVM_TARGETS// /(-),llvm_targets_}(-)"
+
+BDEPEND="
+ app-alternatives/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 uefi32 uefi-ia32)"
+ "$(use_enable uefi64 uefi-x86-64)"
+ "$(use_enable uefiaa64 uefi-aarch64)"
+ "$(use_enable cd-efi uefi-cd)"
+ )
+
+ TOOLCHAIN_FOR_TARGET=llvm \
+ econf "${myconf[@]}"
+}
next reply other threads:[~2023-05-29 20:57 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-29 20:57 Florian Schmaus [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-09 16:30 [gentoo-commits] repo/proj/guru:master commit in: sys-boot/limine/ 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-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=1685390881.24937797da3e2b5cbe7d939fc17f4585ac1d4d7e.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