GNU bug report logs -
#75719
[PATCH] gnu: emacs-parinfer-rust-mode: Corrected missing path separator in subsitution
Previous Next
Reported by: Lee Thompson <lee.p.thomp <at> gmail.com>
Date: Tue, 21 Jan 2025 01:07:02 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75719 in the body.
You can then email your comments to 75719 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#75719
; Package
guix-patches
.
(Tue, 21 Jan 2025 01:07:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Lee Thompson <lee.p.thomp <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 21 Jan 2025 01:07:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-parinfer-rust-mode): Corrected missing
path separator in substitution.
The absence of this '/' meant that the parinfer Emacs layer ended up with a
Rust library path that looked like
`/gnu/store/hashvalue-parinfer-rust-emacs-0.4.6/liblibparinfer_rust.so', which
of course doesn't exist. This patch corrects this behaviour and allows the
Emacs layer to properly find the Rust library.
Change-Id: Idfb5d73e62a7233c133ddc0a53afba5e9de06989
---
gnu/packages/emacs-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 36cad3a7df..9c1f8a589f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27977,8 +27977,10 @@ (define-public emacs-parinfer-rust-mode
(add-after 'unpack 'configure
(lambda* (#:key inputs #:allow-other-keys)
(let ((parinfer-lib
- (dirname
- (search-input-file inputs "lib/libparinfer_rust.so"))))
+ (string-append
+ (dirname
+ (search-input-file inputs "lib/libparinfer_rust.so"))
+ "/")))
;; Specify the absolute file names of the parinfer shared
;; library.
;; (make-file-writable "parinfer-rust-mode.el")
--
2.47.1
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sat, 25 Jan 2025 17:56:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Lee Thompson <lee.p.thomp <at> gmail.com>
:
bug acknowledged by developer.
(Sat, 25 Jan 2025 17:56:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 75719-done <at> debbugs.gnu.org (full text, mbox):
Hello,
> * gnu/packages/emacs-xyz.scm (emacs-parinfer-rust-mode): Corrected missing
> path separator in substitution.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 23 Feb 2025 12:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 18 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.