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/smc-sum/
Date: Thu, 01 Jul 2021 22:20:00
Message-Id: 1625177928.a41d94060982434ab7604845facc2f4c7a2c4c6a.conikost@gentoo
1 commit: a41d94060982434ab7604845facc2f4c7a2c4c6a
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 21:54:42 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 22:18:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41d9406
7
8 sys-apps/smc-sum: bump to version 2.5.2
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 sys-apps/smc-sum/Manifest | 1 +
14 sys-apps/smc-sum/smc-sum-2.5.2.20210112.ebuild | 38 ++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
18 index 0b7960fb8ab..ce47f98828f 100644
19 --- a/sys-apps/smc-sum/Manifest
20 +++ b/sys-apps/smc-sum/Manifest
21 @@ -1 +1,2 @@
22 DIST sum_2.5.1_Linux_x86_64_20201112.tar.gz 10589459 BLAKE2B 94a5306b0e0aafc942c8fb75043a74502b28837b599977a8850065688e8606405ca911e12229c1a4c25830cd33f6232c088572e545cfcd4a691f155735133958 SHA512 33e20b966dc10586be594eb416715fe68b2c9435e9784569fd49808a7efdc65a8bf89c94e9fd28bf22a87b1581d877a8bf0ba095204cc3eb2eb2bfc329d74982
23 +DIST sum_2.5.2_Linux_x86_64_20210112.tar.gz 10859378 BLAKE2B 7e25cc3d6414cf9f59c1aa6dec5b183b91bb6fda8cd1fb59e5a3af37ed662859b39732c3c898d4791f0eb084d539a68bd4328814641ce8aafc166c852e68a091 SHA512 604968a367aa118a3167dad3755af4d1c6b90d164b9485f677aa393466e29f63f8fa67e1661dd22990c92c866fc3e22177a0e5a776ab5fd7ab8a674f60751fdf
24
25 diff --git a/sys-apps/smc-sum/smc-sum-2.5.2.20210112.ebuild b/sys-apps/smc-sum/smc-sum-2.5.2.20210112.ebuild
26 new file mode 100644
27 index 00000000000..d3808ba6796
28 --- /dev/null
29 +++ b/sys-apps/smc-sum/smc-sum-2.5.2.20210112.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +MY_DATE="$(ver_cut 4)"
37 +MY_PN="${PN/smc-/}"
38 +MY_PV="$(ver_cut 1-3)"
39 +
40 +DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards"
41 +HOMEPAGE="https://www.supermicro.com"
42 +SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
43 +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
44 +
45 +LICENSE="supermicro"
46 +SLOT="0"
47 +KEYWORDS="-* ~amd64"
48 +IUSE="module"
49 +
50 +RDEPEND="module? ( sys-apps/smc-sum-driver )"
51 +
52 +RESTRICT="bindist fetch mirror"
53 +
54 +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
55 +
56 +QA_PREBUILT="usr/bin/smc-sum"
57 +
58 +pkg_nofetch() {
59 + elog "Please download ${A} from"
60 + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
61 + elog "and place it in your DISTDIR directory."
62 +}
63 +
64 +src_install() {
65 + newbin sum smc-sum
66 +
67 + einstalldocs
68 +}