summaryrefslogtreecommitdiff
path: root/sys-boot
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-31 07:07:47 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-31 07:07:47 +0000
commit766b0c9411409a0eb178e02fa2339e6571fe8187 (patch)
tree770a84132a540541f2d6552bcc9acf26e71be8bc /sys-boot
parent9ee4616fa447c8669b8ab45ae055f236de86e554 (diff)
downloadbaldeagleos-repo-766b0c9411409a0eb178e02fa2339e6571fe8187.tar.gz
baldeagleos-repo-766b0c9411409a0eb178e02fa2339e6571fe8187.tar.xz
baldeagleos-repo-766b0c9411409a0eb178e02fa2339e6571fe8187.zip
Adding metadata
Diffstat (limited to 'sys-boot')
-rw-r--r--sys-boot/grub/files/grub-2.14_rc1-configure.ac-avoid-bashisms.patch46
-rw-r--r--sys-boot/grub/grub-2.14_rc1.ebuild3
-rw-r--r--sys-boot/limine/Manifest2
-rw-r--r--sys-boot/limine/limine-10.2.1.ebuild (renamed from sys-boot/limine/limine-10.1.1.ebuild)0
4 files changed, 49 insertions, 2 deletions
diff --git a/sys-boot/grub/files/grub-2.14_rc1-configure.ac-avoid-bashisms.patch b/sys-boot/grub/files/grub-2.14_rc1-configure.ac-avoid-bashisms.patch
new file mode 100644
index 000000000000..f25b94c99ed2
--- /dev/null
+++ b/sys-boot/grub/files/grub-2.14_rc1-configure.ac-avoid-bashisms.patch
@@ -0,0 +1,46 @@
+https://bugs.gentoo.org/965315
+
+From 5196d40b6ec6ad75e84ab98e9f4a3d71211f0d56 Mon Sep 17 00:00:00 2001
+From: Lars Wendler <polynomial-c@gmx.de>
+Date: Thu, 30 Oct 2025 07:31:59 +0100
+Subject: [PATCH] configure.ac: avoid bashisms
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+or else configure check doesn't succeed with non-bash shell (e.g. dash):
+
+ checking whether to enable AMD64 as(1) feature detection... /var/tmp/portage/sys-boot/grub-2.14_rc1/work/grub-2.14~rc1/configure: 39176: test: xx86_64: unexpected operator
+ no
+
+and later build fails with
+
+ /var/tmp/portage/sys-boot/grub-2.14_rc1/work/grub-2.14~rc1/grub-core/lib/libgcrypt-grub/src/hwf-x86.c: In function ‘detect_x86_gnuc’:
+ /var/tmp/portage/sys-boot/grub-2.14_rc1/work/grub-2.14~rc1/grub-core/lib/libgcrypt-grub/src/hwf-x86.c:252:17: error: ‘HWF_INTEL_CPU’ undeclared (first use in this function)
+ 252 | result |= HWF_INTEL_CPU;
+ | ^~~~~~~~~~~~~
+
+and other corresponding HWF_INTEL_* definitions because HAVE_CPU_ARCH_X86 was
+erroneously not defined by configure script.
+
+Signed-off-by: Lars Wendler <polynomial-c@gmx.de>
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 8a72c078e..17937baf4 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -1150,7 +1150,7 @@ fi
+
+ # Implementation of the --disable-amd64-as-feature-detection switch.
+ AC_MSG_CHECKING([whether to enable AMD64 as(1) feature detection])
+-if test x$target_cpu == xx86_64 -a x$platform == xefi; then
++if test x$target_cpu = xx86_64 -a x$platform = xefi; then
+ CPPFLAGS_GCRY_ASM="-D__x86_64 -DHAVE_CPU_ARCH_X86"
+ AC_ARG_ENABLE(amd64-as-feature-detection,
+ AS_HELP_STRING([--disable-amd64-as-feature-detection],
+--
+2.51.1
+
diff --git a/sys-boot/grub/grub-2.14_rc1.ebuild b/sys-boot/grub/grub-2.14_rc1.ebuild
index 4bd3314711d8..180f3ffb951a 100644
--- a/sys-boot/grub/grub-2.14_rc1.ebuild
+++ b/sys-boot/grub/grub-2.14_rc1.ebuild
@@ -16,8 +16,8 @@ EAPI=8
# If any of the above applies to a user patch, the user should set the
# corresponding variable in make.conf or the environment.
+GRUB_AUTORECONF=1
if [[ ${PV} == 9999 ]]; then
- GRUB_AUTORECONF=1
GRUB_BOOTSTRAP=1
fi
@@ -67,6 +67,7 @@ PATCHES=(
"${FILESDIR}"/gfxpayload.patch
"${FILESDIR}"/grub-2.02_beta2-KERNEL_GLOBS.patch
"${FILESDIR}"/grub-2.06-test-words.patch
+ "${FILESDIR}"/grub-2.14_rc1-configure.ac-avoid-bashisms.patch
)
DEJAVU_VER=2.37
diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
index 1ffa4c34be93..63ee23002caa 100644
--- a/sys-boot/limine/Manifest
+++ b/sys-boot/limine/Manifest
@@ -1 +1 @@
-DIST limine-10.1.1.tar.gz 569748 BLAKE2B 56e2fbb7940dc4f4afef691a0d5cc9c298f0366411ce1d37163783da967545a0d967c1aa4217972f38c35a1bee2f970a966bf4afea13b2848889af4e4f80cb54 SHA512 3d79c3f65188d891f2567073a838c582ffb8b5759c083e9c95d994e5d6ab487c4602575d262984c62f22c00b9c65c49381738acf4b0721d367435c7ba2f4b90e
+DIST limine-10.2.1.tar.gz 571418 BLAKE2B 1dd651a9ea7fe2c06fe20244404e9969d146b415df120d3fa4bd13d9379d1ce8cfdced6ba02120e360d49d8c3de94473b65bdf83c832b35cd6cd0d34f4ec3473 SHA512 4ef0464142356e2aa507feabda0d98bb35679f8a177640cbce4d0cf25a50f183df618c2272468d3affcfb515bdf6f677a53871312e510b9d5ff984e8672230c9
diff --git a/sys-boot/limine/limine-10.1.1.ebuild b/sys-boot/limine/limine-10.2.1.ebuild
index fe63e8fac3c8..fe63e8fac3c8 100644
--- a/sys-boot/limine/limine-10.1.1.ebuild
+++ b/sys-boot/limine/limine-10.2.1.ebuild