unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45642] [PATCH] Add three Jekyll plugins.
@ 2021-01-04  0:58 paul
  2021-01-04  1:00 ` [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed Giacomo Leidi
  2021-02-28 22:18 ` bug#45642: [PATCH] Add three Jekyll plugins Björn Höfling
  0 siblings, 2 replies; 5+ messages in thread
From: paul @ 2021-01-04  0:58 UTC (permalink / raw)
  To: 45642

Dear Guixers,

I'm sending a patch series to add three Jekyll plugins.

Thank you,

Giacomo





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

* [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed.
  2021-01-04  0:58 [bug#45642] [PATCH] Add three Jekyll plugins paul
@ 2021-01-04  1:00 ` Giacomo Leidi
  2021-01-04  1:00   ` [bug#45642] [PATCH 2/3] gnu: Add ruby-jekyll-sitemap Giacomo Leidi
  2021-01-04  1:00   ` [bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag Giacomo Leidi
  2021-02-28 22:18 ` bug#45642: [PATCH] Add three Jekyll plugins Björn Höfling
  1 sibling, 2 replies; 5+ messages in thread
From: Giacomo Leidi @ 2021-01-04  1:00 UTC (permalink / raw)
  To: 45642; +Cc: Giacomo Leidi

* gnu/packages/ruby.scm (ruby-jekyll-feed): New variable.
---
 gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index c5b1af79d3..03b287abc1 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11758,3 +11758,28 @@ defined in @file{.travis.yml} on your local machine, using @code{rvm},
 you the speed and portability of libgit2 with the beauty of the Ruby
 language.")
     (license license:expat)))
+
+(define-public ruby-jekyll-feed
+  (package
+    (name "ruby-jekyll-feed")
+    (version "0.15.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "jekyll-feed" version))
+        (sha256
+          (base32
+            "1zxqkrnix0xiw98531h5ga6h69jhzlx2jh9qhvcl67p8nq3sgza9"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #false))     ;there are none
+    (propagated-inputs
+      `(("jekyll" ,jekyll)))
+    (synopsis
+      "Jekyll plugin to generate an Atom feed of your Jekyll posts")
+    (description
+      "This package provides a Jekyll plugin to generate an Atom feed
+of your Jekyll posts.")
+    (home-page
+      "https://github.com/jekyll/jekyll-feed")
+    (license license:expat)))
-- 
2.29.2





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

* [bug#45642] [PATCH 2/3] gnu: Add ruby-jekyll-sitemap.
  2021-01-04  1:00 ` [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed Giacomo Leidi
@ 2021-01-04  1:00   ` Giacomo Leidi
  2021-01-04  1:00   ` [bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag Giacomo Leidi
  1 sibling, 0 replies; 5+ messages in thread
From: Giacomo Leidi @ 2021-01-04  1:00 UTC (permalink / raw)
  To: 45642; +Cc: Giacomo Leidi

* gnu/packages/ruby.scm (ruby-jekyll-sitemap): New variable.
---
 gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 03b287abc1..55867297ec 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11783,3 +11783,28 @@ of your Jekyll posts.")
     (home-page
       "https://github.com/jekyll/jekyll-feed")
     (license license:expat)))
+
+(define-public ruby-jekyll-sitemap
+  (package
+    (name "ruby-jekyll-sitemap")
+    (version "1.4.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "jekyll-sitemap" version))
+        (sha256
+          (base32
+            "0622rwsn5i0m5xcyzdn86l68wgydqwji03lqixdfm1f1xdfqrq0d"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #false))     ;there are none
+    (propagated-inputs
+      `(("jekyll" ,jekyll)))
+    (synopsis
+      "Automatically generate a sitemap.xml for your Jekyll site")
+    (description
+      "This package provides a Jekyll plugin to silently generate
+a sitemaps.org compliant sitemap for your Jekyll site.")
+    (home-page
+      "https://github.com/jekyll/jekyll-sitemap")
+    (license license:expat)))
-- 
2.29.2





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

* [bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag.
  2021-01-04  1:00 ` [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed Giacomo Leidi
  2021-01-04  1:00   ` [bug#45642] [PATCH 2/3] gnu: Add ruby-jekyll-sitemap Giacomo Leidi
@ 2021-01-04  1:00   ` Giacomo Leidi
  1 sibling, 0 replies; 5+ messages in thread
From: Giacomo Leidi @ 2021-01-04  1:00 UTC (permalink / raw)
  To: 45642; +Cc: Giacomo Leidi

* gnu/packages/ruby.scm (ruby-jekyll-seo-tag): New variable.
---
 gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 55867297ec..14c69c4065 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11808,3 +11808,28 @@ a sitemaps.org compliant sitemap for your Jekyll site.")
     (home-page
       "https://github.com/jekyll/jekyll-sitemap")
     (license license:expat)))
+
+(define-public ruby-jekyll-seo-tag
+  (package
+   (name "ruby-jekyll-seo-tag")
+   (version "2.7.1")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (rubygems-uri "jekyll-seo-tag" version))
+     (sha256
+      (base32
+       "0fsi75hymk2wswy216fs224p5ycrzjw1kshw1bsl5czhv42wr2w3"))))
+   (build-system ruby-build-system)
+   (arguments
+    `(#:tests? #false))
+   (propagated-inputs
+    `(("jekyll" ,jekyll)))
+   (synopsis
+    "Jekyll plugin to add metadata tags for search engines and social networks")
+   (description
+    "This package provides a Jekyll plugin to add metadata tags for search engines
+and social networks to better index and display your site's content.")
+   (home-page
+    "https://github.com/jekyll/jekyll-seo-tag")
+   (license license:expat)))
-- 
2.29.2





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

* bug#45642: [PATCH] Add three Jekyll plugins.
  2021-01-04  0:58 [bug#45642] [PATCH] Add three Jekyll plugins paul
  2021-01-04  1:00 ` [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed Giacomo Leidi
@ 2021-02-28 22:18 ` Björn Höfling
  1 sibling, 0 replies; 5+ messages in thread
From: Björn Höfling @ 2021-02-28 22:18 UTC (permalink / raw)
  To: paul; +Cc: 45642-done

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

On Mon, 4 Jan 2021 01:58:36 +0100
paul <goodoldpaul@autistici.org> wrote:

> Dear Guixers,
> 
> I'm sending a patch series to add three Jekyll plugins.

Pushed as

d4baac70b85ec5f9690328c5e0b0adee84b6b420

Thanks,

Björn

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

end of thread, other threads:[~2021-02-28 22:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-04  0:58 [bug#45642] [PATCH] Add three Jekyll plugins paul
2021-01-04  1:00 ` [bug#45642] [PATCH 1/3] gnu: Add ruby-jekyll-feed Giacomo Leidi
2021-01-04  1:00   ` [bug#45642] [PATCH 2/3] gnu: Add ruby-jekyll-sitemap Giacomo Leidi
2021-01-04  1:00   ` [bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag Giacomo Leidi
2021-02-28 22:18 ` bug#45642: [PATCH] Add three Jekyll plugins Björn Höfling

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).