unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40103] [PATCH 0/1] Add emacs-org-static-blog
@ 2020-03-17 14:12 Brice Waegeneire
  2020-03-17 14:12 ` [bug#40104] [PATCH 1/1] gnu: " Brice Waegeneire
  2020-03-18  8:24 ` [bug#40104] [PATCH v2] " Brice Waegeneire
  0 siblings, 2 replies; 8+ messages in thread
From: Brice Waegeneire @ 2020-03-17 14:12 UTC (permalink / raw)
  To: 40103

Brice Waegeneire (1):
  gnu: Add emacs-org-static-blog.

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

-- 
2.25.0

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

* [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog.
  2020-03-17 14:12 [bug#40103] [PATCH 0/1] Add emacs-org-static-blog Brice Waegeneire
@ 2020-03-17 14:12 ` Brice Waegeneire
  2020-03-17 15:07   ` Nicolas Goaziou
  2020-03-18  8:24 ` [bug#40104] [PATCH v2] " Brice Waegeneire
  1 sibling, 1 reply; 8+ messages in thread
From: Brice Waegeneire @ 2020-03-17 14:12 UTC (permalink / raw)
  To: 40104

* gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d45814379b..dfcf283283 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -62,6 +62,7 @@
 ;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
 ;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21806,3 +21807,28 @@ All entries in a specified TODO state will be carried over to the next day.")
        "Daredevil SKK is a version of @acronym{SKK, Simple Kana to Kanji
 conversion program}, a Japanese input method on Emacs.")
       (license license:gpl2+))))
+
+(define-public emacs-org-static-blog
+  (package
+   (name "emacs-org-static-blog")
+   (version "20200117.800")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (string-append
+           "https://melpa.org/packages/org-static-blog-"
+           version ".el"))
+     (sha256
+      (base32
+       "0k1p43pvjvfzgqigybizg9pr8r7sqapbv18vhfg9smik09sjh0gd"))))
+   (build-system emacs-build-system)
+   (home-page
+    "https://github.com/bastibe/org-static-blog")
+   (synopsis
+    "Simple org-mode based static blog generator")
+   (description
+    "Org-static-blog is one more static blog generator, it focuses on being
+simple.  All files are simple org-mode files in a directory.  The only
+requirement is that every org file must have a #+TITLE and a #+DATE, and
+optionally, #+FILETAGS.")
+   (license license:bsd-3)))
-- 
2.25.0

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

* [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog.
  2020-03-17 14:12 ` [bug#40104] [PATCH 1/1] gnu: " Brice Waegeneire
@ 2020-03-17 15:07   ` Nicolas Goaziou
  2020-03-18  8:26     ` Brice Waegeneire
  0 siblings, 1 reply; 8+ messages in thread
From: Nicolas Goaziou @ 2020-03-17 15:07 UTC (permalink / raw)
  To: Brice Waegeneire; +Cc: 40104

Hello,

Brice Waegeneire <brice@waegenei.re> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable.

Thank you.

> +(define-public emacs-org-static-blog
> +  (package
> +   (name "emacs-org-static-blog")
> +   (version "20200117.800")

Could you explain in a comment why using an unstable release is
required?

> +   (source
> +    (origin
> +     (method url-fetch)
> +     (uri (string-append
> +           "https://melpa.org/packages/org-static-blog-"
> +           version ".el"))

It seems upstream is at Github, not MELPA. Could you use Github instead?

> +   (home-page
> +    "https://github.com/bastibe/org-static-blog")
> +   (synopsis
> +    "Simple org-mode based static blog generator")

Nitpick: Simple Org mode based static blog generator

> +   (description
> +    "Org-static-blog is one more static blog generator, it focuses on being
> +simple.  All files are simple org-mode files in a directory.  

Nitpick: All file are simple Org files in a directory.

> The only
> +requirement is that every org file must have a #+TITLE and a #+DATE, and
> +optionally, #+FILETAGS.")

Nitpick: every Org file must have a @samp{title} and a @samp{date}
keywords, and optionally, a @samp{filetags} keyword.

Could you send an updated patch?

Regards,

-- 
Nicolas Goaziou

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

* [bug#40104] [PATCH v2] gnu: Add emacs-org-static-blog.
  2020-03-17 14:12 [bug#40103] [PATCH 0/1] Add emacs-org-static-blog Brice Waegeneire
  2020-03-17 14:12 ` [bug#40104] [PATCH 1/1] gnu: " Brice Waegeneire
@ 2020-03-18  8:24 ` Brice Waegeneire
  2020-03-18 17:15   ` Jack Hill
  1 sibling, 1 reply; 8+ messages in thread
From: Brice Waegeneire @ 2020-03-18  8:24 UTC (permalink / raw)
  To: 40104

* gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d45814379b..e09eb4a19f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -62,6 +62,7 @@
 ;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
 ;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
 ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21806,3 +21807,30 @@ All entries in a specified TODO state will be carried over to the next day.")
        "Daredevil SKK is a version of @acronym{SKK, Simple Kana to Kanji
 conversion program}, a Japanese input method on Emacs.")
       (license license:gpl2+))))
+
+(define-public emacs-org-static-blog
+  ;; Use the latest commit as the last release only contains half of the
+  ;; current total commits.
+  (package
+    (name "emacs-org-static-blog")
+    (version "20200117")
+    (home-page "https://github.com/bastibe/org-static-blog")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit "5c19300d7634e94ae813b1b66abc716fbb1e5fc9")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1m7vmibjc6yk2npfrnnqd3g2099300r0q8mr8cvyivmk5ailbfrh"))))
+    (build-system emacs-build-system)
+    (synopsis
+     "Simple Org mode based static blog generator")
+    (description
+     "@code{emacs-org-static-blog} is one more static blog generator, it focuses on being
+simple.  All file are simple Org files in a directory.  The only requirement
+is that every Org file must have a @samp{title} and a @samp{date} keywords,
+and optionally, a @samp{filetags} keyword.")
+    (license license:bsd-3)))
-- 
2.25.0

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

* [bug#40104] [PATCH 1/1] gnu: Add emacs-org-static-blog.
  2020-03-17 15:07   ` Nicolas Goaziou
@ 2020-03-18  8:26     ` Brice Waegeneire
  2020-03-18 11:28       ` bug#40104: " Nicolas Goaziou
  0 siblings, 1 reply; 8+ messages in thread
From: Brice Waegeneire @ 2020-03-18  8:26 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 40104, Guix-patches

On 2020-03-17 15:07, Nicolas Goaziou wrote:
> Hello,
> 
> Brice Waegeneire <brice@waegenei.re> writes:
> 
>> * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable.
> 
> Thank you.
> 
>> +(define-public emacs-org-static-blog
>> +  (package
>> +   (name "emacs-org-static-blog")
>> +   (version "20200117.800")
> 
> Could you explain in a comment why using an unstable release is
> required?
> 
>> +   (source
>> +    (origin
>> +     (method url-fetch)
>> +     (uri (string-append
>> +           "https://melpa.org/packages/org-static-blog-"
>> +           version ".el"))
> 
> It seems upstream is at Github, not MELPA. Could you use Github 
> instead?
> 
>> +   (home-page
>> +    "https://github.com/bastibe/org-static-blog")
>> +   (synopsis
>> +    "Simple org-mode based static blog generator")
> 
> Nitpick: Simple Org mode based static blog generator
> 
>> +   (description
>> +    "Org-static-blog is one more static blog generator, it focuses on 
>> being
>> +simple.  All files are simple org-mode files in a directory.
> 
> Nitpick: All file are simple Org files in a directory.
> 
>> The only
>> +requirement is that every org file must have a #+TITLE and a #+DATE, 
>> and
>> +optionally, #+FILETAGS.")
> 
> Nitpick: every Org file must have a @samp{title} and a @samp{date}
> keywords, and optionally, a @samp{filetags} keyword.
> 
> Could you send an updated patch?
> 
> Regards,
V2 send with all your suggestions added. And I have requested a new 
release upstream: https://github.com/bastibe/org-static-blog/issues/50

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

* bug#40104: [PATCH 1/1] gnu: Add emacs-org-static-blog.
  2020-03-18  8:26     ` Brice Waegeneire
@ 2020-03-18 11:28       ` Nicolas Goaziou
  0 siblings, 0 replies; 8+ messages in thread
From: Nicolas Goaziou @ 2020-03-18 11:28 UTC (permalink / raw)
  To: Brice Waegeneire; +Cc: 40104-done, Guix-patches

Hello,

Brice Waegeneire <brice@waegenei.re> writes:

> V2 send with all your suggestions added. And I have requested a new
> release upstream: https://github.com/bastibe/org-static-blog/issues/50

Great! Applied as 382ba7bad59ec7205cd883bb93b5e6cf33329d66.

Thank you.

Regards,

-- 
Nicolas Goaziou

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

* [bug#40104] [PATCH v2] gnu: Add emacs-org-static-blog.
  2020-03-18  8:24 ` [bug#40104] [PATCH v2] " Brice Waegeneire
@ 2020-03-18 17:15   ` Jack Hill
  2020-03-18 20:51     ` Nicolas Goaziou
  0 siblings, 1 reply; 8+ messages in thread
From: Jack Hill @ 2020-03-18 17:15 UTC (permalink / raw)
  To: Brice Waegeneire; +Cc: Nicolas Goaziou, 40104

[-- Attachment #1: Type: text/plain, Size: 509 bytes --]

I know this was already merged, but I found an additional nit-pick/typo:

On Wed, 18 Mar 2020, Brice Waegeneire wrote:

> +    (description
> +     "@code{emacs-org-static-blog} is one more static blog generator, it focuses on being
> +simple.  All file are simple Org files in a directory.  The only requirement

I believe it should read, "All files are simple Org files…". Note the lack 
of s on the first instance of file.

Hopefully you don't mind me pointing out such a small thing.

All the best,
Jack

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

* [bug#40104] [PATCH v2] gnu: Add emacs-org-static-blog.
  2020-03-18 17:15   ` Jack Hill
@ 2020-03-18 20:51     ` Nicolas Goaziou
  0 siblings, 0 replies; 8+ messages in thread
From: Nicolas Goaziou @ 2020-03-18 20:51 UTC (permalink / raw)
  To: Jack Hill; +Cc: Brice Waegeneire, 40104

Hello,

Jack Hill <jackhill@jackhill.us> writes:

> I believe it should read, "All files are simple Org files…". Note the
> lack of s on the first instance of file.
>
> Hopefully you don't mind me pointing out such a small thing.

Not at all!

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou

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

end of thread, other threads:[~2020-03-18 20:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-17 14:12 [bug#40103] [PATCH 0/1] Add emacs-org-static-blog Brice Waegeneire
2020-03-17 14:12 ` [bug#40104] [PATCH 1/1] gnu: " Brice Waegeneire
2020-03-17 15:07   ` Nicolas Goaziou
2020-03-18  8:26     ` Brice Waegeneire
2020-03-18 11:28       ` bug#40104: " Nicolas Goaziou
2020-03-18  8:24 ` [bug#40104] [PATCH v2] " Brice Waegeneire
2020-03-18 17:15   ` Jack Hill
2020-03-18 20:51     ` 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).