From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 24 19:23:43 2023 Received: (at submit) by debbugs.gnu.org; 24 Apr 2023 23:23:43 +0000 Received: from localhost ([127.0.0.1]:50647 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pr5X4-0005Ap-Id for submit@debbugs.gnu.org; Mon, 24 Apr 2023 19:23:42 -0400 Received: from lists.gnu.org ([209.51.188.17]:36472) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pr5X3-0005Ai-IS for submit@debbugs.gnu.org; Mon, 24 Apr 2023 19:23:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pr5X3-0005SI-CC for guix-patches@gnu.org; Mon, 24 Apr 2023 19:23:41 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pr5X1-0005KL-2x for guix-patches@gnu.org; Mon, 24 Apr 2023 19:23:41 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 6B8E4240084 for ; Tue, 25 Apr 2023 01:23:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1682378615; bh=FAdGzNpHpePgF/r0oQqGF3H6exyPxx8KMUdAHMD1wRM=; h=From:To:Cc:Subject:Date:From; b=G03EQOhYQnqVvg/Q/P+9YB0ZtMQzlq8+nIK9yV2kBdvnUt7GEyei4fB50Q8/USiQt QORfx4liylUBJqd6amrwDzM9c57TdlxYxOtbiHAtkDSxVxwyaYvW3hFK4bR7cIKApf +Vi2hHkYc9A1hcqf1bNgiSY5vPUNlp4X9GhBj1V0JwCCjaQGW0y/vY2uVBVuQV6RkH Akq+WsX2dPh4o9tiRCrWKkgZ6j5o0zWaea7YzDSDyEz3cVVDE26cn4psSoUP+G6SyP GTBSHsrjl9P+yEilhYsMyZiuCUBGCEDK9mLo8hxThh58+DL+ZBBrcnWko0Zd360wwk v6EH+f/qBD6gA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Q51Qt1bNyz6tsj; Tue, 25 Apr 2023 01:23:33 +0200 (CEST) From: Vinicius Monego To: guix-patches@gnu.org Subject: [PATCH] gnu: Add morss. Date: Mon, 24 Apr 2023 23:22:29 +0000 Message-Id: <20230424232229.2978683-1-monego@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.65; envelope-from=monego@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Vinicius Monego X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * 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 55c9d871e3..9554b14f0c 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 ;;; Copyright © 2018, 2019, 2021 Tobias Geerinckx-Rice -;;; Copyright © 2020 Vinicius Monego +;;; Copyright © 2020, 2023 Vinicius Monego ;;; Copyright © 2021 Felix Gruber ;;; Copyright © 2022 Luis Felipe López Acevedo ;;; Copyright © 2022 Liliana Marie Prikler @@ -508,6 +508,34 @@ (define-public tuir (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 "f64caabd6f46be14fdb92085971a7f2d6fa5e61e")) base-commit: bcf63e6bf2ed3dec447d5c2fa3bc67b784eacbe1 -- 2.34.1 From debbugs-submit-bounces@debbugs.gnu.org Sat May 06 11:14:15 2023 Received: (at 63060) by debbugs.gnu.org; 6 May 2023 15:14:15 +0000 Received: from localhost ([127.0.0.1]:35559 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvJbz-000447-51 for submit@debbugs.gnu.org; Sat, 06 May 2023 11:14:15 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36790) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvJbv-00043s-U3 for 63060@debbugs.gnu.org; Sat, 06 May 2023 11:14:13 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvJbp-0002rT-U8; Sat, 06 May 2023 11:14:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=wZnmIs5zSaH0HAmhBwt/t6c9WZLIgHm23/zVvTtQPw8=; b=DKI73mdK3cLK/Q2zCVtR PnuK+Li0xevz2zy4mdUKcFmVbPGfr8KTkA3tH67BiZ3TdVhK2uTu1iiINKAf74pzvgXibVsnbgFic 1AtKAm/PkPvugYSjYygxBsoyDcn30ehTwxExKJmkGFBoKFhOj4PL1XZFgg41x9p98MW6+cxPWC3zO 2jeeWbM0VKm9+SKBlr+ojFN2/SRiLykqpitpAWkpdCCIZi3hxAtrpSDgv8mmMMou/nYguRY7xQnO9 EIIHNs1XnOumyFVSmIWh44/pfn6klhhg1WmujtQDICfy8zOAU741yEuO10e6EixDqQiSEwpSPCyCe R2VamzB5i2wxgw==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvJbp-0001hO-Gp; Sat, 06 May 2023 11:14:05 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Vinicius Monego Subject: Re: bug#63060: [PATCH] gnu: Add morss. References: <20230424232229.2978683-1-monego@posteo.net> Date: Sat, 06 May 2023 17:14:03 +0200 In-Reply-To: <20230424232229.2978683-1-monego@posteo.net> (Vinicius Monego's message of "Mon, 24 Apr 2023 23:22:29 +0000") Message-ID: <87sfc9lcg4.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63060 Cc: 63060@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Vinicius Monego skribis: > * gnu/packages/syndication.scm (morss): New variable. LGTM! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sun May 14 11:21:30 2023 Received: (at 63060-done) by debbugs.gnu.org; 14 May 2023 15:21:30 +0000 Received: from localhost ([127.0.0.1]:41340 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pyDXN-0006Qw-PB for submit@debbugs.gnu.org; Sun, 14 May 2023 11:21:30 -0400 Received: from mout01.posteo.de ([185.67.36.65]:47693) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pyDXM-0006Qh-CA for 63060-done@debbugs.gnu.org; Sun, 14 May 2023 11:21:28 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 91ADF24002A for <63060-done@debbugs.gnu.org>; Sun, 14 May 2023 17:21:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1684077682; bh=4gH6dZxWR5R2cTdkcwMILdI7shZk1/KS+qKAEEoHLyQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:From: Content-Transfer-Encoding:From; b=ZxBld52G2wy0KDcQq6ugKtfabJ7tLjoYpea++PoEE57+FKpPTE/sftBRbfoGGw1zq LSbfducNuThyNhIXfD8HU/6+ICKtK0pzArQHmiMu2/bEDFN64gBHibGAcpZnYdZn/5 7JPp3oLKJn0Dz8QlNY4WOU7/rnX4RrYztX/WeV+t6s6/412fHchfBVEfDqnaWQGs8l oOr7U43oN/tgsg2ZUZHyGMTZ+hW7W81n5YbkAlGuZz7sGL3qB1k6zIbtGXZqoUnMrb RAdxUb03sNC74460/374mAAMkp0rU++aCjJOAte4V9Wi9/ZjMddhAMThn5Psrbrblh +Rsv4ynTCyhhg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4QK5nF2Njgz6tsb; Sun, 14 May 2023 17:21:20 +0200 (CEST) Message-ID: Date: Sun, 14 May 2023 15:21:19 +0000 MIME-Version: 1.0 Subject: Re: bug#63060: [PATCH] gnu: Add morss. Content-Language: en-US To: =?UTF-8?Q?Ludovic_Court=c3=a8s?= References: <20230424232229.2978683-1-monego@posteo.net> <87sfc9lcg4.fsf@gnu.org> From: Vinicius Monego In-Reply-To: <87sfc9lcg4.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63060-done Cc: 63060-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Em 06/05/2023 12:14, Ludovic Courtès escreveu: > Hi, > > Vinicius Monego skribis: > >> * gnu/packages/syndication.scm (morss): New variable. > LGTM! > > Ludo’. Hi, Pushed! Closing. Vinicius From unknown Fri Aug 15 20:28:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 12 Jun 2023 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator