emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#47965: closed ([PATCH] gnu: Add emacs-nameless)


From: GNU bug Tracking System
Subject: bug#47965: closed ([PATCH] gnu: Add emacs-nameless)
Date: Fri, 23 Apr 2021 09:18:02 +0000

Your message dated Fri, 23 Apr 2021 11:17:10 +0200
with message-id <87bla52wdl.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#47965] [PATCH] gnu: Add emacs-nameless
has caused the debbugs.gnu.org bug report #47965,
regarding [PATCH] gnu: Add emacs-nameless
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
47965: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47965
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-nameless Date: Fri, 23 Apr 2021 05:35:55 +0000
>From cbfba4d515fb27c304ec92da0641bf1947ddaf67 Mon Sep 17 00:00:00 2001
From: Alexandr Vityazev <avityazev@posteo.org>
Date: Fri, 23 Apr 2021 00:17:18 +0300
Subject: [PATCH] gnu: Add emacs-nameless.

---
 gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5214ad3852..95a3222123 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27692,3 +27692,35 @@ shorter than usual, using mostly unprefixed keys.")
 vc root directory, and for displaying and/or sorting by the vc
 status of listed files.")
     (license license:gpl3+)))
+
+(define-public emacs-nameless
+  (package
+    (name "emacs-nameless")
+    (version "1.0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Malabarba/Nameless";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "107q1rximjnag9r9vgwh0iv687i3rsscbdnjc46f8l16j6vi4n7d"))))
+    (build-system emacs-build-system)
+    (home-page
+     "https://github.com/Malabarba/nameless";)
+    (synopsis
+     "Hide package namespace in your emacs-lisp code")
+    (description
+     "This package provides a @code{nameless-mode} minor mode
+in which the package namespace prefix is ​​hidden by a colon (@code{:}).
+
+To use this package add the following configuration to your Emacs
+init file: @code{(add-hook 'emacs-lisp-mode-hook #'nameless-mode)}.
+
+You can configure a string to use instead of @code{:} by setting the
+@code{nameless-prefix}, and the name of the face used is `nameless-face'.
+While the mode is active, the @key{C-c C--} key inserts the package
+namespace if appropriate.")
+    (license license:gpl2+)))
-- 
2.31.1

-- 

Alexandr Vityazev

--- End Message ---
--- Begin Message --- Subject: Re: [bug#47965] [PATCH] gnu: Add emacs-nameless Date: Fri, 23 Apr 2021 11:17:10 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hello,

Alexandr Vityazev <avityazev@posteo.org> writes:

> Subject: [PATCH] gnu: Add emacs-nameless.

Thank you.

I fixed the commit message: it was not including the name of the file
being modified.  See commit log for details.

> +    (home-page
> +     "https://github.com/Malabarba/nameless";)
> +    (synopsis
> +     "Hide package namespace in your emacs-lisp code")

Line breaks are not necessary above.

> +    (description
> +     "This package provides a @code{nameless-mode} minor mode
> +in which the package namespace prefix is ​​hidden by a colon (@code{:}).
> +
> +To use this package add the following configuration to your Emacs
> +init file: @code{(add-hook 'emacs-lisp-mode-hook #'nameless-mode)}.
> +
> +You can configure a string to use instead of @code{:} by setting the
> +@code{nameless-prefix}, and the name of the face used is `nameless-face'.
> +While the mode is active, the @key{C-c C--} key inserts the package
> +namespace if appropriate.")

I removed some parts of the description, when I felt they belonged to
a manual instead.

> +    (license license:gpl2+)))

Note upstream license is odd. There is a GPL2 LICENSE file, but the
library is licensed gpl3+. I think gpl2+ is fine, but stil…

Applied.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]