From d7ed2b01311f15ba54fe8ea872aab7d59ab2b193 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 29 Jan 2021 18:03:51 +0000 Subject: gentoo resync : 29.01.2021 --- sys-power/thermald/Manifest | 2 +- sys-power/thermald/thermald-2.4.1-r1.ebuild | 57 +++++++++++++++++++++++++++++ sys-power/thermald/thermald-2.4.1.ebuild | 54 --------------------------- 3 files changed, 58 insertions(+), 55 deletions(-) create mode 100644 sys-power/thermald/thermald-2.4.1-r1.ebuild delete mode 100644 sys-power/thermald/thermald-2.4.1.ebuild (limited to 'sys-power/thermald') diff --git a/sys-power/thermald/Manifest b/sys-power/thermald/Manifest index 564c5758a7e0..125c69bb16db 100644 --- a/sys-power/thermald/Manifest +++ b/sys-power/thermald/Manifest @@ -2,5 +2,5 @@ AUX thermald 374 BLAKE2B 2ea9775b75acb7797c078c8c7786d442bd9c98102cd53073e1c040a DIST thermald-2.3.tar.gz 452790 BLAKE2B caef87d670b14bfa0dbe6ca4873ebea4b0a9960a9bad48ddb10abb348e25cafdbdf5dad831a1c3ad38e71ab61d7f123df99046dec1e5ce2c32be506bc4b1312f SHA512 0d722c35e3638bb917994b8a123e1226b737b120f0946cfc604eb3bb4bd501121b1f196833f8cb3aceee73a8bb3566ef1d176d81143b84423f89d20966e91ed8 DIST thermald-2.4.1.tar.gz 455735 BLAKE2B ee4d6bc590bc50639c0b19adbba7e243358174a837b2ff155dea060b1cd09171d4fb77b18b785dc9f64a633f680358cb1d7b36e3bd438e5267e0a0a27e18497e SHA512 2dab7d57e028037208034ab4be95dc138ce028d4a47a0151c69816e1502065d801d52990641544b5d246144e654c15c663fa78af6cea094cf9a107f2fb29c1ef EBUILD thermald-2.3-r1.ebuild 1175 BLAKE2B db3921e80b361f3cffdfb0c862d082c72d9a5667e0db3e1a63d3b37a92ae7125be057f8cb21821db550c1edcd12735061220ab6b973cb0635a4e078dd3413f34 SHA512 183d32830b88b78bebd1c3fd546cb42a9b39ee61a1711cfe9b15aa1b1bc04be7955ff0c5d98af3cd23fdb473258075868d0f4959872b99d5a6c0c987120b57da -EBUILD thermald-2.4.1.ebuild 1161 BLAKE2B 3268fe644270fab7c48a53134eeee51ad33d8abd782bae5d41714c34d1a99a57d7ed4091b32f180c7b49f957ecdeaf945d8e9c955bc20c57d90b718e3a7fc6b1 SHA512 56e5375a288cd3ca46e275e8912c7bc76011b0a7a4c73b1816fadd30a374564573ce1e0efffdc85f39c296248d9ff46c1ca6f1e42b903517484f59831e509f4c +EBUILD thermald-2.4.1-r1.ebuild 1244 BLAKE2B 109b16330d4e800ea77238e1380a301ad5032422c1bf144ebc3f2a17d0bc0ae78db750c89a459c6daabd4e07cc1c0002d06facce648a9bda3f13b66b04f013e3 SHA512 ec2d72b8bf2e4ced2a029eb703be08f31fa52178b012386e8085bcd3120cb6ece097cb2b75cc19e9c78e818e5f445952dc8f4b2ce95a72294c45f679227ef56f MISC metadata.xml 643 BLAKE2B 92fe71631920f61dd6667c2dc8b4e27d2ea1e9bfb64509a9b4a9b0a72e9b4a11b7ae06febf120564c28272b9e079cf71a114bca620ce2651ec615439dd5ff9b3 SHA512 bad363023e01da0232632d54b2cb65dce89a7c70441f05fc873640a29f6fd4ec4ea30b00f94f723a786de1eef87b94673dad455102bc57a11573346e3a8ae2e8 diff --git a/sys-power/thermald/thermald-2.4.1-r1.ebuild b/sys-power/thermald/thermald-2.4.1-r1.ebuild new file mode 100644 index 000000000000..6486befc33fc --- /dev/null +++ b/sys-power/thermald/thermald-2.4.1-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools out-of-source systemd + +DESCRIPTION="Thermal daemon for Intel architectures" +HOMEPAGE="https://01.org/linux-thermal-daemon https://github.com/intel/thermal_daemon" +SRC_URI="https://github.com/intel/thermal_daemon/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/dbus-glib:= + dev-libs/glib:= + dev-libs/libxml2:= + dev-libs/libevdev + sys-power/upower + sys-apps/dbus:=" +DEPEND="${RDEPEND} + dev-util/gtk-doc + dev-util/glib-utils" + +S=${WORKDIR}/thermal_daemon-${PV} +DOCS=( thermal_daemon_usage.txt README.txt ) + +src_prepare() { + sed -i -e "/group=/s/power/wheel/g" \ + data/org.freedesktop.thermald.conf || die + + default + eautoreconf +} + +my_src_configure() { + ECONF_SOURCE="${S}" econf \ + --disable-werror \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" +} + +my_src_install_all() { + einstalldocs + + rm -rf "${ED}"/etc/init || die + doinitd "${FILESDIR}"/thermald +} + +pkg_postinst() { + if ! has_version sys-power/dptfxtract; then + elog "dptfxtract can be used to generate a more specific" + elog "thermald configuration for your system" + fi +} diff --git a/sys-power/thermald/thermald-2.4.1.ebuild b/sys-power/thermald/thermald-2.4.1.ebuild deleted file mode 100644 index 64693c99c353..000000000000 --- a/sys-power/thermald/thermald-2.4.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools out-of-source systemd - -DESCRIPTION="Thermal daemon for Intel architectures" -HOMEPAGE="https://01.org/linux-thermal-daemon https://github.com/intel/thermal_daemon" -SRC_URI="https://github.com/intel/thermal_daemon/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - dev-libs/dbus-glib:= - dev-libs/glib:= - dev-libs/libxml2:= - dev-libs/libevdev - sys-power/upower - sys-apps/dbus:=" -DEPEND="${RDEPEND} - dev-util/gtk-doc - dev-util/glib-utils" - -S=${WORKDIR}/thermal_daemon-${PV} -DOCS=( thermal_daemon_usage.txt README.txt ) - -src_prepare() { - default - eautoreconf -} - -my_src_configure() { - ECONF_SOURCE="${S}" econf \ - --disable-werror \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" -} - -my_src_install_all() { - einstalldocs - - rm -rf "${ED}"/etc/init || die - doinitd "${FILESDIR}"/thermald -} - -pkg_postinst() { - if ! has_version sys-power/dptfxtract; then - elog "dptfxtract can be used to generate a more specific" - elog "thermald configuration for your system" - fi -} -- cgit v1.2.3