From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 41113138334 for ; Fri, 31 Aug 2018 22:13:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80936E088A; Fri, 31 Aug 2018 22:13:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5CD49E088A for ; Fri, 31 Aug 2018 22:13:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DBC7D335CEF for ; Fri, 31 Aug 2018 22:12:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD33A3C8 for ; Fri, 31 Aug 2018 22:12:56 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1535753557.839982df603c11f36430decfdafdab032094f0e9.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smc-sum/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild X-VCS-Directories: sys-apps/smc-sum/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 839982df603c11f36430decfdafdab032094f0e9 X-VCS-Branch: master Date: Fri, 31 Aug 2018 22:12:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 55ff1584-9015-446b-a8c3-e3b94e8a66e3 X-Archives-Hash: cdc9d677a1b51f7393bf40a2bff03579 commit: 839982df603c11f36430decfdafdab032094f0e9 Author: Conrad Kostecki kostecki com> AuthorDate: Sat Aug 25 15:18:45 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Aug 31 22:12:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=839982df sys-apps/smc-sum: update fetch instructions. Bug: https://bugs.gentoo.org/663666 Package-Manager: Portage-2.3.48, Repoman-2.3.10 Closes: https://github.com/gentoo/gentoo/pull/9696 sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild | 38 +++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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 new file mode 100644 index 00000000000..423244a7d81 --- /dev/null +++ b/sys-apps/smc-sum/smc-sum-2.0.1.20180420-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_DATE="$(ver_cut 4)" +MY_PN="${PN/smc-/}" +MY_PV="$(ver_cut 1-3)" + +DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards" +HOMEPAGE="https://www.supermicro.com" +SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz" + +KEYWORDS="-* ~amd64 ~x86" +LICENSE="supermicro" +SLOT="0" + +RDEPEND="sys-apps/smc-sum-driver" + +RESTRICT="bindist fetch mirror strip" + +S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64" + +DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" ) + +QA_PREBUILT="usr/bin/smc-sum" + +pkg_nofetch() { + elog "Please download ${A} from" + elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM" + elog "and place it in your DISTDIR directory." +} + +src_install() { + newbin sum smc-sum + + einstalldocs +}