unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#53055] [PATCH] gnu: Add emacs-ox-gfm.
@ 2022-01-06 15:14 Taiju HIGASHI
  2022-01-06 15:21 ` [bug#53055] [PATCH v2] " Taiju HIGASHI
  0 siblings, 1 reply; 5+ messages in thread
From: Taiju HIGASHI @ 2022-01-06 15:14 UTC (permalink / raw)
  To: 53055; +Cc: Taiju HIGASHI

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=__emacs_complete_pre_command; echo -n "^[^[pwd=${PWD}^[^["; compgen -b -c -a -A function -- y 2>/dev/null, Size: 1620 bytes --]

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ac25286c08..658d97e169 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -105,6 +105,7 @@
 ;;; Copyright © 2021 Simon South <simon@simonsouth.net>
 ;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org>
 ;;; Copyright © 2021 Brian Kubisiak <brian@kubisiak.com>
+;;; Copyright © 2021, 2022 Taiju HIGASHI <higashi@taiju.info>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -7953,6 +7954,24 @@ (define-public emacs-org-cv
 may export to Markdown so that it can be used for a web based CV.")
       (license license:gpl3+))))
 
+(define-public emacs-ox-gfm
+  (package
+    (name "emacs-ox-gfm")
+    (version "1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/larstvei/ox-gfm")
+                    (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/larstvei/ox-gfm")
+    (synopsis "Github Flavored Markdown Back-End for Org Export Engine")
+    (description "This package is a small exporter based on the Markdown exporter already existing in Org mode. It should support the Github flavored markdown features.")
+    (license license:gpl3+)))
+
 (define-public emacs-2048-game
   (package
     (name "emacs-2048-game")
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#53055] [PATCH v2] gnu: Add emacs-ox-gfm.
  2022-01-06 15:14 [bug#53055] [PATCH] gnu: Add emacs-ox-gfm Taiju HIGASHI
@ 2022-01-06 15:21 ` Taiju HIGASHI
  2022-01-06 15:26   ` Taiju HIGASHI
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Taiju HIGASHI @ 2022-01-06 15:21 UTC (permalink / raw)
  To: 53055; +Cc: Taiju HIGASHI

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ac25286c08..658d97e169 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -105,6 +105,7 @@
 ;;; Copyright © 2021 Simon South <simon@simonsouth.net>
 ;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org>
 ;;; Copyright © 2021 Brian Kubisiak <brian@kubisiak.com>
+;;; Copyright © 2021, 2022 Taiju HIGASHI <higashi@taiju.info>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -7953,6 +7954,24 @@ (define-public emacs-org-cv
 may export to Markdown so that it can be used for a web based CV.")
       (license license:gpl3+))))
 
+(define-public emacs-ox-gfm
+  (package
+    (name "emacs-ox-gfm")
+    (version "1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/larstvei/ox-gfm")
+                    (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/larstvei/ox-gfm")
+    (synopsis "Github Flavored Markdown Back-End for Org Export Engine")
+    (description "This package is a small exporter based on the Markdown exporter already existing in Org mode. It should support the Github flavored markdown features.")
+    (license license:gpl3+)))
+
 (define-public emacs-2048-game
   (package
     (name "emacs-2048-game")
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#53055] [PATCH v2] gnu: Add emacs-ox-gfm.
  2022-01-06 15:21 ` [bug#53055] [PATCH v2] " Taiju HIGASHI
@ 2022-01-06 15:26   ` Taiju HIGASHI
  2022-01-06 15:36   ` Taiju HIGASHI
  2022-01-07 20:18   ` bug#53055: " Nicolas Goaziou
  2 siblings, 0 replies; 5+ messages in thread
From: Taiju HIGASHI @ 2022-01-06 15:26 UTC (permalink / raw)
  To: 53055

I'm sorry. The encoding of the previous email was wrong, so I resent it.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#53055] [PATCH v2] gnu: Add emacs-ox-gfm.
  2022-01-06 15:21 ` [bug#53055] [PATCH v2] " Taiju HIGASHI
  2022-01-06 15:26   ` Taiju HIGASHI
@ 2022-01-06 15:36   ` Taiju HIGASHI
  2022-01-07 20:18   ` bug#53055: " Nicolas Goaziou
  2 siblings, 0 replies; 5+ messages in thread
From: Taiju HIGASHI @ 2022-01-06 15:36 UTC (permalink / raw)
  To: 53055; +Cc: higashi

If you have any problems with my copyright statement for the 2021 version, you can delete it.
I forgot to write it in the patch below, so I added it.

https://issues.guix.gnu.org/51950

Thanks




^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#53055: [PATCH v2] gnu: Add emacs-ox-gfm.
  2022-01-06 15:21 ` [bug#53055] [PATCH v2] " Taiju HIGASHI
  2022-01-06 15:26   ` Taiju HIGASHI
  2022-01-06 15:36   ` Taiju HIGASHI
@ 2022-01-07 20:18   ` Nicolas Goaziou
  2 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2022-01-07 20:18 UTC (permalink / raw)
  To: Taiju HIGASHI; +Cc: 53055-done

Hello,

Taiju HIGASHI <higashi@taiju.info> writes:

> +(define-public emacs-ox-gfm

I applied your patch with a proper commit message.

> +    (description "This package is a small exporter based on the Markdown exporter already existing in Org mode. It should support the Github flavored markdown features.")

I also added two spaces at the end of the first sentence.

Thank you.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-07 20:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-06 15:14 [bug#53055] [PATCH] gnu: Add emacs-ox-gfm Taiju HIGASHI
2022-01-06 15:21 ` [bug#53055] [PATCH v2] " Taiju HIGASHI
2022-01-06 15:26   ` Taiju HIGASHI
2022-01-06 15:36   ` Taiju HIGASHI
2022-01-07 20:18   ` bug#53055: " 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).