Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smc-sum/
Date: Fri, 19 Oct 2018 07:54:46
Message-Id: 1539935670.7228902d475ea8628ae849adfc7d154699d53d08.mgorny@gentoo
1 commit: 7228902d475ea8628ae849adfc7d154699d53d08
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sun Oct 14 13:28:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 19 07:54:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7228902d
7
8 sys-apps/smc-sum: bump to version 2.1.0.20180903
9
10 Closes: https://bugs.gentoo.org/668608
11 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13 Closes: https://github.com/gentoo/gentoo/pull/10143
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 sys-apps/smc-sum/Manifest | 1 +
17 sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild | 38 ++++++++++++++++++++++++++
18 2 files changed, 39 insertions(+)
19
20 diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
21 index 56af70c1f61..02cdb262b0a 100644
22 --- a/sys-apps/smc-sum/Manifest
23 +++ b/sys-apps/smc-sum/Manifest
24 @@ -1 +1,2 @@
25 DIST sum_2.0.1_Linux_x86_64_20180420.tar.gz 6150348 BLAKE2B 1aa520ac18f97bfe16b9160c632cf09bc2021d47789712dec5ea9c9789022cfc8a24f15b1cebd0bdfde65af639a97b2de1474ea0af07c9bf569a56d02e1e8e56 SHA512 61a46b7bc745267fb2f224151fa29b965a56d163ec0e30d46ebdc925b3fab036903f9364cf83428f3e17c6e57db93be48a1ec2a5e7ab6599588d7430af1af628
26 +DIST sum_2.1.0_Linux_x86_64_20180903.tar.gz 6958388 BLAKE2B 5252408762912ab73c48b2167fd76cac719f909268132d959a86963c209787d2578cae89ff778823cea51049b618124ccc83a4d0cca461a814385516dc1298b8 SHA512 78665600083c12aa45cfb4176cb6b52a02291933bd4b771c2dee5519fdc00dcbf3a09cbb11ab9eb7471b99729640c322a156ece71398d859259af5720ab99bbb
27
28 diff --git a/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild b/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild
29 new file mode 100644
30 index 00000000000..878ee9ea607
31 --- /dev/null
32 +++ b/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild
33 @@ -0,0 +1,38 @@
34 +# Copyright 1999-2018 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI="7"
38 +
39 +MY_DATE="$(ver_cut 4)"
40 +MY_PN="${PN/smc-/}"
41 +MY_PV="$(ver_cut 1-3)"
42 +
43 +DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards"
44 +HOMEPAGE="https://www.supermicro.com"
45 +SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
46 +
47 +KEYWORDS="-* ~amd64 ~x86"
48 +LICENSE="supermicro"
49 +SLOT="0"
50 +
51 +RDEPEND="sys-apps/smc-sum-driver"
52 +
53 +RESTRICT="bindist fetch mirror"
54 +
55 +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
56 +
57 +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
58 +
59 +QA_PREBUILT="usr/bin/smc-sum"
60 +
61 +pkg_nofetch() {
62 + elog "Please download ${A} from"
63 + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
64 + elog "and place it in your DISTDIR directory."
65 +}
66 +
67 +src_install() {
68 + newbin sum smc-sum
69 +
70 + einstalldocs
71 +}