Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-laptop/thinkfan/
Date: Fri, 16 Jul 2021 07:02:07
Message-Id: 1626418912.33eac150eb795219de042536e7dbd6872407d302.juippis@gentoo
1 commit: 33eac150eb795219de042536e7dbd6872407d302
2 Author: Johannes Willem Fernhout <hfern <AT> fernhout <DOT> info>
3 AuthorDate: Thu Jul 15 07:58:50 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 07:01:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33eac150
7
8 app-laptop/thinkfan: version bump to 1.2.2
9
10 This is a maintenance release that fixes a long-standing bug in handling
11 sensors that may disappear at runtime.
12
13 Closes: https://bugs.gentoo.org/799104
14
15 Signed-off-by: Johannes Willem Fernhout <hfern <AT> fernhout.info>
16 Closes: https://github.com/gentoo/gentoo/pull/21650
17 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
18
19 app-laptop/thinkfan/Manifest | 1 +
20 app-laptop/thinkfan/thinkfan-1.2.2.ebuild | 41 +++++++++++++++++++++++++++++++
21 2 files changed, 42 insertions(+)
22
23 diff --git a/app-laptop/thinkfan/Manifest b/app-laptop/thinkfan/Manifest
24 index 783936bff98..4faf895a8d3 100644
25 --- a/app-laptop/thinkfan/Manifest
26 +++ b/app-laptop/thinkfan/Manifest
27 @@ -1,2 +1,3 @@
28 DIST thinkfan-1.0.2.tar.gz 77653 BLAKE2B 1b40553380f9b873883f0dc587665f24cd2e07de7a7e743cb9f99a3282f380da2258265a612b1c97d2945fed31aee0d6cbc30ea2a18c0b212e877e7635eda336 SHA512 d9133538096a7c5757f599adfebc8217aa7334a102573d6757f03b5c012a09d600be923930fd9d62f4afa591f5eb7a70a1c328004bddef85494d1a7ce56b648f
29 DIST thinkfan-1.2.1.tar.gz 84253 BLAKE2B 5a816b8cadbc72424384966b0bc6bcf17070eec703584c348bc28cf8ee59e4d67a56d351f0c1d9d55328326b21134f0158bf976f86336bb5d59b81c137b96c83 SHA512 27db9f54c26a85093ff7b9f8a0e26f679e413489f608b561b819a702fd077a33e62197e41a1f1f4495c66daa1ac70603c063e6ac4cdd09d13f4005f73685152d
30 +DIST thinkfan-1.2.2.tar.gz 85779 BLAKE2B 55d3806756aa638d8a97b74a8b6142f58e4b805c319cea2be0c4022fba7b9c2eb286956752788197aa50ee2a07f1fe826657ba0b95a47832a9f4e0f5070f3f82 SHA512 7991ef9e1891e9f4d843a0421404d8ccdedf398777f44ed0c6c58070849a6eae70044a72bad4ad9595e9528551212db228bf868371fb9a642918a69d2b4e917c
31
32 diff --git a/app-laptop/thinkfan/thinkfan-1.2.2.ebuild b/app-laptop/thinkfan/thinkfan-1.2.2.ebuild
33 new file mode 100644
34 index 00000000000..d59a97b5a27
35 --- /dev/null
36 +++ b/app-laptop/thinkfan/thinkfan-1.2.2.ebuild
37 @@ -0,0 +1,41 @@
38 +# Copyright 1999-2021 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=7
42 +
43 +inherit cmake readme.gentoo-r1
44 +
45 +DESCRIPTION="Simple fan control program for thinkpads"
46 +HOMEPAGE="https://github.com/vmatare/thinkfan"
47 +SRC_URI="https://github.com/vmatare/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="GPL-3"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE="atasmart nvidia +yaml"
53 +
54 +DEPEND="atasmart? ( dev-libs/libatasmart )
55 + yaml? ( dev-cpp/yaml-cpp )"
56 +
57 +RDEPEND="${DEPEND}
58 + nvidia? ( x11-drivers/nvidia-drivers )"
59 +
60 +DOC_CONTENTS="
61 + Please read the documentation and copy an appropriate
62 + file to /etc/thinkfan.conf.
63 +"
64 +
65 +src_configure() {
66 + local mycmakeargs+=(
67 + -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
68 + -DUSE_NVML="$(usex nvidia)"
69 + -DUSE_ATASMART="$(usex atasmart)"
70 + -DUSE_YAML="$(usex yaml)"
71 + )
72 + cmake_src_configure
73 +}
74 +
75 +src_install() {
76 + cmake_src_install
77 + readme.gentoo_create_doc
78 +}