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: Fri, 09 Oct 2020 16:03:41
Message-Id: 1602259408.3c2f9b25bbbcf170e03477ea104a94ce2451d99d.conikost@gentoo
1 commit: 3c2f9b25bbbcf170e03477ea104a94ce2451d99d
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 16:02:36 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 16:03:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c2f9b25
7
8 sys-apps/smc-sum: bump to version 2.5.0
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
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.0.20200722.ebuild | 39 ++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
18 index 3b87d8d05b1..ec20c259052 100644
19 --- a/sys-apps/smc-sum/Manifest
20 +++ b/sys-apps/smc-sum/Manifest
21 @@ -1 +1,2 @@
22 DIST sum_2.4.0_Linux_x86_64_20191206.tar.gz 9732263 BLAKE2B 4c0c25ab5d3a8b533487287676efe38df164ab80327016172da76539081b90bb4a1de5a043609f35800a82651335f862ea08aeaa867270a7e21b309372facc81 SHA512 7b320590391434518e74491dbe093689c4dcee2763d361203be2d468fcfb20e508fba489291d4bd08fd97d93d72309def1737c69a34a9dcfefb06cb4b45806b5
23 +DIST sum_2.5.0_Linux_x86_64_20200722.tar.gz 11280455 BLAKE2B 5c25c2b35b6d82b1d3c856e97f1669e92ecb3406188398ee29cca44e44bb30e651fe9db7a39c93a78375b3021d5836e8d92b680b07ead0892f588f6ec9a03454 SHA512 af99c3fef1436d1ef97fbd03c619d0f4e1eea9afd00d03c905cf92a5ec826b1a5aec1ae2a2f69fa406eee91d5bed4bd2fcd3935243dc6dbae4efe04e0dcdff21
24
25 diff --git a/sys-apps/smc-sum/smc-sum-2.5.0.20200722.ebuild b/sys-apps/smc-sum/smc-sum-2.5.0.20200722.ebuild
26 new file mode 100644
27 index 00000000000..07ffd44db9d
28 --- /dev/null
29 +++ b/sys-apps/smc-sum/smc-sum-2.5.0.20200722.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2020 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 +
44 +LICENSE="supermicro"
45 +SLOT="0"
46 +KEYWORDS="-* ~amd64"
47 +IUSE="module"
48 +
49 +RDEPEND="module? ( sys-apps/smc-sum-driver )"
50 +
51 +RESTRICT="bindist fetch mirror"
52 +
53 +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
54 +
55 +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
56 +
57 +QA_PREBUILT="usr/bin/smc-sum"
58 +
59 +pkg_nofetch() {
60 + elog "Please download ${A} from"
61 + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
62 + elog "and place it in your DISTDIR directory."
63 +}
64 +
65 +src_install() {
66 + newbin sum smc-sum
67 +
68 + einstalldocs
69 +}