public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-03  0:45 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-03  0:45 UTC (permalink / raw
  To: gentoo-commits

commit:     66f5d72b4e4344bfffc1691f916e80729128f38c
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Sep 28 12:03:16 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct  3 00:43:20 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66f5d72b

sys-boot/limine: new package, add 10.0.1

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/43971
Closes: https://github.com/gentoo/gentoo/pull/43971
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-boot/limine/Manifest             |  1 +
 sys-boot/limine/limine-10.0.1.ebuild | 48 +++++++++++++++++++++++++++++++++++
 sys-boot/limine/metadata.xml         | 49 ++++++++++++++++++++++++++++++++++++
 3 files changed, 98 insertions(+)

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
new file mode 100644
index 000000000000..c479ec43eb55
--- /dev/null
+++ b/sys-boot/limine/Manifest
@@ -0,0 +1 @@
+DIST limine-10.0.1.tar.gz 569294 BLAKE2B 34a559072c103e1d56c4b9d718198ba8591b51b9ef943266810c44067549e51cc3e5c002cd90aa8d075f04ecfc79d529b9b5f675a84796a04a4555088bddd9f5 SHA512 38de027c9f5dd242f77f30dfee22f0a8ebc7d8a5f8532329df0b892efb92b1c7e171b0385645ef1964c545139910d2ba2e217a2fb23258c54e000583abe1c5a1

diff --git a/sys-boot/limine/limine-10.0.1.ebuild b/sys-boot/limine/limine-10.0.1.ebuild
new file mode 100644
index 000000000000..9b2376e848ba
--- /dev/null
+++ b/sys-boot/limine/limine-10.0.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LLVM_COMPAT=( {16..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 +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)"
+	)
+
+	econf "${myconf[@]}"
+}

diff --git a/sys-boot/limine/metadata.xml b/sys-boot/limine/metadata.xml
new file mode 100644
index 000000000000..c33539c0e733
--- /dev/null
+++ b/sys-boot/limine/metadata.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person" proxied="yes">
+    <email>kacper.slominski72@gmail.com</email>
+    <name>Kacper Słomiński</name>
+  </maintainer>
+  <maintainer type="person" proxied="proxy">
+    <email>sam@gentoo.org</email>
+    <name>Sam James</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">limine-bootloader/limine</remote-id>
+    <remote-id type="codeberg">Limine/Limine</remote-id>
+    <bugs-to>https://codeberg.org/Limine/Limine/issues</bugs-to>
+    <changelog>https://codeberg.org/Limine/Limine/src/branch/trunk/ChangeLog</changelog>
+  </upstream>
+  <use>
+    <flag name="uefi32">
+      Enable 32-bit UEFI support.
+    </flag>
+    <flag name="uefi64">
+      Enable 64-bit UEFI support.
+    </flag>
+    <flag name="uefiaa64">
+      Enable AArch64 UEFI support.
+    </flag>
+    <flag name="uefirv64">
+      Enable 64-bit RISC-V UEFI support.
+    </flag>
+    <flag name="uefiloong64">
+      Enable 64-bit LoongArch UEFI support.
+    </flag>
+    <flag name="cd-efi">
+        Enable building cd-efi.bin using <pkg>sys-fs/mtools</pkg>.
+        This flag was previously known as eltorito-efi.
+    </flag>
+
+    <flag name="bios">
+      Enable BIOS/MBR boot support.
+    </flag>
+    <flag name="bios-pxe">
+      Enables BIOS PXE boot support.
+    </flag>
+    <flag name="bios-cd">
+      Enables BIOS boot support for CDs.
+    </flag>
+  </use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-05 23:26 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-05 23:26 UTC (permalink / raw
  To: gentoo-commits

commit:     6001c26b7966eadae0aaff59f34f965f2086c9b5
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Oct  5 21:08:15 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  5 23:24:23 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6001c26b

sys-boot/limine: Clean up USE flag names and descriptions

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44054
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-boot/limine/limine-10.0.1.ebuild | 16 ++++++++--------
 sys-boot/limine/metadata.xml         | 25 ++++++++++++-------------
 2 files changed, 20 insertions(+), 21 deletions(-)

diff --git a/sys-boot/limine/limine-10.0.1.ebuild b/sys-boot/limine/limine-10.0.1.ebuild
index 9b2376e848ba..cfe638b132ab 100644
--- a/sys-boot/limine/limine-10.0.1.ebuild
+++ b/sys-boot/limine/limine-10.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://codeberg.org/Limine/Limine/releases/download/v${PV}/limine-${PV
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+bios +bios-pxe +bios-cd +cd-efi +uefi32 +uefi64 +uefiaa64 +uefirv64 +uefiloong64"
+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_}(-)"
@@ -27,7 +27,7 @@ BDEPEND="
 		llvm-core/clang:\${LLVM_SLOT}[${MY_LLVM_FLAGS}]
 		llvm-core/lld:\${LLVM_SLOT}
 	")
-	cd-efi? ( sys-fs/mtools )
+	uefi-cd? ( sys-fs/mtools )
 "
 
 src_configure() {
@@ -36,12 +36,12 @@ src_configure() {
 		"$(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)"
+		"$(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[@]}"

diff --git a/sys-boot/limine/metadata.xml b/sys-boot/limine/metadata.xml
index c33539c0e733..e9caf5314592 100644
--- a/sys-boot/limine/metadata.xml
+++ b/sys-boot/limine/metadata.xml
@@ -16,34 +16,33 @@
     <changelog>https://codeberg.org/Limine/Limine/src/branch/trunk/ChangeLog</changelog>
   </upstream>
   <use>
-    <flag name="uefi32">
-      Enable 32-bit UEFI support.
+    <flag name="uefi-ia32">
+      Enable IA32 (32-bit x86) UEFI support.
     </flag>
-    <flag name="uefi64">
-      Enable 64-bit UEFI support.
+    <flag name="uefi-x86-64">
+      Enable x86-64 UEFI support.
     </flag>
-    <flag name="uefiaa64">
+    <flag name="uefi-aarch64">
       Enable AArch64 UEFI support.
     </flag>
-    <flag name="uefirv64">
+    <flag name="uefi-riscv64">
       Enable 64-bit RISC-V UEFI support.
     </flag>
-    <flag name="uefiloong64">
+    <flag name="uefi-loongarch64">
       Enable 64-bit LoongArch UEFI support.
     </flag>
-    <flag name="cd-efi">
-        Enable building cd-efi.bin using <pkg>sys-fs/mtools</pkg>.
-        This flag was previously known as eltorito-efi.
+    <flag name="uefi-cd">
+        Enable building limine-uefi-cd.bin using <pkg>sys-fs/mtools</pkg>.
     </flag>
 
     <flag name="bios">
-      Enable BIOS/MBR boot support.
+      Enable legacy x86 BIOS/MBR boot support.
     </flag>
     <flag name="bios-pxe">
-      Enables BIOS PXE boot support.
+      Enables legacy x86 BIOS PXE boot support.
     </flag>
     <flag name="bios-cd">
-      Enables BIOS boot support for CDs.
+      Enables legacy x86 BIOS boot support for CDs.
     </flag>
   </use>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-05 23:26 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-05 23:26 UTC (permalink / raw
  To: gentoo-commits

commit:     fe409864625554b81a26d76481fb239b546e4b76
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Oct  5 21:10:47 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  5 23:24:24 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe409864

sys-boot/limine: drop 10.0.1

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44054
Closes: https://github.com/gentoo/gentoo/pull/44054
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-boot/limine/Manifest             |  1 -
 sys-boot/limine/limine-10.0.1.ebuild | 48 ------------------------------------
 2 files changed, 49 deletions(-)

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 558cb3913f15..6a3455ece487 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1,2 +1 @@
-DIST limine-10.0.1.tar.gz 569294 BLAKE2B 34a559072c103e1d56c4b9d718198ba8591b51b9ef943266810c44067549e51cc3e5c002cd90aa8d075f04ecfc79d529b9b5f675a84796a04a4555088bddd9f5 SHA512 38de027c9f5dd242f77f30dfee22f0a8ebc7d8a5f8532329df0b892efb92b1c7e171b0385645ef1964c545139910d2ba2e217a2fb23258c54e000583abe1c5a1
 DIST limine-10.1.0.tar.gz 569587 BLAKE2B d8efab8a8fb84fa47378becf90e1b3bac9f7870b83195e612b7dec95b94b894daa0164ea5ef5313ab96cc1bd22ed19f71d4c15ad3062472ab09a51dd0bf2f4f8 SHA512 0f9038075dd16b7d7f0070004795ea1727a2995497d959775f76d4d5d0e56c55b63a4dcc0599175b852a4ae150a499c9919956351f78e1616af3fa955c7d05c4

diff --git a/sys-boot/limine/limine-10.0.1.ebuild b/sys-boot/limine/limine-10.0.1.ebuild
deleted file mode 100644
index cfe638b132ab..000000000000
--- a/sys-boot/limine/limine-10.0.1.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=( {16..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[@]}"
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-05 23:26 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-05 23:26 UTC (permalink / raw
  To: gentoo-commits

commit:     d3fcd05fcaa332f09b68c6f5bc2cbd6bcc4982f7
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Oct  5 21:10:09 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct  5 23:24:23 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3fcd05f

sys-boot/limine: add 10.1.0

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44054
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index c479ec43eb55..558cb3913f15 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1 +1,2 @@
 DIST limine-10.0.1.tar.gz 569294 BLAKE2B 34a559072c103e1d56c4b9d718198ba8591b51b9ef943266810c44067549e51cc3e5c002cd90aa8d075f04ecfc79d529b9b5f675a84796a04a4555088bddd9f5 SHA512 38de027c9f5dd242f77f30dfee22f0a8ebc7d8a5f8532329df0b892efb92b1c7e171b0385645ef1964c545139910d2ba2e217a2fb23258c54e000583abe1c5a1
+DIST limine-10.1.0.tar.gz 569587 BLAKE2B d8efab8a8fb84fa47378becf90e1b3bac9f7870b83195e612b7dec95b94b894daa0164ea5ef5313ab96cc1bd22ed19f71d4c15ad3062472ab09a51dd0bf2f4f8 SHA512 0f9038075dd16b7d7f0070004795ea1727a2995497d959775f76d4d5d0e56c55b63a4dcc0599175b852a4ae150a499c9919956351f78e1616af3fa955c7d05c4

diff --git a/sys-boot/limine/limine-10.1.0.ebuild b/sys-boot/limine/limine-10.1.0.ebuild
new file mode 100644
index 000000000000..fe63e8fac3c8
--- /dev/null
+++ b/sys-boot/limine/limine-10.1.0.ebuild
@@ -0,0 +1,48 @@
+# 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[@]}"
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-19 16:36 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-19 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     606826e70b5a524b3ab5e9c7399e0f1995eb19ee
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Oct 19 09:10:06 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 19 16:35:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=606826e7

sys-boot/limine: add 10.1.1

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44240
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 6a3455ece487..c8e0dba8aeb1 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1 +1,2 @@
 DIST limine-10.1.0.tar.gz 569587 BLAKE2B d8efab8a8fb84fa47378becf90e1b3bac9f7870b83195e612b7dec95b94b894daa0164ea5ef5313ab96cc1bd22ed19f71d4c15ad3062472ab09a51dd0bf2f4f8 SHA512 0f9038075dd16b7d7f0070004795ea1727a2995497d959775f76d4d5d0e56c55b63a4dcc0599175b852a4ae150a499c9919956351f78e1616af3fa955c7d05c4
+DIST limine-10.1.1.tar.gz 569748 BLAKE2B 56e2fbb7940dc4f4afef691a0d5cc9c298f0366411ce1d37163783da967545a0d967c1aa4217972f38c35a1bee2f970a966bf4afea13b2848889af4e4f80cb54 SHA512 3d79c3f65188d891f2567073a838c582ffb8b5759c083e9c95d994e5d6ab487c4602575d262984c62f22c00b9c65c49381738acf4b0721d367435c7ba2f4b90e

diff --git a/sys-boot/limine/limine-10.1.1.ebuild b/sys-boot/limine/limine-10.1.1.ebuild
new file mode 100644
index 000000000000..fe63e8fac3c8
--- /dev/null
+++ b/sys-boot/limine/limine-10.1.1.ebuild
@@ -0,0 +1,48 @@
+# 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[@]}"
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/
@ 2025-10-19 16:36 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-10-19 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     1ecdf7fe2a009846ab963cb653b261300cb92a06
Author:     Kacper Słomiński <kacper.slominski72 <AT> gmail <DOT> com>
AuthorDate: Sun Oct 19 09:11:05 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 19 16:35:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ecdf7fe

sys-boot/limine: drop 10.1.0

Signed-off-by: Kacper Słomiński <kacper.slominski72 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44240
Closes: https://github.com/gentoo/gentoo/pull/44240
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-boot/limine/Manifest             |  1 -
 sys-boot/limine/limine-10.1.0.ebuild | 48 ------------------------------------
 2 files changed, 49 deletions(-)

diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index c8e0dba8aeb1..1ffa4c34be93 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1,2 +1 @@
-DIST limine-10.1.0.tar.gz 569587 BLAKE2B d8efab8a8fb84fa47378becf90e1b3bac9f7870b83195e612b7dec95b94b894daa0164ea5ef5313ab96cc1bd22ed19f71d4c15ad3062472ab09a51dd0bf2f4f8 SHA512 0f9038075dd16b7d7f0070004795ea1727a2995497d959775f76d4d5d0e56c55b63a4dcc0599175b852a4ae150a499c9919956351f78e1616af3fa955c7d05c4
 DIST limine-10.1.1.tar.gz 569748 BLAKE2B 56e2fbb7940dc4f4afef691a0d5cc9c298f0366411ce1d37163783da967545a0d967c1aa4217972f38c35a1bee2f970a966bf4afea13b2848889af4e4f80cb54 SHA512 3d79c3f65188d891f2567073a838c582ffb8b5759c083e9c95d994e5d6ab487c4602575d262984c62f22c00b9c65c49381738acf4b0721d367435c7ba2f4b90e

diff --git a/sys-boot/limine/limine-10.1.0.ebuild b/sys-boot/limine/limine-10.1.0.ebuild
deleted file mode 100644
index fe63e8fac3c8..000000000000
--- a/sys-boot/limine/limine-10.1.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[@]}"
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-10-19 16:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-05 23:26 [gentoo-commits] repo/gentoo:master commit in: sys-boot/limine/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2025-10-19 16:36 Sam James
2025-10-19 16:36 Sam James
2025-10-05 23:26 Sam James
2025-10-05 23:26 Sam James
2025-10-03  0:45 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox