GNU bug report logs -
#41389
[PATCH] gnu: guile-dsv: Wrap script.
Previous Next
Reported by: Jack Hill <jackhill <at> jackhill.us>
Date: Tue, 19 May 2020 04:15: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 message dated Sun, 24 May 2020 21:56:35 +0200
with message-id <87a71x3y4s.fsf <at> gnu.org>
and subject line Re: [PATCH 1/2] gnu: guile-dsv: Wrap script.
has caused the debbugs.gnu.org bug report #41389,
regarding [PATCH] gnu: guile-dsv: Wrap script.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
41389: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41389
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/guile-xyz.scm (guile-dsv)[arguments]: Add "wrap program" phase.
---
gnu/packages/guile-xyz.scm | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 674b1f922b..ee2e44653e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -25,6 +25,7 @@
;;; Copyright © 2019 Timothy Sample <samplet <at> ngyro.com>
;;; Copyright © 2019, 2020 Martin Becze <mjbecze <at> riseup.net>
;;; Copyright © 2020 Evan Straw <evan.straw99 <at> gmail.com>
+;;; Copyright © 2020 Jack Hill <jackhill <at> jackhill.us>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -467,7 +468,9 @@ you send to a FIFO file.")
(inputs `(("guile" ,guile-2.2)))
(propagated-inputs `(("guile2.2-lib" ,guile2.2-lib)))
(arguments
- '(#:phases (modify-phases %standard-phases
+ `(#:modules ((ice-9 match) (ice-9 ftw)
+ ,@%gnu-build-system-modules)
+ #:phases (modify-phases %standard-phases
(add-before 'configure 'set-guilesitedir
(lambda _
(substitute* "Makefile.in"
@@ -482,6 +485,28 @@ $(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)\n"))
(("^guilesitedir =.*$")
"guilesitedir = \
$(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)\n"))
+ #t))
+ (add-after 'install 'wrap-program
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin"))
+ (site (string-append out "/share/guile/site"))
+ (guile-lib (assoc-ref inputs "guile2.2-lib")))
+ (match (scandir site)
+ (("." ".." version)
+ (let ((modules (string-append site "/" version))
+ (compiled-modules (string-append
+ out "/lib/guile/" version
+ "/site-ccache")))
+ (wrap-program (string-append bin "/dsv")
+ `("GUILE_LOAD_PATH" prefix
+ (,modules
+ ,(string-append guile-lib "/share/guile/site")))
+ `("GUILE_LOAD_COMPILED_PATH" prefix
+ (,compiled-modules
+ ,(string-append guile-lib "/lib/guile/"
+ version
+ "/site-ccache"))))))))
#t)))))
(home-page "https://github.com/artyom-poptsov/guile-dsv")
(synopsis "DSV module for Guile")
--
2.26.2
[Message part 3 (message/rfc822, inline)]
Hello,
Jack Hill <jackhill <at> jackhill.us> skribis:
> * gnu/packages/guile-xyz.scm (guile-dsv)[arguments]: Add "wrap program"
> phase. Import target-guile-effective-version from guile-build-system for use
> in new phase.
[...]
> * gnu/packages/guile-xyz.scm (guile-dsv)[inputs]: Replace guile-2.2 with
> guile-3.0.
> [propagated-inputs]: Replace guile2.2-lib with guile-lib.
> [arguments]: Add "configure support guile3.0" phase.
> (guile2.2-dsv): New variable.
Applied both, thank you!
Ludo’.
This bug report was last modified 5 years and 56 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.