GNU bug report logs -
#47626
[PATCH 0/5] Update emacs-geiser
Previous Next
Reported by: Morgan.J.Smith <at> outlook.com
Date: Tue, 6 Apr 2021 20:54:01 UTC
Severity: normal
Tags: patch
Done: Leo Prikler <leo.prikler <at> student.tugraz.at>
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 Wed, 07 Apr 2021 19:29:37 +0200
with message-id <e1cdb843ac8550d4f8ac49f197588034cc91a315.camel <at> student.tugraz.at>
and subject line Re: [PATCH 2/5] gnu: Add emacs-geiser-guile.
has caused the debbugs.gnu.org bug report #47626,
regarding [PATCH 0/5] Update emacs-geiser
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
47626: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47626
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
So emacs-geiser no longer bundles all the scheme stubs with the main install. That why I had to add emacs-geiser-guile to a bunch of inputs. I used guix refresh to check all the dependencies and it turned out I had to also update emacs-guix or it wouldn't build.
[PATCH 1/5] gnu: emacs-geiser: Update to 0.13.
[PATCH 2/5] gnu: Add emacs-geiser-guile.
[PATCH 3/5] gnu: emacs-guix: Update to 0.5.2-4.8ce6d21
[PATCH 4/5] gnu: emacs-flycheck-guile: Add missing input
[PATCH 5/5] gnu: guile-studio: Add missing input
[Message part 3 (message/rfc822, inline)]
Hi again,
after the debugging we did together in IRC, some short exchange with
jaor and a bit of hacking, I pushed a working variant to wip-emacs.
I'm therefore going to mark this as done.
Am Mittwoch, den 07.04.2021, 12:24 +0200 schrieb Leo Prikler:
> Hi Morgan,
>
> just a heads up, that this patch, which you've submitted for review,
> will break with upcoming changes in emacs-build-system. Check out
> the
> wip-emacs branch for more information.
>
> Am Dienstag, den 06.04.2021, 17:33 -0400 schrieb
> Morgan.J.Smith <at> outlook.com:
> > From: Morgan Smith <Morgan.J.Smith <at> outlook.com>
> >
> > * gnu/packages/emacs-xyz.scm (emacs-geiser-guile): New variable.
> > ---
> > gnu/packages/emacs-xyz.scm | 38
> > ++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 38 insertions(+)
> >
> > diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-
> > xyz.scm
> > index 1756f0cdec..4d271c16cd 100644
> > --- a/gnu/packages/emacs-xyz.scm
> > +++ b/gnu/packages/emacs-xyz.scm
> > @@ -257,6 +257,44 @@ (define-public emacs-geiser
> > schemer, giving them access to live metadata.")
> > (license license:bsd-3)))
> >
> > +(define-public emacs-geiser-guile
> > + (package
> > + (name "emacs-geiser-guile")
> > + (version "0.13")
> > + (source
> > + (origin
> > + (method git-fetch)
> > + (uri (git-reference
> > + (url "https://gitlab.com/emacs-geiser/guile.git")
> > + (commit version)))
> > + (file-name (git-file-name name version))
> > + (sha256
> > + (base32
> > "0w264pjwlxna31260ll6gd0n77jlynhzf3h2dws5wr7jflns5mbc"))))
> > + (build-system emacs-build-system)
> > + (arguments
> > + '(#:include (cons "^src/" %default-include)
> > + #:phases
> > + (modify-phases %standard-phases
> > + (add-after 'move-elisp-files 'set-src-path
> > + (lambda* (#:key outputs #:allow-other-keys)
> > + (let ((out (assoc-ref outputs "out"))
> > + (file "geiser-guile.el"))
> > + (make-file-writable file)
> > + (emacs-substitute-variables file
> > + ("geiser-guile-scheme-dir"
> > + (string-append out "/share/emacs/site-
> > lisp/src/geiser")))
> > + #t))))))
> The site-lisp/src path is no longer valid, it should instead be
> site-lisp/guile-geiser-<guile-geiser-version>/src.
> > + (inputs
> > + `(("guile" ,guile-2.2)))
> > + (propagated-inputs
> > + `(("geiser" ,emacs-geiser)))
> > + (home-page "https://nongnu.org/geiser/")
> > + (synopsis "Guile Scheme support for Geiser")
> > + (description
> > + "This package adds support for the Guile Scheme
> > implementation
> > to Geiser,
> > +a generic Scheme interaction mode for the GNU Emacs editor.")
> > + (license license:bsd-3)))
> > +
> > (define-public emacs-ac-geiser
> > (let ((commit "93818c936ee7e2f1ba1b315578bde363a7d43d05")
> > (revision "0"))
>
> Regards,
> Leo
This bug report was last modified 4 years and 46 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.