GNU bug report logs -
#73646
[PATCH] emacs-alchemist: add alchemist-server output
Previous Next
Reported by: bigbookofbug <at> proton.me
Date: Sat, 5 Oct 2024 21:26:01 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 73646 in the body.
You can then email your comments to 73646 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#73646
; Package
guix-patches
.
(Sat, 05 Oct 2024 21:26:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
bigbookofbug <at> proton.me
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 05 Oct 2024 21:26:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: emma thompson <bigbookofbug <at> proton.me>
---
gnu/packages/emacs-xyz.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 09ac57a464..5567c38a3a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4046,6 +4046,15 @@ (define-public emacs-alchemist
(build-system emacs-build-system)
(propagated-inputs
(list emacs-elixir-mode emacs-dash emacs-company emacs-pkg-info))
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-after 'install 'install-server
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (server (string-append out "/share/emacs/site-lisp/alchemist-1.8.2/alchemist-server")))
+ (mkdir-p server)
+ (copy-recursively "alchemist-server" server)
+ (delete-file-recursively (string-append server "/test"))))))))
(home-page "http://www.github.com/tonini/alchemist.el")
(synopsis "Elixir tooling integration into Emacs")
(description
base-commit: 002df8abd2f4d7c5d23febb1459b77c880345ca7
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73646
; Package
guix-patches
.
(Sun, 06 Oct 2024 13:42:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 73646 <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 05.10.2024 um 21:25 +0000 schrieb
bigbookofbug <at> proton.me:
> From: emma thompson <bigbookofbug <at> proton.me>
>
> ---
> gnu/packages/emacs-xyz.scm | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 09ac57a464..5567c38a3a 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -4046,6 +4046,15 @@ (define-public emacs-alchemist
> (build-system emacs-build-system)
> (propagated-inputs
> (list emacs-elixir-mode emacs-dash emacs-company emacs-pkg-
> info))
> + (arguments
Prefer the new style, that is (list #:phases ...)
> + '(#:phases (modify-phases %standard-phases
> + (add-after 'install 'install-server
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((out (assoc-ref outputs "out"))
> + (server (string-append out
> "/share/emacs/site-lisp/alchemist-1.8.2/alchemist-server")))
Is there a better way to encode this path? You might also want to look
into #:include, which is already provided by emacs-build-system.
> + (mkdir-p server)
> + (copy-recursively "alchemist-server" server)
> + (delete-file-recursively (string-append
> server "/test"))))))))
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73646
; Package
guix-patches
.
(Sun, 06 Oct 2024 17:08:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 73646 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
"Liliana Marie Prikler" <liliana.prikler <at> gmail.com> writes:
> Am Samstag, dem 05.10.2024 um 21:25 +0000 schrieb
> bigbookofbug <at> proton.me:
>> From: emma thompson <bigbookofbug <at> proton.me>
>>
>> ---
>> gnu/packages/emacs-xyz.scm | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/gnu/packages/emacs-xyz.scm
>> b/gnu/packages/emacs-xyz.scm
>> index 09ac57a464..5567c38a3a 100644
>> --- a/gnu/packages/emacs-xyz.scm
>> +++ b/gnu/packages/emacs-xyz.scm
>> @@ -4046,6 +4046,15 @@ (define-public emacs-alchemist
>> (build-system emacs-build-system)
>> (propagated-inputs
>> (list emacs-elixir-mode emacs-dash emacs-company
>> emacs-pkg-
>> info))
>> + (arguments
> Prefer the new style, that is (list #:phases ...)
>> + '(#:phases (modify-phases %standard-phases
>> + (add-after 'install 'install-server
>> + (lambda* (#:key outputs
>> #:allow-other-keys)
>> + (let* ((out (assoc-ref outputs "out"))
>> + (server (string-append out
>> "/share/emacs/site-lisp/alchemist-1.8.2/alchemist-server")))
> Is there a better way to encode this path? You might also want
> to look
> into #:include, which is already provided by emacs-build-system.
>> + (mkdir-p server)
>> + (copy-recursively "alchemist-server"
>> server)
>> + (delete-file-recursively
>> (string-append
>> server "/test"))))))))
> Cheers
hi and thanks for the advice on use of #:include. would the
following be preferrable? output produced the directory correctly
(also added info to copyright section as that part had slipped my
mind:
;;; Copyright © 2024 Ashish SHUKLA <ashish.is <at> lostca.se>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
;;; Copyright © 2024 Spencer King <spencer.king <at> nursiapress.com>
+;;; Copyright © 2024 emma thompson <bigbookofbug <at> proton.me>
;;;
;;; This file is part of GNU Guix.
@@ -4047,22 +4048,15 @@ (define-public emacs-alchemist
(propagated-inputs
(list emacs-elixir-mode emacs-dash emacs-company
emacs-pkg-info))
(arguments
- '(#:phases (modify-phases %standard-phases
- (add-after 'install 'install-server
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (server (string-append out
"/share/emacs/site-lisp/alchemist-1.8.2/alchemist-server")))
- (mkdir-p server)
- (copy-recursively "alchemist-server"
server)
- (delete-file-recursively (string-append
server "/test"))))))))
- (home-page "http://www.github.com/tonini/alchemist.el")
- (synopsis "Elixir tooling integration into Emacs")
- (description
- "This package brings you all the Elixir tooling and power
inside your Emacs
+ (list #:include '(cons "^alchemist-server/"
%default-include)))
+ (home-page "http://www.github.com/tonini/alchemist.el")
+ (synopsis "Elixir tooling integration into Emacs")
+ (description
+ "This package brings you all the Elixir tooling and power
inside your Emacs
editor. It comes with commands to compile, execute and test your
code, spawn
an interactive shell, and look up definitions and documentation
as well as
code completion and project management support.")
- (license license:gpl3+)))
+ (license license:gpl3+)))
(define-public emacs-auto-compile
(package
--
emma
EF515F7D600717781DF9AB2E0FB1CF2867A117F5
[signature.asc (application/pgp-signature, attachment)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73646
; Package
guix-patches
.
(Tue, 15 Oct 2024 07:21:01 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello,
bigbookofbug--- via Guix-patches via <guix-patches <at> gnu.org> writes:
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 09ac57a464..5567c38a3a 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -4046,6 +4046,15 @@ (define-public emacs-alchemist
> (build-system emacs-build-system)
> (propagated-inputs
> (list emacs-elixir-mode emacs-dash emacs-company emacs-pkg-info))
> + (arguments
> + '(#:phases (modify-phases %standard-phases
> + (add-after 'install 'install-server
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((out (assoc-ref outputs "out"))
> + (server (string-append out "/share/emacs/site-lisp/alchemist-1.8.2/alchemist-server")))
> + (mkdir-p server)
> + (copy-recursively "alchemist-server" server)
> + (delete-file-recursively (string-append server "/test"))))))))
Applied. Thank you.
Regards,
--
Nicolas Goaziou
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Tue, 15 Oct 2024 07:22:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
bigbookofbug <at> proton.me
:
bug acknowledged by developer.
(Tue, 15 Oct 2024 07:22:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 12 Nov 2024 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 276 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.