Gentoo Archives: gentoo-commits

From: Arsen Arsenovic <arsen@××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-boot/limine/
Date: Sun, 20 Feb 2022 19:36:03
Message-Id: 1645385757.3e1f05a6c3489eade3063c0f0c840ab38280de0d.arsen@gentoo
1 commit: 3e1f05a6c3489eade3063c0f0c840ab38280de0d
2 Author: Arsen Arsenović <arsen <AT> aarsen <DOT> me>
3 AuthorDate: Sun Feb 20 19:31:20 2022 +0000
4 Commit: Arsen Arsenovic <arsen <AT> aarsen <DOT> me>
5 CommitDate: Sun Feb 20 19:35:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3e1f05a6
7
8 sys-boot/limine: bump to 2.58.1
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Arsen Arsenović <arsen <AT> aarsen.me>
12
13 sys-boot/limine/Manifest | 1 +
14 sys-boot/limine/limine-2.85.1.ebuild | 37 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest
18 index 7f5ba2c9f..faf72290b 100644
19 --- a/sys-boot/limine/Manifest
20 +++ b/sys-boot/limine/Manifest
21 @@ -1,2 +1,3 @@
22 DIST limine-2.84.2.tar.xz 1561312 BLAKE2B f46f0e37d581f7360377ad1582183bd89bc7eca57c7c11d388f02f6e8d1cf257f0150e15dc78390833974f7eb8bcaa8d3b49718fb9d49cb3edaf981f777f26cc SHA512 5fef4b7577078f2dd34d9a5bdaa4be1bebeb658c590d7cff4fa8aef73bbadab1a29983b949701a3103519c8a5f11b91ab1522b7b59315fc677b3a3b3d5e3eb91
23 +DIST limine-2.85.1.tar.xz 1562640 BLAKE2B 3f2070023d73c904db5fb7404168230be6a9f853facd4752eb5bfb00ac21d4bb32c1b05619ccc6049dd9348f4a652cf9967eb4e5ec52943fee5fbc587a21c62e SHA512 9b36d1c84331a3ed44222c1fd9bd6152d49ebe546b4fe7adce0cc21a4e56908639fc42a5040d530287452a88bb420ad8fa420c2af52de259598a868fdbdeb2ba
24 DIST limine-2.85.tar.xz 1562456 BLAKE2B 00b0b5efd793f8ca32948529d2f06804fbae70604419c80b6a70f282b48a5a259ba9677ada81bca152fbcf86bdddac33fb63e4b8792d9cd5619649d9ff1523ee SHA512 84af1613aa335c34afcc118d0a5a4307c0a82352ea68036fbf2c5be52d156b6254688cf417f47c1685a5f84d596cb7ed8dbebc4243bdd6070039847a5dc69e02
25
26 diff --git a/sys-boot/limine/limine-2.85.1.ebuild b/sys-boot/limine/limine-2.85.1.ebuild
27 new file mode 100644
28 index 000000000..555b21b16
29 --- /dev/null
30 +++ b/sys-boot/limine/limine-2.85.1.ebuild
31 @@ -0,0 +1,37 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +WANT_LIBTOOL=none
38 +inherit autotools toolchain-funcs
39 +
40 +DESCRIPTION="Limine is a modern, advanced x86/x86_64 BIOS/UEFI multiprotocol bootloader."
41 +HOMEPAGE="https://limine-bootloader.org/"
42 +SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.xz"
43 +
44 +LICENSE="BSD-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="+eltorito-efi"
48 +
49 +BDEPEND="
50 + sys-apps/findutils
51 + dev-lang/nasm
52 + app-arch/gzip
53 + eltorito-efi? ( sys-fs/mtools )
54 +"
55 +
56 +src_configure() {
57 + local myconf=(
58 + "$(use_enable eltorito-efi)"
59 + )
60 +
61 + LIMINE_LD="$(tc-getLD)" \
62 + LIMINE_AR="$(tc-getAR)" \
63 + LIMINE_AS="$(tc-getAS)" \
64 + LIMINE_OBJCOPY="$(tc-getOBJCOPY)" \
65 + LIMINE_OBJDUMP="$(tc-getOBJDUMP)" \
66 + LIMINE_READELF="$(tc-getREADELF)" \
67 + econf "${myconf[@]}"
68 +}