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

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

bug#61753: closed ([PATCH 1/8] gnu: Add emacs-font-lock+.)


From: GNU bug Tracking System
Subject: bug#61753: closed ([PATCH 1/8] gnu: Add emacs-font-lock+.)
Date: Wed, 08 Mar 2023 15:30:02 +0000

Your message dated Wed, 08 Mar 2023 16:28:50 +0100
with message-id <87mt4n8dot.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#61753] [PATCH 1/8] gnu: Add emacs-font-lock+.
has caused the debbugs.gnu.org bug report #61753,
regarding [PATCH 1/8] gnu: Add emacs-font-lock+.
to be marked as done.

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


-- 
61753: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61753
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/8] gnu: Add emacs-font-lock+. Date: Fri, 24 Feb 2023 15:18:12 +0100
---
 gnu/packages/emacs-xyz.scm | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bfbf5b1abd..a3103ac3d4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -122,7 +122,8 @@
 ;;; Copyright © 2023 Simon Streit <simon@netpanic.org>
 ;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
-;;; Copyright © 2022 Demis Balbach <db@minikn.xyz>
+;;; Copyright © 2023 Demis Balbach <db@minikn.xyz>
+;;; Copyright © 2023 Rostislav Svoboda <Rostislav.Svoboda@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3979,6 +3980,28 @@ (define-public emacs-org-fc
 calculated based on how well you remembered the contents of the card.")
       (license license:gpl3+))))
 
+(define-public emacs-font-lock+
+  (let ((commit "aa1c82d05c9222b09099a0ccd7468e955497940c")
+        (revision "233"))
+    (package
+      (name "emacs-font-lock+")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacsmirror/font-lock-plus";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1369r5p6s9c561g5f772lvrpcqxhvyhqd9yk0853hyl03ags9gvs"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/emacsmirror/font-lock-plus";)
+      (synopsis "Enhancements to standard library `font-lock.el'")
+      (description
+       "Enhancements to standard library `font-lock.el'")
+      (license license:gpl3+))))
+
 (define-public emacs-font-lock-studio
   (let ((commit "12c35967b31233e06946c70627aa3152dacfe261")
         (revision "1"))
-- 
2.39.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#61753] [PATCH 1/8] gnu: Add emacs-font-lock+. Date: Wed, 08 Mar 2023 16:28:50 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hello,

Rostislav Svoboda <rostislav.svoboda@gmail.com> writes:

> +(define-public emacs-font-lock+

Thank you. I applied your patch with a proper commit message.

> +  (let ((commit "aa1c82d05c9222b09099a0ccd7468e955497940c")
> +        (revision "233"))

Revision is internal to Guix. It does not need to obey versionning
system used by upstream. I set it to 0.

> +    (package
> +      (name "emacs-font-lock+")
> +      (version (git-version "0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/emacsmirror/font-lock-plus";)
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32 "1369r5p6s9c561g5f772lvrpcqxhvyhqd9yk0853hyl03ags9gvs"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://github.com/emacsmirror/font-lock-plus";)
> +      (synopsis "Enhancements to standard library `font-lock.el'")
> +      (description
> +       "Enhancements to standard library `font-lock.el'")

Descriptions needs to contain only full sentences, so I reworded it.
Also, I replaced `font-lock.el' with Font Lock.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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