From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1384319-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5903015808C for <garchives@archives.gentoo.org>; Sun, 10 Apr 2022 13:33:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F4E2E09C0; Sun, 10 Apr 2022 13:33:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C457E09C0 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Apr 2022 13:33:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E2CA34148C for <gentoo-commits@lists.gentoo.org>; Sun, 10 Apr 2022 13:33:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60FA93A5 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Apr 2022 13:33:15 +0000 (UTC) From: "Yixun Lan" <dlan@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" <dlan@gentoo.org> Message-ID: <1649597569.80a8fff52c054ef4fac175414a7440b03d21134d.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/thermald/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/thermald/thermald-2.4.8-r1.ebuild sys-power/thermald/thermald-2.4.8.ebuild X-VCS-Directories: sys-power/thermald/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 80a8fff52c054ef4fac175414a7440b03d21134d X-VCS-Branch: master Date: Sun, 10 Apr 2022 13:33:15 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b3e90e2-8c2c-4cd3-9bc7-daf98eb7c793 X-Archives-Hash: 5822dd2284955202c3634483725bddb0 commit: 80a8fff52c054ef4fac175414a7440b03d21134d Author: Joh Matsuura <gh.cions <AT> gmail <DOT> com> AuthorDate: Sun Apr 10 08:59:06 2022 +0000 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org> CommitDate: Sun Apr 10 13:32:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a8fff5 sys-power/thermald: Fix tdrundir Use /run instead of /var/lib/run for runtime state directory Closes: https://github.com/gentoo/gentoo/pull/24970 Signed-off-by: Joh Matsuura <gh.cions <AT> gmail.com> Signed-off-by: Yixun Lan <dlan <AT> gentoo.org> .../thermald/{thermald-2.4.8.ebuild => thermald-2.4.8-r1.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys-power/thermald/thermald-2.4.8.ebuild b/sys-power/thermald/thermald-2.4.8-r1.ebuild similarity index 89% rename from sys-power/thermald/thermald-2.4.8.ebuild rename to sys-power/thermald/thermald-2.4.8-r1.ebuild index 2a2134ef6d2f..608411e5ceb4 100644 --- a/sys-power/thermald/thermald-2.4.8.ebuild +++ b/sys-power/thermald/thermald-2.4.8-r1.ebuild @@ -32,6 +32,9 @@ src_prepare() { sed -i -e "/group=/s/power/wheel/g" \ data/org.freedesktop.thermald.conf || die + sed -i -e '/tdrundir/s@\$localstatedir/run@\$runstatedir@' \ + configure.ac || die + default eautoreconf } @@ -39,6 +42,7 @@ src_prepare() { my_src_configure() { ECONF_SOURCE="${S}" econf \ --disable-werror \ + --runstatedir="${EPREFIX}"/run \ --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" }