Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smcipmitool/
Date: Tue, 01 Dec 2020 20:59:03
Message-Id: 1606856330.73c5c0cde8e226502b819bc7e852c4321c178f69.conikost@gentoo
1 commit: 73c5c0cde8e226502b819bc7e852c4321c178f69
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 20:08:21 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 20:58:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73c5c0cd
7
8 sys-apps/smcipmitool: drop old version
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 .../smcipmitool/smcipmitool-2.24.0.201007.ebuild | 77 ----------------------
14 1 file changed, 77 deletions(-)
15
16 diff --git a/sys-apps/smcipmitool/smcipmitool-2.24.0.201007.ebuild b/sys-apps/smcipmitool/smcipmitool-2.24.0.201007.ebuild
17 deleted file mode 100644
18 index 279c66adc7f..00000000000
19 --- a/sys-apps/smcipmitool/smcipmitool-2.24.0.201007.ebuild
20 +++ /dev/null
21 @@ -1,77 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit java-pkg-2 prefix
28 -
29 -MY_DATE="$(ver_cut 4)"
30 -MY_PN="SMCIPMITool"
31 -MY_PN_SRC_URI="SMCIPMItool"
32 -MY_PV="$(ver_cut 1-3)"
33 -
34 -DESCRIPTION="An out-of-band utility for interfacing with SuperBlade and IPMI devices via CLI"
35 -HOMEPAGE="https://www.supermicro.com/"
36 -SRC_URI="https://www.supermicro.com/wftp/utility/${MY_PN_SRC_URI}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux_x64.tar.gz"
37 -
38 -LICENSE="supermicro"
39 -SLOT="0"
40 -KEYWORDS="-* ~amd64"
41 -
42 -RDEPEND="
43 - net-misc/stunnel
44 - sys-libs/ncurses-compat:5
45 - virtual/jre:1.8
46 -"
47 -
48 -RESTRICT="bindist mirror"
49 -
50 -DIR="/usr/share/${PN}"
51 -QA_PREBUILT="usr/lib*"
52 -
53 -src_unpack() {
54 - unpack ${A}
55 - mv -v ${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux_x64 ${P} || die
56 -}
57 -
58 -src_prepare() {
59 - default
60 -
61 - # Don't use their scary launchers
62 - rm -v lax.jar || die
63 -}
64 -
65 -src_compile() {
66 - :
67 -}
68 -
69 -src_install() {
70 - java-pkg_dojar *.jar
71 - java-pkg_doso libjcurses.so *64.so
72 -
73 - local pre=$(prefixify_ro "${FILESDIR}"/launcher-pre.bash)
74 - java-pkg_dolauncher smcipmitool-ikvm --jar iKVM.jar -pre "${pre}"
75 - java-pkg_dolauncher smcipmitool-jviewersmc --jar JViewerSMC.jar -pre "${pre}"
76 - java-pkg_dolauncher smcipmitool-jviewerx9 --jar JViewerX9.jar -pre "${pre}"
77 - java-pkg_dolauncher smcipmitool --jar SMCIPMITool.jar -pre "${pre}"
78 -
79 - exeinto "${DIR}"/jre/bin
80 - newexe $(prefixify_ro "${FILESDIR}"/fake-java.bash) java
81 -
82 - insinto "${DIR}"/lib/BMCSecurity
83 - doins BMCSecurity/*.{crt,key,pem,txt}
84 -
85 - insinto "${DIR}"/lib/BMCSecurity/linux
86 - doins BMCSecurity/linux/stunnel.conf
87 -
88 - dosym ../../../../../bin/stunnel "${DIR}"/lib/BMCSecurity/linux/stunnel32
89 - dosym ../../../../../bin/stunnel "${DIR}"/lib/BMCSecurity/linux/stunnel64
90 -
91 - local DOCS=(
92 - "jcurses.README"
93 - "ReleaseNotes.txt"
94 - "SMCIPMITool_User_Guide.pdf"
95 - )
96 -
97 - einstalldocs
98 -}