sys-apps/superdiag: drop 1.11.0.20251106

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2026-08-27 12:15:53 +02:00
parent a561ed3696
commit ef00a6e826
2 changed files with 0 additions and 68 deletions

View File

@@ -1,2 +1 @@
DIST SuperDiag_1.11.0_20251106.zip 12210450 BLAKE2B d33e88de0dc9d23970639cf53ea2b66d1580ae608cc4f3e20e6fa8e50def9d5bb5325d274c98ea5df0a02d2575a5ff9e481d7723ff3dc28589120e3b6563901f SHA512 67593cbd0e869e14a96bcda810e8b707d2060dc6bc3f130d338f78224a3bcd5155a5f900ed52a3d00b7460d49490e047823eb935b9d9e7a942821a42d0af59e3
DIST SuperDiag_1.12.0_20260810.zip 12405160 BLAKE2B b9b92fdc5fdae4bd968e02bf2c87b326786e9bf48505214b539069afd0e5e1792a8d0492ad7fea6f71bff1c470daff58041036608d125dcaea2c297efc2673a2 SHA512 1be2609cabee89ebf7adc6de7079cde0cb98ed1a7ec633929e33f1ea7dfc17f4861a5a892cd3cbd450ce1b1d482dcff15f1f725e0d6bf0667536fcc0872db869

View File

@@ -1,67 +0,0 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DOWNLOAD_ID="1035"
MY_DATE="$(ver_cut 4)"
MY_PN="SuperDiag"
MY_PV="$(ver_cut 1-3)"
DESCRIPTION="Provides the capability to determine the health of Supermicro servers components"
HOMEPAGE="https://www.supermicro.com"
SRC_URI="https://www.supermicro.com/Bios/sw_download/1035/${MY_PN}_${MY_PV}_${MY_DATE}.zip"
S="${WORKDIR}"
LICENSE="supermicro"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
IUSE="iso usb"
BDEPEND="app-arch/unzip"
RESTRICT="bindist mirror"
src_unpack() {
unpack ${A}
use arm64 && SMCARCH="ARM"
use amd64 && SMCARCH="X86"
unzip "${SMCARCH}/${MY_PN}_${MY_PV}_${MY_DATE}_For_${SMCARCH}.zip"
if use iso; then
unzip Diagnose_Remotely/ISOFor${MY_PN}_${MY_PV}.zip -d iso || die
fi
if use usb; then
unzip Diagnose_Remotely/USBFor${MY_PN}_${MY_PV}.zip -d usb || die
fi
}
src_install() {
insinto /usr/share/superdiag
doins startup.nsh ${MY_PN}.efi
local DOCS=(
"Supermicro Super Diagnostics Offline readme.txt"
"Supermicro Super Diagnostics Offline User Guide V${MY_PV}.pdf"
)
dodoc "${DOCS[@]}"
if use iso; then
insinto /usr/share/superdiag/ISO
doins iso/${MY_PN}_${MY_PV}.iso
newdoc iso/Readme.txt Readme.ISO.txt
fi
if use usb; then
insinto /usr/share/superdiag/USB
doins usb/startup.nsh usb/EFI/BOOT/BOOTX64.EFI
dosym ../../../BOOTX64.EFI /usr/share/superdiag/USB/EFI/BOOT/BOOTX64.EFI
dosym ../${MY_PN}.efi /usr/share/superdiag/USB/${MY_PN}.efi
newdoc usb/Readme.txt Readme.USB.txt
fi
}