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 84707138350 for ; Tue, 28 Apr 2020 20:32:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CEADE08C2; Tue, 28 Apr 2020 20:32:15 +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 712E5E08C2 for ; Tue, 28 Apr 2020 20:32:15 +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 0211134EF91 for ; Tue, 28 Apr 2020 20:32:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D453F18F for ; Tue, 28 Apr 2020 20:32:11 +0000 (UTC) From: "gerion" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "gerion" Message-ID: <1588105915.a6fe7203ed52692bb3dd1269f76b0e1ef4de97e4.gerion@gentoo> Subject: [gentoo-commits] repo/user/gerislay:master commit in: sys-kernel/hwmon-it87/ X-VCS-Repository: repo/user/gerislay X-VCS-Files: sys-kernel/hwmon-it87/Manifest sys-kernel/hwmon-it87/hwmon-it87-9999.ebuild sys-kernel/hwmon-it87/metadata.xml X-VCS-Directories: sys-kernel/hwmon-it87/ X-VCS-Committer: gerion X-VCS-Committer-Name: gerion X-VCS-Revision: a6fe7203ed52692bb3dd1269f76b0e1ef4de97e4 X-VCS-Branch: master Date: Tue, 28 Apr 2020 20:32:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 32ac6e98-f7e7-46f7-8a81-7682709e5d12 X-Archives-Hash: 0abe3c9b201fc23434e54b7996800c13 commit: a6fe7203ed52692bb3dd1269f76b0e1ef4de97e4 Author: Gerion Entrup flump de> AuthorDate: Tue Apr 28 20:31:55 2020 +0000 Commit: gerion flump de> CommitDate: Tue Apr 28 20:31:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=a6fe7203 sys-kernel/hwmon-it87: add Signed-off-by: Gerion Entrup flump.de> sys-kernel/hwmon-it87/Manifest | 2 ++ sys-kernel/hwmon-it87/hwmon-it87-9999.ebuild | 25 +++++++++++++++++++++++++ sys-kernel/hwmon-it87/metadata.xml | 8 ++++++++ 3 files changed, 35 insertions(+) diff --git a/sys-kernel/hwmon-it87/Manifest b/sys-kernel/hwmon-it87/Manifest new file mode 100644 index 0000000..ef8da33 --- /dev/null +++ b/sys-kernel/hwmon-it87/Manifest @@ -0,0 +1,2 @@ +EBUILD hwmon-it87-9999.ebuild 575 BLAKE2B 60a33387892b9e8ad1830f601b693162115d3c5c825a705c927ff9bd54c45738dc411068efef010c9c04d616b6ec129721cd95783bfbdba4d170d33e6407e866 SHA512 1094384dab8d6b13f172e569d15516455923bd925b527c7cf5584917a87103160c1957fa83ac865896a097234cce5d4e4c6ad9d436393279d9d3d1fd075d9cd2 +MISC metadata.xml 859 BLAKE2B e7d68ca938be2e19deb9e5001e20137c9a872725351e2254da90b1e583213c8e89e72d85bd8b355aec2f3145f28e358e8ee86c0325c618adf0da089000cae03e SHA512 d20fc38a99c762a85319fb024a19f1b995abf77c3c20104edd0828df88766ef901e91f7f214727b27d4c3eba28437c75db4f7c04abeb4188d05e65d411e008aa diff --git a/sys-kernel/hwmon-it87/hwmon-it87-9999.ebuild b/sys-kernel/hwmon-it87/hwmon-it87-9999.ebuild new file mode 100644 index 0000000..3da4e62 --- /dev/null +++ b/sys-kernel/hwmon-it87/hwmon-it87-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils git-r3 linux-mod linux-info + +DESCRIPTION="Dead but better out of tree it87 module" +HOMEPAGE="https://github.com/koenkooi/it87" +EGIT_REPO_URI="https://github.com/koenkooi/it87" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +CONFIG_CHECK="HWMON HWMON_VID !PPC !SENSORS_IT87" +MODULE_NAMES="it87(kernel/drivers/hwmon:${S})" + +pkg_setup() { + linux-mod_pkg_setup + + BUILD_TARGETS="clean modules" + BUILD_PARAMS="KVERSION=${KV_FULL} CC=$(tc-getCC)" +} diff --git a/sys-kernel/hwmon-it87/metadata.xml b/sys-kernel/hwmon-it87/metadata.xml new file mode 100644 index 0000000..afaf57f --- /dev/null +++ b/sys-kernel/hwmon-it87/metadata.xml @@ -0,0 +1,8 @@ + + + + + gerion.entrup@flump.de + Gerion Entrup + +