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

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

bug#41469: closed ([PATCH] gnu: Add emacs-fountain-mode.)


From: GNU bug Tracking System
Subject: bug#41469: closed ([PATCH] gnu: Add emacs-fountain-mode.)
Date: Sat, 23 May 2020 07:22:02 +0000

Your message dated Sat, 23 May 2020 09:20:48 +0200
with message-id <address@hidden>
and subject line Re: [bug#41469] [PATCH] gnu: Add emacs-fountain-mode.
has caused the debbugs.gnu.org bug report #41469,
regarding [PATCH] gnu: Add emacs-fountain-mode.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
41469: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41469
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add emacs-fountain-mode. Date: Fri, 22 May 2020 21:51:41 -0300
* gnu/packages/emacs-xyz.scm (emacs-fountain-mode): New variable.
---
 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 d952e8ea6c..83e280a21b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <address@hidden>
 ;;; Copyright © 2020 Marius Bakke <address@hidden>
 ;;; Copyright © 2020 pinoaffe <address@hidden>
+;;; Copyright © 2020 Vinicius Monego <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23014,3 +23015,25 @@ files.")
 sources.  It features syntax highlighting, autocompletion, preview of buffer
 or region and use of locally installed binaries.")
     (license license:gpl3+)))
+
+(define-public emacs-fountain-mode
+  (package
+    (name "emacs-fountain-mode")
+    (version "3.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rnkn/fountain-mode";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "08giwg0jwk8zzj2i4cm08322qr6znrnv9a49za7c6j47bykpwj6s"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-seq" ,emacs-seq)))
+    (home-page "https://github.com/rnkn/fountain-mode";)
+    (synopsis "Major mode for screenwriting in Fountain markup")
+    (description "Fountain Mode is a scriptwriting program for GNU Emacs
+using the Fountain plain text markup format.")
+    (license license:gpl3+)))
-- 
2.20.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#41469] [PATCH] gnu: Add emacs-fountain-mode. Date: Sat, 23 May 2020 09:20:48 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hello,

Vinicius Monego <address@hidden> writes:

> * gnu/packages/emacs-xyz.scm (emacs-fountain-mode): New variable.

Thank you.

> +    (propagated-inputs
> +     `(("emacs-seq" ,emacs-seq)))

I removed this, since the Emacs we package already includes `seq'
library.

> +    (home-page "https://github.com/rnkn/fountain-mode";)
> +    (synopsis "Major mode for screenwriting in Fountain markup")
> +    (description "Fountain Mode is a scriptwriting program for GNU Emacs
> +using the Fountain plain text markup format.")
> +    (license license:gpl3+)))

As a side note, it is best to avoid adding new packages at the end of
the files, since this is more likely to introduce merge conflicts (this
one didn't, tho).

Regards,

-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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