diff options
author | Ben Kohler <bkohler@gentoo.org> | 2022-09-30 07:58:01 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2022-09-30 07:58:09 -0500 |
commit | 7eeb5ce7714609aa90710776f56000daf6c220a0 (patch) | |
tree | 1d94683f9b1467204c6de2ce46d528297d213f60 /sys-apps | |
parent | sys-apps/memtest86-bin: add 10.0 (diff) | |
download | gentoo-7eeb5ce7714609aa90710776f56000daf6c220a0.tar.gz gentoo-7eeb5ce7714609aa90710776f56000daf6c220a0.tar.bz2 gentoo-7eeb5ce7714609aa90710776f56000daf6c220a0.zip |
sys-apps/memtest86-bin: drop 9.4
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/memtest86-bin/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/memtest86-bin/memtest86-bin-9.4.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/sys-apps/memtest86-bin/Manifest b/sys-apps/memtest86-bin/Manifest index 677bf41a040c..a076bb1cc9cd 100644 --- a/sys-apps/memtest86-bin/Manifest +++ b/sys-apps/memtest86-bin/Manifest @@ -1,2 +1 @@ DIST memtest86-bin-10.0.zip 9369041 BLAKE2B c5792b45ee0b9e32013ad64d17e43d6da4ffd80160a913fbd3b82390dd1d7d5e6ca226730fffab01ee6cb36d66b2a78e66d0bfd7a1dd4b07546550e268bc18f5 SHA512 b08e6cf3cb9448d5ac7fb4ba7c6338d2037caebd16710f4c2897cfe73766d7dfba7a0012b1ec5acbc546932e989c2a82bec1428295ea0bf4702e49d75e5b03e1 -DIST memtest86-bin-9.4.zip 8760207 BLAKE2B a4db434f9ce049d14b7a7bd98ed88ecad5492e4541d564520eba60b9c37d40d22bdf27ec92f05f3601453647ee88486caf51259bf90a72954b29c8eecbd36ca9 SHA512 c5a6183e2b66fe6023a7478ddfecf94dab03e99272d916fe156f05e2edcc2e70c7cd12feff474381571213bd6b07c76b78dd54d07f2db011cbe3127dac2dc222 diff --git a/sys-apps/memtest86-bin/memtest86-bin-9.4.ebuild b/sys-apps/memtest86-bin/memtest86-bin-9.4.ebuild deleted file mode 100644 index 9e0a77415687..000000000000 --- a/sys-apps/memtest86-bin/memtest86-bin-9.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit mount-boot - -DESCRIPTION="Stand alone memory testing software for x86 computers" -HOMEPAGE="http://www.memtest86.com/" -SRC_URI="https://www.memtest86.com/downloads/memtest86-usb.zip -> ${P}.zip" - -LICENSE="PassMark-EULA" -RESTRICT="mirror bindist" -SLOT="0" -KEYWORDS="-* ~amd64" -IUSE="" - -BDEPEND="app-arch/unzip - sys-fs/fatcat" - -S=${WORKDIR} - -src_unpack() { - default - fatcat -O 1048576 -r /EFI/BOOT/BOOTX64.efi memtest86-usb.img > ${PN}.efi || die -} - -src_install() { - insinto /boot - doins ${PN}.efi - - exeinto /etc/grub.d/ - newexe "${FILESDIR}"/${PN}-grub.d 39_memtest86-bin - - dodoc MemTest86_User_Guide_UEFI.pdf -} - -pkg_postinst() { - mount-boot_pkg_postinst - - if [ ! -e /sys/firmware/efi ]; then - ewarn "WARNING: You appear to be booted in BIOS mode but ${PN} is an EFI-only tool." - fi -} |