GNU bug report logs - #47914
[PATCH] gnu: Add daemonize.

Previous Next

Package: guix-patches;

Reported by: WinterHound <winterhound <at> yandex.com>

Date: Tue, 20 Apr 2021 18:25:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: WinterHound <winterhound <at> yandex.com>
Subject: bug#47914: closed (Re: bug#47914: [PATCH] gnu: Add daemonize.)
Date: Sat, 22 May 2021 21:52:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#47914: [PATCH] gnu: Add daemonize.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 47914 <at> debbugs.gnu.org.

-- 
47914: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47914
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: Nicolò Balzarotti <anothersms <at> gmail.com>
Cc: 47914-done <at> debbugs.gnu.org, WinterHound <winterhound <at> yandex.com>
Subject: Re: bug#47914: [PATCH] gnu: Add daemonize.
Date: Sat, 22 May 2021 23:51:30 +0200
Hi,

Nicolò Balzarotti <anothersms <at> gmail.com> skribis:

> WinterHound <winterhound <at> yandex.com> writes:
>
>> +(define-public xdo
>
> The patch name (daemonize) seems not to match the defined package.
>
> License seems ok and tests are missing.
>
> guix lint does not complain
>
> Package builds fine and output binary does work.
>
> There's a typo in the description (optioqqns -> options).  Also, the
> second part of the description seems to be too specific, but others
> might have a different opinion.

I fixed these issues and applied it.

Thanks!

Ludo’.

[Message part 3 (message/rfc822, inline)]
From: WinterHound <winterhound <at> yandex.com>
To: guix-patches <at> gnu.org
Cc: WinterHound <winterhound <at> yandex.com>
Subject: [PATCH] gnu: Add daemonize.
Date: Tue, 20 Apr 2021 23:53:45 +0530
---
 gnu/packages/xdisorg.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 725ea0afd6..37f88f2766 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -510,6 +510,39 @@ manager supports it, you can use xdotool to switch desktops, move windows
 between desktops, and change the number of desktops.")
     (license license:bsd-3)))
 
+(define-public xdo
+  (package
+    (name "xdo")
+    (version "0.5.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/baskerville/xdo")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1h3jrygcjjbavdbkpx2hscsf0yf97gk487lzjdlvymd7dxdv9hy9"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f                      ; no tests
+       #:make-flags
+       (list (string-append "CC=" ,(cc-for-target))
+             (string-append "PREFIX=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (inputs
+     `(("libxcb" ,libxcb)
+       ("xcb-util-wm" ,xcb-util-wm)
+       ("xcb-util" ,xcb-util)))
+    (home-page "https://github.com/baskerville/xdo")
+    (synopsis "Small X utility to perform elementary actions on windows")
+    (description
+     "Apply the given action to the given windows.
+If no window IDs and no optioqqns are given, the action applies to the focused window.")
+    (license license:bsd-2)))
+
 (define-public xeyes
   (package
     (name "xeyes")
-- 
2.31.1




This bug report was last modified 4 years ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.