guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Add upower


From: David Thompson
Subject: Re: [PATCH] Add upower
Date: Sun, 05 Apr 2015 10:55:13 -0400
User-agent: Notmuch/0.18.2 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-pc-linux-gnu)

Andy Wingo <address@hidden> writes:

> Two patches attached.
>
> Unfortunately to use this you need to expand out %base-services to add
> upower to the udev-service form.  Also you need the upower-service,
> obviously, and upower needs to be added to the dbus-service form as
> well.

This isn't the first time I've seen people expanding out %base-services,
and I was also planning to do so for my OS config.  I wonder if we
should create a 'make-base-services' procedure that accomodates the
common tweaks to the %base-services list: the MOTD, the list of packages
for dbus-service, etc.

Anyway, these patches are awesome to me!  Very minor nitpicks and a
style question below:

> From 4725d267b7c18bc4ba4294f90336871311386bb2 Mon Sep 17 00:00:00 2001
> From: Andy Wingo <address@hidden>
> Date: Sat, 4 Apr 2015 21:48:01 +0200
> Subject: [PATCH 2/3] Add upower package.
>
> * gnu/packages/gnome.scm (upower): New variable.
> * gnu/packages/patches/upower-builddir.patch: New patch.
> ---
>  gnu/packages/gnome.scm                     | 53 
> ++++++++++++++++++++++++++++++
>  gnu/packages/patches/upower-builddir.patch | 44 +++++++++++++++++++++++++
>  2 files changed, 97 insertions(+)
>  create mode 100644 gnu/packages/patches/upower-builddir.patch
>
> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
> index 445b4a1..8b0a055 100644
> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -43,6 +43,7 @@
>    #:use-module (gnu packages gnutls)
>    #:use-module (gnu packages iso-codes)
>    #:use-module (gnu packages libcanberra)
> +  #:use-module (gnu packages libusb)
>    #:use-module (gnu packages linux)
>    #:use-module (gnu packages image)
>    #:use-module (gnu packages perl)
> @@ -1718,3 +1719,55 @@ your system.
>  It supports several profiles, multiple tabs and implements several
>  keyboard shortcuts.")
>      (license license:gpl3+)))
> +
> +(define-public upower
> +  (package
> +    (name "upower")
> +    (version "0.99.2")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "http://upower.freedesktop.org/releases/";
> +                           name "-" version ".tar.xz"))
> +       (sha256
> +        (base32
> +         "0vwlh20jmaf01m38kfn8yx2869a3clmkzlycrj99rf4nvwx4bp79"))
> +       (patches (list (search-patch "upower-builddir.patch")))))

Could you add a comment about the upstream status of this patch, perhaps
with a URL pointing to the relevant bug tracker, if applicable?

> +    (build-system glib-or-gtk-build-system)
> +    (arguments
> +     '(;; The tests want to contact the system bus, which can't be done in 
> the
> +       ;; build environment.  The integration test can run, but the last of
> +       ;; the up-self-tests doesn't.  Disable tests for now.
> +       #:tests? #f
> +       #:configure-flags (list "--localstatedir=/var"
> +                               (string-append "--with-udevrulesdir="
> +                                              (assoc-ref %outputs "out")
> +                                              "/lib/udev/rules.d"))
> +       #:phases
> +       (modify-phases %standard-phases
> +         (add-before configure patch-/bin/true
> +                     (lambda _
> +                       (substitute* "configure"
> +                         (("/bin/true") (which "true")))))
> +         (add-before configure patch-integration-test
> +                     (lambda _
> +                       (substitute* "src/linux/integration-test"
> +                         (("/usr/bin/python3") (which "python3"))))))))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)
> +       ("intltool" ,intltool)
> +       ("python" ,python)))
> +    (inputs
> +     `(("eudev" ,eudev)
> +       ("dbus" ,dbus)
> +       ("dbus-glib" ,dbus-glib)
> +       ("libusb" ,libusb)
> +       ))

Reunite with the parens on the previous line for maximum happiness. :)

> +    (home-page "http://upower.freedesktop.org/";)
> +    (synopsis "System daemon for managing power devices")
> +    (description
> +     "UPower is an abstraction for enumerating power devices,
> +listening to device events and querying history and statistics.  Any
> +application or service on the system can access the org.freedesktop.UPower
> +service via the system message bus.")
> +    (license license:gpl2+)))

[...]

>
> From ee0d6fa2b5951edca3c79e3046b42226aca0540a Mon Sep 17 00:00:00 2001
> From: Andy Wingo <address@hidden>
> Date: Sat, 4 Apr 2015 21:49:02 +0200
> Subject: [PATCH 3/3] Add upower service.
>
> * gnu-system.am (GNU_SYSTEM_MODULES): Add gnu/services/upower.scm.
> * gnu/services/upower.scm: New file, defining a upower service.
> ---
>  gnu-system.am           |   1 +
>  gnu/services/upower.scm | 120 
> ++++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 121 insertions(+)
>  create mode 100644 gnu/services/upower.scm
>
> diff --git a/gnu-system.am b/gnu-system.am
> index 95c4eeb..a3638d7 100644
> --- a/gnu-system.am
> +++ b/gnu-system.am
> @@ -330,6 +330,7 @@ GNU_SYSTEM_MODULES =                              \
>    gnu/services/lirc.scm                              \
>    gnu/services/networking.scm                        \
>    gnu/services/ssh.scm                               \
> +  gnu/services/upower.scm                    \
>    gnu/services/xorg.scm                              \
>                                               \
>    gnu/system.scm                             \
> diff --git a/gnu/services/upower.scm b/gnu/services/upower.scm
> new file mode 100644
> index 0000000..c2d3e55
> --- /dev/null
> +++ b/gnu/services/upower.scm
> @@ -0,0 +1,120 @@
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2014, 2015 Ludovic Courtès <address@hidden>
> +;;; Copyright © 2015 Andy Wingo <address@hidden>
> +;;;
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix is free software; you can redistribute it and/or modify it
> +;;; under the terms of the GNU General Public License as published by
> +;;; the Free Software Foundation; either version 3 of the License, or (at
> +;;; your option) any later version.
> +;;;
> +;;; GNU Guix is distributed in the hope that it will be useful, but
> +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +;;; GNU General Public License for more details.
> +;;;
> +;;; You should have received a copy of the GNU General Public License
> +;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
> +
> +(define-module (gnu services upower)
> +  #:use-module (gnu services)
> +  #:use-module (gnu system shadow)
> +  #:use-module (gnu packages gnome)
> +  #:use-module (ice-9 match)
> +  #:use-module (guix monads)
> +  #:use-module (guix store)
> +  #:use-module (guix gexp)
> +  #:export (upower-service))
> +
> +;;; Commentary:
> +;;;
> +;;; This module provides service definitions for the UPower power and battery
> +;;; monitoring service.
> +;;;
> +;;; Code:
> +
> +(define* (configuration-file #:key watts-up-pro? poll-batteries? ignore-lid?
> +                             use-percentage-for-policy? percentage-low
> +                             percentage-critical percentage-action
> +                             time-low time-critical time-action
> +                             critical-power-action)
> +  "Return an upower-daemon configuration file."
> +  (define (bool value)
> +    (if value "true\n" "false\n"))
> +
> +  (text-file "UPower.conf"
> +             (string-append
> +              "[UPower]\n"
> +              "EnableWattsUpPro=" (bool watts-up-pro?)
> +              "NoPollBatteries=" (bool (not poll-batteries?))
> +              "IgnoreLid=" (bool ignore-lid?)
> +              "UsePercentageForPolicy=" (bool use-percentage-for-policy?)
> +              "PercentageLow=" (number->string percentage-low)
> +              "PercentageCritical=" (number->string percentage-critical)
> +              "PercentageAction=" (number->string percentage-action)
> +              "TimeLow=" (number->string time-low)
> +              "TimeCritical=" (number->string time-critical)
> +              "TimeAction=" (number->string time-action)
> +              "CriticalPowerAction=" (match critical-power-action
> +                                       ('hybrid-sleep "HybridSleep")
> +                                       ('hibernate "Hibernate")
> +                                       ('power-off "PowerOff")))))

I didn't realize that key/value pairs like this could all be stuffed
onto one line in a conf file.  Would it make sense to add newlines
anyway, for people that might be inspecting their system and come across
this file?

> +
> +(define* (upower-service #:key (upower upower)
> +                         (watts-up-pro? #f)
> +                         (poll-batteries? #t)
> +                         (ignore-lid? #f)
> +                         (use-percentage-for-policy? #f)
> +                         (percentage-low 10)
> +                         (percentage-critical 3)
> +                         (percentage-action 2)
> +                         (time-low 1200)
> +                         (time-critical 300)
> +                         (time-action 120)
> +                         (critical-power-action 'hybrid-sleep))
> +  "Return a service that runs @command{upowerd}, a system-wide
> +monitor for power consumption and battery levels."
> +  (mlet %store-monad ((config (configuration-file
> +                               #:watts-up-pro? watts-up-pro?
> +                               #:poll-batteries? poll-batteries?
> +                               #:ignore-lid? ignore-lid?
> +                               #:use-percentage-for-policy? 
> use-percentage-for-policy?
> +                               #:percentage-low percentage-low
> +                               #:percentage-critical percentage-critical
> +                               #:percentage-action percentage-action
> +                               #:time-low time-low
> +                               #:time-critical time-critical
> +                               #:time-action time-action
> +                               #:critical-power-action 
> critical-power-action)))
> +    (return
> +     (service
> +      (documentation "Run the UPower power and battery monitor.")
> +      (provision '(upower-daemon))
> +      (requirement '(dbus-system udev))
> +
> +      (start #~(make-forkexec-constructor
> +                (list (string-append #$upower "/libexec/upowerd"))
> +                #:environment-variables
> +                (list (string-append "UPOWER_CONF_FILE_NAME=" #$config))))
> +      (stop #~(make-kill-destructor))
> +      (activate #~(begin
> +                    (use-modules (guix build utils))
> +                    (mkdir-p "/var/lib/upower")
> +                    (let ((user (getpwnam "upower")))
> +                      (chown "/var/lib/upower"
> +                             (passwd:uid user) (passwd:gid user)))))
> +
> +      (user-groups (list (user-group
> +                          (name "upower")
> +                          (system? #t))))
> +      (user-accounts (list (user-account
> +                            (name "upower")
> +                            (group "upower")
> +                            (system? #t)
> +                            (comment "UPower daemon user")
> +                            (home-directory "/var/empty")
> +                            (shell
> +                             
> "/run/current-system/profile/sbin/nologin"))))))))
> +
> +;;; upower.scm ends here
> -- 
> 2.2.1

Thanks!

-- 
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate



reply via email to

[Prev in Thread] Current Thread [Next in Thread]