summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2018-12-01 00:33:57 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-12-16 20:29:11 +0100
commitd1726c1f931907880aff08b1a44df7f88053fcb4 (patch)
tree68c3f2280df9495deb2c265fa76af03d08389f4b /sys-apps
parentsys-apps/ipmicfg: bump to version 1.29.0.181029 (diff)
downloadgentoo-d1726c1f931907880aff08b1a44df7f88053fcb4.tar.gz
gentoo-d1726c1f931907880aff08b1a44df7f88053fcb4.tar.bz2
gentoo-d1726c1f931907880aff08b1a44df7f88053fcb4.zip
sys-apps/ipmicfg: drop old version
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/ipmicfg/Manifest1
-rw-r--r--sys-apps/ipmicfg/ipmicfg-1.28.0.180302.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/sys-apps/ipmicfg/Manifest b/sys-apps/ipmicfg/Manifest
index 171c07d34e64..1e0f952ab998 100644
--- a/sys-apps/ipmicfg/Manifest
+++ b/sys-apps/ipmicfg/Manifest
@@ -1,2 +1 @@
-DIST IPMICFG_1.28.0_build.180302.zip 1722771 BLAKE2B fde93f75714aac9f79cb76e0a11f4747a933f28eb06c4daf09113e75e0fb26c57e8cf54ad58cff040d3a37427c74d699eef9532db256fe5ae2344667a542b342 SHA512 764103de5cf7109a20216d5277ba038747cea16dc78563876b38a8c830d8437bcdf06e0e55db68ad44b32b2a3043535f5c307b3bdaca40bcb04ee05bd097610e
DIST IPMICFG_1.29.0_build.181029.zip 1730029 BLAKE2B 32e00e3be90273a447ad34e952568853f66fc41728c419a4b0c991af28d9558e9535a726a46f468ee1c04dc5619c558b0701b54e543b98dc4e35b73ce9cb3f35 SHA512 c87ce7be7e9fa0c63638d537a9d29b1cb728dc499056f5c3a77cb4bf1989eebba00198f63d15134af8ea19ed521660d1f4bedb10d06a516dd860623cc919275a
diff --git a/sys-apps/ipmicfg/ipmicfg-1.28.0.180302.ebuild b/sys-apps/ipmicfg/ipmicfg-1.28.0.180302.ebuild
deleted file mode 100644
index ce0d6c434345..000000000000
--- a/sys-apps/ipmicfg/ipmicfg-1.28.0.180302.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eapi7-ver
-
-MY_DATE="$(ver_cut 4)"
-MY_PN="${PN^^}"
-MY_PV="$(ver_cut 1-3)"
-
-DESCRIPTION="An in-band utility for configuring Supermicro IPMI devices"
-HOMEPAGE="https://www.supermicro.com"
-SRC_URI="ftp://ftp.supermicro.com/utility/${MY_PN}/${MY_PN}_${MY_PV}_build.${MY_DATE}.zip"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="supermicro"
-SLOT="0"
-
-RDEPEND="sys-libs/glibc"
-DEPEND="app-arch/unzip"
-
-RESTRICT="bindist fetch mirror strip"
-
-S="${WORKDIR}/${MY_PN}_${MY_PV}_build.${MY_DATE}"
-
-QA_PREBUILT="opt/ipmicfg/IPMICFG-Linux.x86 opt/ipmicfg/IPMICFG-Linux.x86_64"
-
-pkg_nofetch() {
- elog "Please download ${A} from"
- elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=IPMI"
- elog "and place it in your DISTDIR directory."
-}
-
-src_install() {
- # Choose ARCH
- if use amd64; then
- local my_arch_binary="x86_64"
- local my_arch_folder="64bit"
- else
- local my_arch_binary="x86"
- local my_arch_folder="32bit"
- fi
-
- # Install files
- insinto "/opt/ipmicfg"
- doins "Linux/${my_arch_folder}"/*.dat
-
- # Install binary
- exeinto "/opt/ipmicfg"
- doexe "Linux/${my_arch_folder}/IPMICFG-Linux.${my_arch_binary}"
-
- # Install symlink
- dodir "/opt/bin"
- dosym "../ipmicfg/IPMICFG-Linux.${my_arch_binary}" "/opt/bin/ipmicfg"
-
- # Install docs
- local DOCS=( "IPMICFG_UserGuide.pdf" "ReleaseNotes.txt" )
- einstalldocs
-}