[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/14: gnu: thermald: Update to 2.3.
From: |
guix-commits |
Subject: |
13/14: gnu: thermald: Update to 2.3. |
Date: |
Sat, 7 Nov 2020 07:41:27 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit c9188cdb60028e149b16220bc40b1560ca719d72
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Nov 7 13:09:20 2020 +0100
gnu: thermald: Update to 2.3.
* gnu/packages/admin.scm (thermald): Update to 2.3.
[arguments]: Build verbosely.
Add a no-early-./configure phase.
[inputs]: Add libevdev, upower, and xz.
---
gnu/packages/admin.scm | 25 +++++++++++++++++++++----
1 file changed, 21 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5aef3dd..ba7b464 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3393,7 +3393,7 @@ make it a perfect utility on modern distros.")
(define-public thermald
(package
(name "thermald")
- (version "2.2")
+ (version "2.3")
(source
(origin
(method git-fetch)
@@ -3402,23 +3402,40 @@ make it a perfect utility on modern distros.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1nrhv3bypyc48h9smj5cpq63rawm6vqyg3cwkhpz69rgjnf1283m"))))
+ (base32 "0cisaca2c2z1x9xvxc4lr6nl6yqx5bww6brh73m0p1n643jgq1dl"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
(let ((out (assoc-ref %outputs "out")))
(list (string-append "--with-dbus-sys-dir="
out "/etc/dbus-1/system.d")
- "--localstatedir=/var"))))
+ "--localstatedir=/var"))
+ #:make-flags
+ (list "V=1") ; log build commands
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'bootstrap 'no-early-./configure
+ (lambda _
+ (setenv "NO_CONFIGURE" "yet")
+ ;; XXX thd_trip_point.h redefines "__STDC_LIMIT_MACROS" after
+ ;; <xz>/include/lzma.h. ./configure forcibly appends -Werror
+ ;; to CXXFLAGS, overriding any -Wno-error we'd add.
+ (substitute* "configure.ac"
+ (("-Werror") ""))
+ #t)))))
(native-inputs
`(("autoconf" ,autoconf)
("autoconf-archive" ,autoconf-archive)
("automake" ,automake)
("glib" ,glib "bin") ; for glib-genmarshal, etc.
+ ("gtk-doc" ,gtk-doc)
("pkg-config" ,pkg-config)))
(inputs
`(("dbus-glib" ,dbus-glib)
- ("libxml2" ,libxml2)))
+ ("libevdev" ,libevdev)
+ ("libxml2" ,libxml2)
+ ("upower" ,upower)
+ ("xz" ,xz)))
(home-page "https://01.org/linux-thermal-daemon/")
(synopsis "CPU scaling for thermal management")
(description "The Linux Thermal Daemon helps monitor and control
temperature
- branch master updated (501b325 -> 83dee0e), guix-commits, 2020/11/07
- 01/14: gnu: Add firebird., guix-commits, 2020/11/07
- 05/14: gnu: shotwell: Update to 0.30.11., guix-commits, 2020/11/07
- 03/14: gnu: libscrypt: Add a :static output., guix-commits, 2020/11/07
- 08/14: gnu: kdenlive: Update to 20.08.3., guix-commits, 2020/11/07
- 10/14: uuid: Add support for bcachefs., guix-commits, 2020/11/07
- 02/14: gnu: libreoffice: Enable LibreOffice Base., guix-commits, 2020/11/07
- 09/14: file-systems: Add support for bcachefs., guix-commits, 2020/11/07
- 13/14: gnu: thermald: Update to 2.3.,
guix-commits <=
- 04/14: gnu: bcachefs-tools: Update to 0.1-1.742dbbd., guix-commits, 2020/11/07
- 12/14: gnu: thermald: Correct licence., guix-commits, 2020/11/07
- 07/14: gnu: samba: Update to 4.13.2., guix-commits, 2020/11/07
- 06/14: gnu: system-config-printer: Update to 1.5.13., guix-commits, 2020/11/07
- 11/14: linux-boot: Resume from hibernation., guix-commits, 2020/11/07
- 14/14: doc: Fix Zabbix ‘db-secret-file’ documentation., guix-commits, 2020/11/07