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 A5825138334 for ; Fri, 31 Aug 2018 22:13:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA70BE088C; Fri, 31 Aug 2018 22:13:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A043EE088C 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 ECE0C335CF1 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 D2D1B3CA 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: <1535753560.b67cb8871089992d0832fdf6b6c36c60ffd2b5af.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/smc-sum-driver/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/smc-sum-driver/smc-sum-driver-1.6.0.20151201-r1.ebuild X-VCS-Directories: sys-apps/smc-sum-driver/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b67cb8871089992d0832fdf6b6c36c60ffd2b5af 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: 532e9b98-9c62-449d-8ef8-fe7657a02a22 X-Archives-Hash: 51721c6ffa39cb7ef36a8bd883cddb04 commit: b67cb8871089992d0832fdf6b6c36c60ffd2b5af Author: Conrad Kostecki kostecki com> AuthorDate: Sat Aug 25 15:28:03 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Aug 31 22:12:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67cb887 sys-apps/smc-sum-driver: update fetch instructions. Closes: https://bugs.gentoo.org/663666 Package-Manager: Portage-2.3.48, Repoman-2.3.10 .../smc-sum-driver-1.6.0.20151201-r1.ebuild | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/sys-apps/smc-sum-driver/smc-sum-driver-1.6.0.20151201-r1.ebuild b/sys-apps/smc-sum-driver/smc-sum-driver-1.6.0.20151201-r1.ebuild new file mode 100644 index 00000000000..825bec7d32e --- /dev/null +++ b/sys-apps/smc-sum-driver/smc-sum-driver-1.6.0.20151201-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit linux-mod + +MY_DATE="$(ver_cut 4)" +MY_PN="${PN//-/_}" +MY_PV="$(ver_cut 1-3)" +MY_P="${MY_PN/smc_/}_V${MY_PV}" + +DESCRIPTION="Supermicro Update Manager (SUM) kernel module" +HOMEPAGE="https://www.supermicro.com" +SRC_URI="${MY_P}_${MY_DATE}.tar.gz" + +KEYWORDS="-* ~amd64 ~x86" +LICENSE="supermicro" +SLOT="0" + +RESTRICT="bindist fetch mirror" + +S="${WORKDIR}"/${MY_P}/Linux + +BUILD_TARGETS="default" +MODULE_NAMES="sum_bios(misc:${S})" + +pkg_nofetch() { + elog "Please contact the Supermicro support at support@supermicro.com," + elog "in order to obtain a copy of ${A}" + elog "and place it in your DISTDIR directory." +} + +src_prepare() { + # Install new Makefile to respect users CFLAGS and LDFLAGS + cp "${FILESDIR}"/makefile Makefile + + default +}