[bug#33304] services: elogind: Fix spelling errors of left value fields in elogind config file.

Message ID CAFBTj=jvMPoA7ayWmka6w-f_e=tvkV-+ZM4e8Fw7+=FigmvACQ@mail.gmail.com
State Accepted
Headers show
Series [bug#33304] services: elogind: Fix spelling errors of left value fields in elogind config file. | expand

Checks

Context Check Description
cbaines/applying patch fail Apply failed
cbaines/applying patch fail Apply failed

Commit Message

Stefan Stefanović Nov. 7, 2018, 4:10 p.m. UTC
Hello.
This patch fixes some spelling errors in logind,conf elogind config file.

I am working on updating elogind.
I need the latest version in order to package some applications.

The newest version of from master with some additional patches is OK,
I am currently testing it on my system.

My plan is to wait for those necessary patches to land in elogind upstream,
probably for the v240 release. If anyone is interested in my
elogind package definition, that uses new meson build system,
and the patches that are necessary please let me know.
I will send them to guix-patches mailing list with the [WIP] tag.

Stefan.

Comments

Ludovic Courtès Nov. 8, 2018, 9:18 a.m. UTC | #1
Hi Stefan,

Stefan Stefanović <stefanx2ovic@gmail.com> skribis:

> This patch fixes some spelling errors in logind,conf elogind config file.

Woow, good catch!  Terrible…

> I am working on updating elogind.
> I need the latest version in order to package some applications.
>
> The newest version of from master with some additional patches is OK,
> I am currently testing it on my system.

Nice.

> My plan is to wait for those necessary patches to land in elogind upstream,
> probably for the v240 release. If anyone is interested in my
> elogind package definition, that uses new meson build system,
> and the patches that are necessary please let me know.
> I will send them to guix-patches mailing list with the [WIP] tag.

Do you know the ETA for v240?

> From 2b3bf63c83cc47448a178aff80c01444fe198abd Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Stefan=20Stefanovi=C4=87?= <stefanx2ovic@gmail.com>
> Date: Wed, 7 Nov 2018 16:37:34 +0100
> Subject: [PATCH] services: elogind: Fix spelling errors of left value fields
>  in elogind config file.
>
> * gnu/services/desktop.scm (elogind-configuration-file)[ini-file]:
>     Fix spelling of left value fields:
>     InhibitDelayMaxSecs, HoldoffTimeoutSecs, IdleActionSeconds, RemoveIpc.

Applied, thanks!

Ludo’.

Patch

From 2b3bf63c83cc47448a178aff80c01444fe198abd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Stefanovi=C4=87?= <stefanx2ovic@gmail.com>
Date: Wed, 7 Nov 2018 16:37:34 +0100
Subject: [PATCH] services: elogind: Fix spelling errors of left value fields
 in elogind config file.

* gnu/services/desktop.scm (elogind-configuration-file)[ini-file]:
    Fix spelling of left value fields:
    InhibitDelayMaxSecs, HoldoffTimeoutSecs, IdleActionSeconds, RemoveIpc.
---
 gnu/services/desktop.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm
index e038f9768..47d1096c6 100644
--- a/gnu/services/desktop.scm
+++ b/gnu/services/desktop.scm
@@ -672,7 +672,7 @@  include the @command{udisksctl} command, part of UDisks, and GNOME Disks."
    ("KillUserProcesses" (yesno elogind-kill-user-processes?))
    ("KillOnlyUsers" (user-name-list elogind-kill-only-users))
    ("KillExcludeUsers" (user-name-list elogind-kill-exclude-users))
-   ("InhibitDelayMaxSecs" (non-negative-integer elogind-inhibit-delay-max-seconds))
+   ("InhibitDelayMaxSec" (non-negative-integer elogind-inhibit-delay-max-seconds))
    ("HandlePowerKey" (handle-action elogind-handle-power-key))
    ("HandleSuspendKey" (handle-action elogind-handle-suspend-key))
    ("HandleHibernateKey" (handle-action elogind-handle-hibernate-key))
@@ -682,16 +682,16 @@  include the @command{udisksctl} command, part of UDisks, and GNOME Disks."
    ("SuspendKeyIgnoreInhibited" (yesno elogind-suspend-key-ignore-inhibited?))
    ("HibernateKeyIgnoreInhibited" (yesno elogind-hibernate-key-ignore-inhibited?))
    ("LidSwitchIgnoreInhibited" (yesno elogind-lid-switch-ignore-inhibited?))
-   ("HoldoffTimeoutSecs" (non-negative-integer elogind-holdoff-timeout-seconds))
+   ("HoldoffTimeoutSec" (non-negative-integer elogind-holdoff-timeout-seconds))
    ("IdleAction" (handle-action elogind-idle-action))
-   ("IdleActionSeconds" (non-negative-integer elogind-idle-action-seconds))
+   ("IdleActionSec" (non-negative-integer elogind-idle-action-seconds))
    ("RuntimeDirectorySize"
     (identity
      (lambda (config)
        (match (elogind-runtime-directory-size-percent config)
          (#f (non-negative-integer (elogind-runtime-directory-size config)))
          (percent (string-append (non-negative-integer percent) "%"))))))
-   ("RemoveIpc" (yesno elogind-remove-ipc?))
+   ("RemoveIPC" (yesno elogind-remove-ipc?))
    "[Sleep]"
    ("SuspendState" (sleep-list elogind-suspend-state))
    ("SuspendMode" (sleep-list elogind-suspend-mode))
-- 
2.19.1