Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/thermald/
Date: Wed, 13 Jan 2021 23:09:35
Message-Id: 1610579208.30a40af0056d5998ab56efc9a492faa812861304.dlan@gentoo
1 commit: 30a40af0056d5998ab56efc9a492faa812861304
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 13 23:06:48 2021 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 13 23:06:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30a40af0
7
8 sys-power/thermald: drop old
9
10 Package-Manager: Portage-3.0.0, Repoman-2.3.23
11 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
12
13 sys-power/thermald/Manifest | 1 -
14 sys-power/thermald/thermald-2.2.ebuild | 46 ----------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/sys-power/thermald/Manifest b/sys-power/thermald/Manifest
18 index 6a3bf0017e0..f5a8f624523 100644
19 --- a/sys-power/thermald/Manifest
20 +++ b/sys-power/thermald/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST thermald-2.2.tar.gz 435659 BLAKE2B 500189b924594e5b1d68adc776b3ad0c1d531d4259c65dd77f9166648c9b4273c52e1f8222254ec6500b3d37e39deb4ec862443728d50e9be95dee8e43496645 SHA512 f2c691061436699aef5bb7d9681370306dc7a64c453208911077c9a4af50e35b32247fc0a35853bb314d0e4289dd07f6116a3ade7fa278b521ed9b7b13db949b
23 DIST thermald-2.3.tar.gz 452790 BLAKE2B caef87d670b14bfa0dbe6ca4873ebea4b0a9960a9bad48ddb10abb348e25cafdbdf5dad831a1c3ad38e71ab61d7f123df99046dec1e5ce2c32be506bc4b1312f SHA512 0d722c35e3638bb917994b8a123e1226b737b120f0946cfc604eb3bb4bd501121b1f196833f8cb3aceee73a8bb3566ef1d176d81143b84423f89d20966e91ed8
24 DIST thermald-2.4.1.tar.gz 455735 BLAKE2B ee4d6bc590bc50639c0b19adbba7e243358174a837b2ff155dea060b1cd09171d4fb77b18b785dc9f64a633f680358cb1d7b36e3bd438e5267e0a0a27e18497e SHA512 2dab7d57e028037208034ab4be95dc138ce028d4a47a0151c69816e1502065d801d52990641544b5d246144e654c15c663fa78af6cea094cf9a107f2fb29c1ef
25
26 diff --git a/sys-power/thermald/thermald-2.2.ebuild b/sys-power/thermald/thermald-2.2.ebuild
27 deleted file mode 100644
28 index fefc84b2d48..00000000000
29 --- a/sys-power/thermald/thermald-2.2.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit autotools flag-o-matic out-of-source systemd
38 -
39 -DESCRIPTION="Thermal daemon for Intel architectures"
40 -HOMEPAGE="https://01.org/linux-thermal-daemon"
41 -SRC_URI="https://github.com/01org/thermal_daemon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE=""
47 -
48 -RDEPEND="
49 - dev-libs/dbus-glib:=
50 - dev-libs/glib:=
51 - dev-libs/libxml2:=
52 - sys-apps/dbus:="
53 -DEPEND="${RDEPEND}
54 - dev-util/glib-utils"
55 -
56 -S=${WORKDIR}/thermal_daemon-${PV}
57 -DOCS=( thermal_daemon_usage.txt README.txt )
58 -
59 -src_prepare() {
60 - default
61 - eautoreconf
62 -}
63 -
64 -my_src_configure() {
65 - # bug 618948
66 - append-cxxflags -std=c++14
67 -
68 - ECONF_SOURCE="${S}" econf \
69 - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
70 -}
71 -
72 -my_src_install_all() {
73 - einstalldocs
74 -
75 - rm -rf "${ED}"/etc/init || die
76 - doinitd "${FILESDIR}"/thermald
77 -}