diff options
author | 2022-02-09 22:37:01 +0100 | |
---|---|---|
committer | 2022-02-09 23:56:44 +0100 | |
commit | df5bda9802aa2bc80f2d37fc57597b8cb8a16110 (patch) | |
tree | 9820f8d4443dce811b2665e8425230df38112a3d /sys-apps/tas | |
parent | sys-apps/tas: update EAPI 7 -> 8 (diff) | |
download | gentoo-df5bda9802aa2bc80f2d37fc57597b8cb8a16110.tar.gz gentoo-df5bda9802aa2bc80f2d37fc57597b8cb8a16110.tar.bz2 gentoo-df5bda9802aa2bc80f2d37fc57597b8cb8a16110.zip |
sys-apps/tas: drop 1.6.0.200601
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/tas')
-rw-r--r-- | sys-apps/tas/tas-1.6.0.200601.ebuild | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/sys-apps/tas/tas-1.6.0.200601.ebuild b/sys-apps/tas/tas-1.6.0.200601.ebuild deleted file mode 100644 index c7e5a3cc2190..000000000000 --- a/sys-apps/tas/tas-1.6.0.200601.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info optfeature systemd - -MY_DATE="$(ver_cut 4)" -MY_PN="${PN^^}" -MY_PV="$(ver_cut 1-3)" - -DESCRIPTION="Supermicro Thin-Agent Service for monitoring through the BMC/IPMI" -HOMEPAGE="https://www.supermicro.com" -SRC_URI="https://www.supermicro.com/wftp/utility/${MY_PN}/${MY_PN}_${MY_PV}_build.${MY_DATE}.zip" -S="${WORKDIR}" - -KEYWORDS="-* amd64 x86" -LICENSE="BSD supermicro" -SLOT="0" - -RDEPEND=" - net-misc/networkmanager - sys-apps/ethtool - sys-apps/net-tools - sys-apps/smartmontools - sys-block/storcli - sys-devel/bc - sys-fs/lsscsi - sys-fs/mdadm" - -BDEPEND="app-arch/unzip" - -RESTRICT="bindist mirror" - -QA_PREBUILT="usr/bin/IPMITAS" - -DOCS=( - "clireadme.txt" - "ReleaseNotes.txt" - "software_license_agreement_pv.pdf" - "TAS_UserGuide.pdf" -) - -CONFIG_CHECK="~IPMI_DEVICE_INTERFACE ~IPMI_HANDLER ~IPMI_SI" - -src_unpack() { - unpack ${A} - unpack "${S}"/${MY_PN}_${MY_PV}_build.${MY_DATE}_Linux.tar.gz -} - -src_install() { - dobin TAS/$(usex amd64 '64' '32')bit/IPMITAS - - insinto /etc/supermicro - doins "${FILESDIR}"/tas.ini - - dodir /var/log/tas - local logfiles=( {starttime,tas,tas.com}.log ) - for logfile in ${logfiles[@]}; do - touch "${ED}"/var/log/tas/${logfile} || die - dosym ../../var/log/tas/${logfile} /etc/supermicro/${logfile} - done - - newinitd "${FILESDIR}"/tas.initd tas - systemd_newunit "${FILESDIR}"/tas.service tas.service - - einstalldocs -} - -pkg_postinst() { - optfeature "Broadcom controller management" sys-block/storcli - optfeature "LSI controller management" sys-block/sas3ircu -} |