GNU bug report logs -
#76351
[PATCH] gnu: Add emacs-nushell-mode.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 76351 in the body.
You can then email your comments to 76351 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, divya <at> subvertising.org, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#76351
; Package
guix-patches
.
(Sun, 16 Feb 2025 20:08:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Skylar Hill <stellarskylark <at> posteo.net>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, divya <at> subvertising.org, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Sun, 16 Feb 2025 20:08: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-nushell-mode): New variable.
Change-Id: I216d8a9f7e7f89e379174a5d93020ff44c69d51f
---
gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c006f1d912..d2bdd7b52d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35629,6 +35629,27 @@ (define-public emacs-ntlm
implementation of Windows NT and LanManager compatible password encryption.")
(license license:gpl3+)))
+(define-public emacs-nushell-mode
+ (package
+ (name "emacs-nushell-mode")
+ (version "20231204.1233")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mrkkrp/nushell-mode.git")
+ (commit "c179c3cf573b2cc9421dc08bf47e2d619c7791ee")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08kx31h22szvmccswwmhyj615c9fqln45darlfkj7q84dmc2fd3n"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/mrkkrp/nushell-mode")
+ (synopsis "Major mode for Nushell scripts")
+ (description
+ "This package provides a very basic version of major mode for Nushell shell
+scripts.")
+ (license license:gpl3+)))
+
(define-public emacs-nadvice
(package
(name "emacs-nadvice")
base-commit: 6dde0ee30e5e030c2535514e9e39aa50518a5d20
prerequisite-patch-id: cc459efaf23197e58e97a6f0ad62058f71178746
prerequisite-patch-id: 492a9743436eae7679c7d9002f5b2d175eff9f1b
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#76351
; Package
guix-patches
.
(Mon, 17 Feb 2025 18:15:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 76351 <at> debbugs.gnu.org (full text, mbox):
Hi Skylar,
Skylar Hill <stellarskylark <at> posteo.net> writes:
> * gnu/packages/emacs-xyz.scm (emacs-nushell-mode): New variable.
>
> Change-Id: I216d8a9f7e7f89e379174a5d93020ff44c69d51f
> ---
> gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm
> b/gnu/packages/emacs-xyz.scm
> index c006f1d912..d2bdd7b52d 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -35629,6 +35629,27 @@ (define-public emacs-ntlm
> implementation of Windows NT and LanManager compatible password
> encryption.")
> (license license:gpl3+)))
>
> +(define-public emacs-nushell-mode
> + (package
> + (name "emacs-nushell-mode")
> + (version "20231204.1233")
This needs to use `git-version'. While the package has no tagged
releases, nushell-mode.el has 0.1.0 declared as its version[1], so
using that is preferable to using a date.
You can look at other package in emacs-xyz.scm if you need an
example of how to version a package built off a Git snapshot;
emacs-0x0 is one that does.
Thanks,
-- Ian
[1]:
https://github.com/mrkkrp/nushell-mode/blob/c179c3cf573b2cc9421dc08bf47e2d619c7791ee/nushell-mode.el#L10
Information forwarded
to
andrew <at> trop.in, divya <at> subvertising.org, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#76351
; Package
guix-patches
.
(Mon, 17 Feb 2025 19:50:04 GMT)
Full text and
rfc822 format available.
Message #11 received at 76351 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-nushell-mode): New variable.
Change-Id: I216d8a9f7e7f89e379174a5d93020ff44c69d51f
---
Ian,
Ian Eure <ian <at> retrospec.tv> writes:
> This needs to use `git-version'. While the package has no tagged
> releases, nushell-mode.el has 0.1.0 declared as its version[1], so
> using that is preferable to using a date.
Good catch, thanks! Here is my corrected patch.
Thanks,
Skylar
gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c006f1d912..0fd8498d7a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35629,6 +35629,29 @@ (define-public emacs-ntlm
implementation of Windows NT and LanManager compatible password encryption.")
(license license:gpl3+)))
+(define-public emacs-nushell-mode
+ (let ((commit "c179c3cf573b2cc9421dc08bf47e2d619c7791ee")
+ (revision "0"))
+ (package
+ (name "emacs-nushell-mode")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mrkkrp/nushell-mode.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "08kx31h22szvmccswwmhyj615c9fqln45darlfkj7q84dmc2fd3n"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/mrkkrp/nushell-mode")
+ (synopsis "Major mode for Nushell scripts")
+ (description
+ "This package provides a very basic version of major mode for Nushell shell
+scripts.")
+ (license license:gpl3+))))
+
(define-public emacs-nadvice
(package
(name "emacs-nadvice")
base-commit: 6dde0ee30e5e030c2535514e9e39aa50518a5d20
prerequisite-patch-id: cc459efaf23197e58e97a6f0ad62058f71178746
prerequisite-patch-id: 492a9743436eae7679c7d9002f5b2d175eff9f1b
--
2.48.1
Merged 76351 76370.
Request was from
Ian Eure <ian <at> retrospec.tv>
to
control <at> debbugs.gnu.org
.
(Mon, 17 Feb 2025 21:57:01 GMT)
Full text and
rfc822 format available.
bug closed, send any further explanations to
76370 <at> debbugs.gnu.org and ian <at> retrospec.tv
Request was from
Ian Eure <ian <at> retrospec.tv>
to
control <at> debbugs.gnu.org
.
(Mon, 17 Feb 2025 21:57:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#76351
; Package
guix-patches
.
(Mon, 17 Feb 2025 21:58:02 GMT)
Full text and
rfc822 format available.
Message #18 received at 76351 <at> debbugs.gnu.org (full text, mbox):
Hi Skylar,
Thanks for the fix, pushed as 2b94ea3880.
I have no idea how this caused a new bug to be opened & assigned
to me.
-- Ian
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 18 Mar 2025 11:24:35 GMT)
Full text and
rfc822 format available.
This bug report was last modified 95 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.