From 903916f8341bc45408f3883a448f7b0a04368796 Mon Sep 17 00:00:00 2001 From: Fabio Natali Date: Mon, 28 Apr 2025 10:13:45 +0100 Subject: [PATCH] gnu: Add emacs-org-rss-publishing. * gnu/packages/emacs-xyz.scm (emacs-org-rss-publishing): New variable. Change-Id: Ia1b02e050c42b1edcff6ad94a9599c87170e1a12 Signed-off-by: Arun Isaac --- gnu/packages/emacs-xyz.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b33ceec16cbbba79c9a92a1d61b7b005da61189b..18a139d9971df1a49c78b81ff00585acb4c93959 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -129,7 +129,7 @@ ;;; Copyright © 2023, 2025 Evgeny Pisemsky ;;; Copyright © 2023 Gabriel Wicki ;;; Copyright © 2022-2023 Simon Josefsson -;;; Copyright © 2023 Fabio Natali +;;; Copyright © 2023, 2025 Fabio Natali ;;; Copyright © 2023 Arnaud Lechevallier ;;; Copyright © 2023 Ahmad Draidi ;;; Copyright © 2023 Sergiu Ivanov @@ -31945,6 +31945,32 @@ displays it in an Org mode buffer. Another command does all of that but inserts it as an Org entry instead of displaying it in a new buffer.") (license license:gpl3+))) +(define-public emacs-org-rss-publishing + (let ((commit "1b33dc252cfedfbb2107ea407266b168b71bebb1") + (revision "0")) + (package + (name "emacs-org-rss-publishing") + (version (git-version "0.6" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~taingram/org-publish-rss") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0axz3r8jw15imhfmbriljsiaxiiqhgrq77nad3kmmgpmvhhlk65f")))) + (build-system emacs-build-system) + (arguments `(#:tests? #false)) ;no tests + (home-page "https://git.sr.ht/~taingram/org-publish-rss") + (synopsis "RSS generator for Org Mode's built-in publishing system") + (description "This package adds new RSS generation options to the +@code{org-publish-project-alist} variable (see the Org manual if you are new to +the publishing options). It adds @code{:auto-rss} and other options that work +similar to the included @code{:auto-sitemap} functionality. This should make it +easy for users to add RSS feeds to existing Org-based websites.") + (license license:gpl3+)))) + (define-public emacs-blimp (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03")) (package