[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: Add morss.
From: |
guix-commits |
Subject: |
08/08: gnu: Add morss. |
Date: |
Sun, 14 May 2023 10:38:27 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit 7b00b155d8f474d493a22ff7cccbeec311b9bbc8
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Mon Apr 24 08:14:32 2023 -0300
gnu: Add morss.
* gnu/packages/syndication.scm (morss): New variable.
---
gnu/packages/syndication.scm | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index a53b1e2f6d..68c7fce26c 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016, 2017, 2019-2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018, 2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2020, 2023 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
;;; Copyright © 2022 Liliana Marie Prikler <liliana.prikler@gmail.com>
@@ -509,6 +509,34 @@ a simple interface that makes it easy to organize and
browse feeds.")
(license (list license:expat
license:gpl3+)))) ; tuir/packages/praw
+(define-public morss
+ (package
+ (name "morss")
+ (version "20221213.2216")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "morss" version))
+ (sha256
+ (base32
+ "1mvxxhzmraxjnw0vz60zkl4d8xp7lw0fs0z537zfhmj1lj9ap4cp"))))
+ (build-system python-build-system)
+ (arguments
+ ;; Tests are not available in the PyPI release and the Git release
+ ;; is lagging behind. Additionally, tests use the network.
+ (list #:tests? #f
+ ;; Sanity check fails to find the module 'bs4', but it's available
+ ;; in the python-beautifulsoup4 dependency.
+ #:phases #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (propagated-inputs (list python-beautifulsoup4 python-chardet
+ python-dateutil python-lxml))
+ (home-page "https://morss.it/")
+ (synopsis "Get full-text RSS feeds")
+ (description "Morss' goal is to get full-text RSS feeds out of striped
+RSS feeds, commonly available on the internet. It also makes it possible
+to create RSS feeds for websites that don't provide any.")
+ (license license:agpl3+)))
+
(define-public syndication-domination
(let ((revision "1")
(commit "75920321062d682437f3fb0319dad227d8b18f6c"))
- branch master updated (eb7312401e -> 7b00b155d8), guix-commits, 2023/05/14
- 07/08: gnu: python-cmaes: Update to 0.9.1., guix-commits, 2023/05/14
- 02/08: gnu: python-anyqt: Update to 0.2.0., guix-commits, 2023/05/14
- 05/08: gnu: pre-commit: Update to 3.3.1., guix-commits, 2023/05/14
- 08/08: gnu: Add morss.,
guix-commits <=
- 06/08: gnu: libshout-idjc: Update to 2.4.6., guix-commits, 2023/05/14
- 04/08: gnu: mlt: Update to 7.16.0., guix-commits, 2023/05/14
- 01/08: gnu: python-opentsne: Update to 0.7.1., guix-commits, 2023/05/14
- 03/08: gnu: mixxx: Update to 2.3.5., guix-commits, 2023/05/14