Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smc-sum/
Date: Fri, 31 Aug 2018 22:13:03
Message-Id: 1535753557.839982df603c11f36430decfdafdab032094f0e9.monsieurp@gentoo
1 commit: 839982df603c11f36430decfdafdab032094f0e9
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sat Aug 25 15:18:45 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 22:12:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=839982df
7
8 sys-apps/smc-sum: update fetch instructions.
9
10 Bug: https://bugs.gentoo.org/663666
11 Package-Manager: Portage-2.3.48, Repoman-2.3.10
12 Closes: https://github.com/gentoo/gentoo/pull/9696
13
14 sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild | 38 +++++++++++++++++++++++
15 1 file changed, 38 insertions(+)
16
17 diff --git a/sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild b/sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild
18 new file mode 100644
19 index 00000000000..423244a7d81
20 --- /dev/null
21 +++ b/sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild
22 @@ -0,0 +1,38 @@
23 +# Copyright 1999-2018 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +MY_DATE="$(ver_cut 4)"
29 +MY_PN="${PN/smc-/}"
30 +MY_PV="$(ver_cut 1-3)"
31 +
32 +DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards"
33 +HOMEPAGE="https://www.supermicro.com"
34 +SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
35 +
36 +KEYWORDS="-* ~amd64 ~x86"
37 +LICENSE="supermicro"
38 +SLOT="0"
39 +
40 +RDEPEND="sys-apps/smc-sum-driver"
41 +
42 +RESTRICT="bindist fetch mirror strip"
43 +
44 +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
45 +
46 +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
47 +
48 +QA_PREBUILT="usr/bin/smc-sum"
49 +
50 +pkg_nofetch() {
51 + elog "Please download ${A} from"
52 + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
53 + elog "and place it in your DISTDIR directory."
54 +}
55 +
56 +src_install() {
57 + newbin sum smc-sum
58 +
59 + einstalldocs
60 +}