GNU bug report logs -
#59555
[PATCH] gnu: Add emacs-org-rainbow-tags.
Previous Next
Reported by: Hilton Chain <hako <at> ultrarare.space>
Date: Fri, 25 Nov 2022 01:22:02 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 59555 in the body.
You can then email your comments to 59555 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#59555
; Package
guix-patches
.
(Fri, 25 Nov 2022 01:22:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Hilton Chain <hako <at> ultrarare.space>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 25 Nov 2022 01:22: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-org-rainbow-tags): 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 a6002efa51..d7bb3213a4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6105,6 +6105,31 @@ (define-public emacs-org-inline-pdf
inline PDF preview in Org buffers by using pdf2svg.")
(license license:gpl3+)))
+(define-public emacs-org-rainbow-tags
+ ;; Upstream didn't tag version.
+ (let ((commit "c6040d228c5e8c5c6d33c7f81fc09d935ad1bcbd"))
+ (package
+ (name "emacs-org-rainbow-tags")
+ (version "0.1-pre")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KaratasFurkan/org-rainbow-tags")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "006nx01sby8k0fc9lf63ldf0sl94ihldyrvqr9r18fb1gpzvivl6"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/KaratasFurkan/org-rainbow-tags")
+ (synopsis
+ "Colorize org tags automatically to make them visually distinguishable")
+ (description
+ "This package adds random colors to your org tags. In order to make
+colors random but consistent between same tags, colors are generated from the
+hash of the tag names.")
+ (license license:gpl3))))
+
(define-public emacs-org-rich-yank
(package
(name "emacs-org-rich-yank")
--
2.38.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59555
; Package
guix-patches
.
(Sat, 26 Nov 2022 10:44:02 GMT)
Full text and
rfc822 format available.
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello,
Hilton Chain via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-org-rainbow-tags): New variable.
Thank you.
> + (synopsis
> + "Colorize org tags automatically to make them visually distinguishable")
I think "Colorize Org tags automatically" is enough as a synopsis.
> + (description
> + "This package adds random colors to your org tags. In order to make
> +colors random but consistent between same tags, colors are generated from the
> +hash of the tag names.")
org -> Org
Also, you need to separate sentences with two spaces per Texinfo specifications.
> + (license license:gpl3))))
License is actually gpl3+ because the main file mentions:
either version 3 of the License, or ;; (at your option) any later
version.
Could you send an updated patch?
Regards,
--
Nicolas Goaziou
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59555
; Package
guix-patches
.
(Sat, 26 Nov 2022 10:44:02 GMT)
Full text and
rfc822 format available.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59555
; Package
guix-patches
.
(Sat, 26 Nov 2022 12:11:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 59555 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-org-rainbow-tags): New variable.
---
Range-diff:
1: f0cbfb8ff1 ! 1: fc4fc395ed gnu: Add emacs-org-rainbow-tags.
@@ gnu/packages/emacs-xyz.scm: (define-public emacs-org-inline-pdf
+ "006nx01sby8k0fc9lf63ldf0sl94ihldyrvqr9r18fb1gpzvivl6"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/KaratasFurkan/org-rainbow-tags")
-+ (synopsis
-+ "Colorize org tags automatically to make them visually distinguishable")
++ (synopsis "Colorize Org tags automatically")
+ (description
-+ "This package adds random colors to your org tags. In order to make
++ "This package adds random colors to your Org tags. In order to make
+colors random but consistent between same tags, colors are generated from the
+hash of the tag names.")
-+ (license license:gpl3))))
++ (license license:gpl3+))))
+
(define-public emacs-org-rich-yank
(package
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 8eb4dab077..d2ced38a53 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6100,6 +6100,30 @@ (define-public emacs-org-inline-pdf
inline PDF preview in Org buffers by using pdf2svg.")
(license license:gpl3+)))
+(define-public emacs-org-rainbow-tags
+ ;; Upstream didn't tag version.
+ (let ((commit "c6040d228c5e8c5c6d33c7f81fc09d935ad1bcbd"))
+ (package
+ (name "emacs-org-rainbow-tags")
+ (version "0.1-pre")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KaratasFurkan/org-rainbow-tags")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "006nx01sby8k0fc9lf63ldf0sl94ihldyrvqr9r18fb1gpzvivl6"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/KaratasFurkan/org-rainbow-tags")
+ (synopsis "Colorize Org tags automatically")
+ (description
+ "This package adds random colors to your Org tags. In order to make
+colors random but consistent between same tags, colors are generated from the
+hash of the tag names.")
+ (license license:gpl3+))))
+
(define-public emacs-org-rich-yank
(package
(name "emacs-org-rich-yank")
base-commit: adf3eecedade19ce88d3df4325acef4559d05e8f
--
2.38.1
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sat, 26 Nov 2022 23:23:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Hilton Chain <hako <at> ultrarare.space>
:
bug acknowledged by developer.
(Sat, 26 Nov 2022 23:23:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 59555-done <at> debbugs.gnu.org (full text, mbox):
Hello,
Hilton Chain <hako <at> ultrarare.space> writes:
> * gnu/packages/emacs-xyz.scm (emacs-org-rainbow-tags): New variable.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 25 Dec 2022 12:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 178 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.