* [bug#53852] [PATCH] gnu: Add emacs-volatile-highlights.
@ 2022-02-07 16:24 Jai Vetrivelan
2022-02-07 18:34 ` Nicolas Goaziou
0 siblings, 1 reply; 4+ messages in thread
From: Jai Vetrivelan @ 2022-02-07 16:24 UTC (permalink / raw)
To: 53852
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-emacs-volatile-highlights.patch --]
[-- Type: text/x-patch, Size: 2089 bytes --]
From 6c814343186b154751b8391fe62cbef27bcd28e4 Mon Sep 17 00:00:00 2001
From: Jai Vetrivelan <jaivetrivelan@gmail.com>
Date: Mon, 7 Feb 2022 21:46:29 +0530
Subject: [PATCH] gnu: Add emacs-volatile-highlights.
* gnu/packages/emacs-xyz.scm (emacs-volatile-highlights): new variable.
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5251e503c9..ddb69d9847 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -30340,6 +30340,31 @@ (define-public emacs-validate-html
Validator service and displays the results in a buffer in Compilation mode.")
(license license:gpl3+))))
+(define-public emacs-volatile-highlights
+ (let ((commit "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392")
+ (revision "0"))
+ (package
+ (name "emacs-volatile-highlights")
+ (version (git-version "1.15" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "http://github.com/k-talo/volatile-highlights.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256n
+ (base32
+ "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955"))))
+ (build-system emacs-build-system)
+ (home-page "http://github.com/k-talo/volatile-highlights.el")
+ (synopsis "Minor mode for visual feedback on editing operations")
+ (description "This package provides minor mode
+@command{volatile-highlights-mode}, which brings visual feedback to some
+operations by highlighting portions relating to the operations. All of
+highlights made by this library will be removed when any new operation is
+executed.")
+ (license license:gpl3+))))
+
(define-public emacs-global-tags
(let ((commit "06db25d91cc8bfb5e24e02adc04de1226c7e742d")
(revision "0"))
base-commit: 4396fef04717eebb061b2c808087ca638f87a826
prerequisite-patch-id: f9b70f258e65f9418fc5badcb84116c11f514e26
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#53852] [PATCH] gnu: Add emacs-volatile-highlights.
2022-02-07 16:24 [bug#53852] [PATCH] gnu: Add emacs-volatile-highlights Jai Vetrivelan
@ 2022-02-07 18:34 ` Nicolas Goaziou
2022-02-07 23:48 ` [bug#53852] [PATCH v2] " Jai Vetrivelan
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2022-02-07 18:34 UTC (permalink / raw)
To: Jai Vetrivelan; +Cc: 53852
Hello,
Jai Vetrivelan <jaivetrivelan@gmail.com> writes:
> Subject: [PATCH] gnu: Add emacs-volatile-highlights.
Thank you.
> +(define-public emacs-volatile-highlights
> + (let ((commit "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392")
> + (revision "0"))
> + (package
> + (name "emacs-volatile-highlights")
> + (version (git-version "1.15" revision commit))
The commit used matches the version bump. Therefore you can drop
revision and `git-version', and add a comment explaining this.
> + (synopsis "Minor mode for visual feedback on editing operations")
Maybe: Emacs minor mode for visual…
> + (description "This package provides minor mode
> +@command{volatile-highlights-mode}, which brings visual feedback to some
> +operations by highlighting portions relating to the operations. All of
> +highlights made by this library will be removed when any new operation is
> +executed.")
I would start with:
Volatile Highlights minor mode brings visual feedback to…
Otherwise LGTM.
Could you send an updated patch?
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#53852] [PATCH v2] gnu: Add emacs-volatile-highlights.
2022-02-07 18:34 ` Nicolas Goaziou
@ 2022-02-07 23:48 ` Jai Vetrivelan
2022-02-08 0:04 ` bug#53852: " Nicolas Goaziou
0 siblings, 1 reply; 4+ messages in thread
From: Jai Vetrivelan @ 2022-02-07 23:48 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 53852
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-emacs-volatile-highlights.patch --]
[-- Type: text/x-patch, Size: 2007 bytes --]
From f9052a2913af4f6c6852a5c7cfe9a5b6b1af99f9 Mon Sep 17 00:00:00 2001
From: Jai Vetrivelan <jaivetrivelan@gmail.com>
Date: Tue, 8 Feb 2022 05:10:47 +0530
Subject: [PATCH] gnu: Add emacs-volatile-highlights.
* gnu/packages/emacs-xyz.scm (emacs-volatile-highlights): new variable.
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bec613e381..679c50845b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -30312,6 +30312,30 @@ (define-public emacs-validate-html
Validator service and displays the results in a buffer in Compilation mode.")
(license license:gpl3+))))
+(define-public emacs-volatile-highlights
+ ;; XXX: Upstream does not tag releases. Commit below matches version bump.
+ (let ((commit "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392"))
+ (package
+ (name "emacs-volatile-highlights")
+ (version "1.15")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "http://github.com/k-talo/volatile-highlights.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955"))))
+ (build-system emacs-build-system)
+ (home-page "http://github.com/k-talo/volatile-highlights.el")
+ (synopsis "Emacs minor mode for visual feedback on some operations")
+ (description "@code{volatile-highlights-mode} brings visual feedback to
+some operations by highlighting portions relating to the operations. All of
+highlights made by this library will be removed when any new operation is
+executed.")
+ (license license:gpl3+))))
+
(define-public emacs-global-tags
(let ((commit "06db25d91cc8bfb5e24e02adc04de1226c7e742d")
(revision "0"))
base-commit: 64c599c9a33e83d64609a8791fcd8685fc1b9b61
--
2.34.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#53852: [PATCH v2] gnu: Add emacs-volatile-highlights.
2022-02-07 23:48 ` [bug#53852] [PATCH v2] " Jai Vetrivelan
@ 2022-02-08 0:04 ` Nicolas Goaziou
0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2022-02-08 0:04 UTC (permalink / raw)
To: Jai Vetrivelan; +Cc: 53852-done
Hello,
Jai Vetrivelan <jaivetrivelan@gmail.com> writes:
> Subject: [PATCH] gnu: Add emacs-volatile-highlights.
Applied. Thanks!
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-02-08 0:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-07 16:24 [bug#53852] [PATCH] gnu: Add emacs-volatile-highlights Jai Vetrivelan
2022-02-07 18:34 ` Nicolas Goaziou
2022-02-07 23:48 ` [bug#53852] [PATCH v2] " Jai Vetrivelan
2022-02-08 0:04 ` bug#53852: " Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).