Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/memtest86-bin/
Date: Fri, 30 Jul 2021 17:02:34
Message-Id: 1627664521.6a9bfeda542ecddea41c1eb848118cc14f0dbb9f.bkohler@gentoo
1 commit: 6a9bfeda542ecddea41c1eb848118cc14f0dbb9f
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 30 17:02:01 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 30 17:02:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a9bfeda
7
8 sys-apps/memtest86-bin: bump to 9.2
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 sys-apps/memtest86-bin/Manifest | 1 +
14 sys-apps/memtest86-bin/memtest86-bin-9.2.ebuild | 35 +++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/sys-apps/memtest86-bin/Manifest b/sys-apps/memtest86-bin/Manifest
18 index 289a9605431..dc451d36f87 100644
19 --- a/sys-apps/memtest86-bin/Manifest
20 +++ b/sys-apps/memtest86-bin/Manifest
21 @@ -1 +1,2 @@
22 DIST memtest86-bin-9.1.zip 8561760 BLAKE2B 89d72804d8d38b103f64a576b66fbc654ea81acdd04001922d4f6487ba0b0cde50d18a4446cedfdc540cc7c2315e5a1bca97f6c2c2691aea6b5fdd22df3402a5 SHA512 06fc070fc50d115e57309407569274fa4785383f377cb4e4246195f4af30fce531fcf1b866f3ce0a0a7c174902150c327e6f5158a4c59d708ca0ceeae12179d3
23 +DIST memtest86-bin-9.2.zip 8640127 BLAKE2B 99a51857f3625705a257edd19722ad662e03599722b9441c101886a22fa185fb284ee23d55a7e261fd442780e966350e291c9b0b39a08115c0c15a45ac3b4c22 SHA512 46e900376e9074162c71259d88b560c2d4a32f900750af3e5b301bea0e15c612788297fbd068939760551173fb4cfb11edff25586dd9bd1f69a6140c1b93da7f
24
25 diff --git a/sys-apps/memtest86-bin/memtest86-bin-9.2.ebuild b/sys-apps/memtest86-bin/memtest86-bin-9.2.ebuild
26 new file mode 100644
27 index 00000000000..97f87cab241
28 --- /dev/null
29 +++ b/sys-apps/memtest86-bin/memtest86-bin-9.2.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit mount-boot
37 +
38 +DESCRIPTION="Stand alone memory testing software for x86 computers"
39 +HOMEPAGE="http://www.memtest86.com/"
40 +SRC_URI="https://www.memtest86.com/downloads/memtest86-usb.zip -> ${P}.zip"
41 +
42 +LICENSE="PassMark-EULA"
43 +SLOT="0"
44 +KEYWORDS="-* ~amd64"
45 +IUSE=""
46 +
47 +BDEPEND="app-arch/unzip
48 + sys-fs/fatcat"
49 +
50 +S=${WORKDIR}
51 +
52 +src_unpack() {
53 + default
54 + fatcat memtest86-usb.img -O 1048576 -r /EFI/BOOT/BOOTX64.efi > ${PN}.efi || die
55 +}
56 +
57 +src_install() {
58 + insinto /boot
59 + doins ${PN}.efi
60 +
61 + exeinto /etc/grub.d/
62 + newexe "${FILESDIR}"/${PN}-grub.d 39_memtest86-bin
63 +
64 + dodoc MemTest86_User_Guide_UEFI.pdf
65 +}