emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#44385: closed ([PATCH] gnu: stumpish: Fix xprop call.)


From: GNU bug Tracking System
Subject: bug#44385: closed ([PATCH] gnu: stumpish: Fix xprop call.)
Date: Mon, 02 Nov 2020 09:09:02 +0000

Your message dated Mon, 02 Nov 2020 10:08:01 +0100
with message-id <878sbkazym.fsf@yamatai>
and subject line Re: [bug#44385] [PATCH] gnu: stumpish: Fix xprop call.
has caused the debbugs.gnu.org bug report #44385,
regarding [PATCH] gnu: stumpish: Fix xprop call.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
44385: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=44385
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: stumpish: Fix xprop call. Date: Mon, 2 Nov 2020 06:30:27 +0100
* gnu/packages/wm.scm (stumpish): Fix xprop call.
[inputs]: Add xprop.
[arguments]: Add substitution of xprop.
---
starting stumpish yields:
/gnu/store/3dd14k2g5v67jm0hv0cmpvkvdk4631c5-stumpish-0.0.1-2.920f8fc/bin/stumpish:
 line 83: xprop: command not found
/gnu/store/3dd14k2g5v67jm0hv0cmpvkvdk4631c5-stumpish-0.0.1-2.920f8fc/bin/stumpish:
 line 55: xprop: command not found

and after typing "commands" in the repl the same error results in no output.

 gnu/packages/wm.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 58252e7095..b76542692c 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -36,6 +36,7 @@
 ;;; Copyright © 2020 Boris A. Dekshteyn <harlequin78@gmail.com>
 ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
 ;;; Copyright © 2020 EuAndreh <eu@euandre.org>
+;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1722,7 +1723,8 @@ productive, customizable lisp based systems.")
     (name "stumpish")
     (inputs
      `(("bash" ,bash)
-       ("rlwrap" ,rlwrap)))
+       ("rlwrap" ,rlwrap)
+       ("xprop" ,xprop)))
     (build-system trivial-build-system)
     (arguments
      '(#:modules ((guix build utils))
@@ -1734,6 +1736,8 @@ productive, customizable lisp based systems.")
          (substitute* "stumpish"
            (("rlwrap") (string-append (assoc-ref %build-inputs "rlwrap")
                                       "/bin/rlwrap"))
+           (("xprop") (string-append (assoc-ref %build-inputs "xprop")
+                                      "/bin/xprop"))
            (("/bin/sh") (string-append (assoc-ref %build-inputs "bash")
                                        "/bin/bash")))
          (install-file "stumpish" (string-append %output "/bin")))))
-- 
2.29.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#44385] [PATCH] gnu: stumpish: Fix xprop call. Date: Mon, 02 Nov 2020 10:08:01 +0100 User-agent: mu4e 1.4.13; emacs 27.1
Pushed to master as 48b00a4c7efadbb654bf28e9e4e61bb23f70a964. Thanks.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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