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: Sun, 10 Mar 2019 22:38:41
Message-Id: 1552257315.e40d75a77bb07d4ebafda4c966efe50e2d1901b2.monsieurp@gentoo
1 commit: e40d75a77bb07d4ebafda4c966efe50e2d1901b2
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sat Mar 9 22:09:51 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 22:35:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40d75a7
7
8 sys-apps/smc-sum: bump to version 2.2.0.20190220.
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
12 Closes: https://github.com/gentoo/gentoo/pull/11323
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 sys-apps/smc-sum/Manifest | 1 +
16 sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild | 38 ++++++++++++++++++++++++++
17 2 files changed, 39 insertions(+)
18
19 diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
20 index 1782a146348..bb80ebd6374 100644
21 --- a/sys-apps/smc-sum/Manifest
22 +++ b/sys-apps/smc-sum/Manifest
23 @@ -1 +1,2 @@
24 DIST sum_2.1.0_Linux_x86_64_20180903.tar.gz 6958388 BLAKE2B 5252408762912ab73c48b2167fd76cac719f909268132d959a86963c209787d2578cae89ff778823cea51049b618124ccc83a4d0cca461a814385516dc1298b8 SHA512 78665600083c12aa45cfb4176cb6b52a02291933bd4b771c2dee5519fdc00dcbf3a09cbb11ab9eb7471b99729640c322a156ece71398d859259af5720ab99bbb
25 +DIST sum_2.2.0_Linux_x86_64_20190220.tar.gz 8353887 BLAKE2B 47c7a4fbd1fdba065c03cd9172283d5594ac0fc8d5443a7c0d144861899172f38e8a4023a037499baaa5c3accccfc2b45dd356e494ba0dc6ea77bf2e4acccd92 SHA512 f96acd97492d3299781fdc98fa318e8c5b1d02bcf48fe2400006f3231080691a641f0655af057c46dfec71aafd6b589b76f63e90bd936e5a5a48b94788391608
26
27 diff --git a/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild b/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild
28 new file mode 100644
29 index 00000000000..d72c9760f77
30 --- /dev/null
31 +++ b/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild
32 @@ -0,0 +1,38 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +MY_DATE="$(ver_cut 4)"
39 +MY_PN="${PN/smc-/}"
40 +MY_PV="$(ver_cut 1-3)"
41 +
42 +DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards"
43 +HOMEPAGE="https://www.supermicro.com"
44 +SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
45 +
46 +LICENSE="supermicro"
47 +SLOT="0"
48 +KEYWORDS="-* ~amd64 ~x86"
49 +
50 +RDEPEND="sys-apps/smc-sum-driver"
51 +
52 +RESTRICT="bindist fetch mirror"
53 +
54 +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
55 +
56 +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
57 +
58 +QA_PREBUILT="usr/bin/smc-sum"
59 +
60 +pkg_nofetch() {
61 + elog "Please download ${A} from"
62 + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
63 + elog "and place it in your DISTDIR directory."
64 +}
65 +
66 +src_install() {
67 + newbin sum smc-sum
68 +
69 + einstalldocs
70 +}