GNU bug report logs -
#39091
[PATCH] gnu: entr: Fix references to external programs
Previous Next
Reported by: Jakub Kądziołka <kuba <at> kadziolka.net>
Date: Sat, 11 Jan 2020 18:12: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
[Message part 1 (text/plain, inline)]
Your bug report
#39091: [PATCH] gnu: entr: Fix references to external programs
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 39091 <at> debbugs.gnu.org.
--
39091: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39091
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi,
Jakub Kądziołka <kuba <at> kadziolka.net> skribis:
> * gnu/packages/entr.scm (entr)[remove-fhs-file-names]: Use (which)
> instead of relying on the runtime PATH. Patch the path for /bin/sh
> too.
> * gnu/packages/entr.scm (entr)[inputs]: Add a dependency on ncurses to
> get the path of the clear binary it provides.
Committed with tweaks to the commit log.
Thanks,
Ludo’.
[Message part 3 (message/rfc822, inline)]
* gnu/packages/entr.scm (entr)[remove-fhs-file-names]: Use (which)
instead of relying on the runtime PATH. Patch the path for /bin/sh
too.
* gnu/packages/entr.scm (entr)[inputs]: Add a dependency on ncurses to
get the path of the clear binary it provides.
---
gnu/packages/entr.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm
index d0111452df..3b006e2d85 100644
--- a/gnu/packages/entr.scm
+++ b/gnu/packages/entr.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2016 Ludovic Courtès <ludo <at> gnu.org>
;;; Copyright © 2019 Ricardo Wurmus <rekado <at> elephly.net>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;; Copyright © 2020 Jakub Kądziołka <kuba <at> kadziolka.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -20,6 +21,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages entr)
+ #:use-module (gnu packages ncurses)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix download)
@@ -52,11 +54,13 @@
(invoke "./configure"))))
(add-before 'build 'remove-fhs-file-names
(lambda _
- ;; Use the tools available in $PATH.
(substitute* "entr.c"
- (("/bin/cat") "cat")
- (("/usr/bin/clear") "clear"))
+ (("/bin/sh") (which "sh"))
+ (("/bin/cat") (which "cat"))
+ (("/usr/bin/clear") (which "clear")))
#t)))))
+ ;; ncurses provides the `clear' binary
+ (inputs `(("ncurses" ,ncurses)))
(home-page "http://entrproject.org/")
(synopsis "Run arbitrary commands when files change")
(description
--
2.24.1
This bug report was last modified 5 years and 193 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.