GNU bug report logs - #68063
[PATCH] gnu: syndication: Add newsraft.

Previous Next

Package: guix-patches;

Reported by: lgcoelho <at> disroot.org

Date: Wed, 27 Dec 2023 17:15:01 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 68063 in the body.
You can then email your comments to 68063 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#68063; Package guix-patches. (Wed, 27 Dec 2023 17:15:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to lgcoelho <at> disroot.org:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 27 Dec 2023 17:15:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: lgcoelho <at> disroot.org
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: syndication: Add newsraft.
Date: Wed, 27 Dec 2023 17:14:43 +0000
[Message part 1 (text/plain, inline)]
This patch adds newsraft, a feed reader greatly inspired by newsboat, to 
(gnu packages syndication).
[Message part 2 (text/html, inline)]
[0001-gnu-syndication-Add-newsraft.patch (text/x-diff, attachment)]

Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Sun, 03 Nov 2024 23:48:03 GMT) Full text and rfc822 format available.

Notification sent to lgcoelho <at> disroot.org:
bug acknowledged by developer. (Sun, 03 Nov 2024 23:48:03 GMT) Full text and rfc822 format available.

Message #10 received at 68063-done <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 68063-done <at> debbugs.gnu.org
Subject: [PATCH] gnu: syndication: Add newsraft.
Date: Sun, 03 Nov 2024 23:46:09 +0000
[Message part 1 (text/plain, inline)]
Hi,

I've applied some modifications:

- adjustments
  - Adjust commit message header and body
  - Set author to Luis Guilherme Coelho <lgcoelho <at> disroot.org>
  - Add copyright
  - Adjust fields sequence and package indentation
  - Remove gnu-make from native inputs
  - Adjust synopsis, taken from upstream home page
  - Re-indent description, add feature list
  - Swap source from tarbal to git checkout (there are tags)
  - Update to 0.27
  - Enable tests

--8<---------------cut here---------------start------------->8---
--- #<buffer *new*<14>>
+++ #<buffer *new*<13>>
@@ -1,30 +1,47 @@
-;; Thanks to nckx, rekado and lechner for the help :)
 (define-public newsraft
   (package
     (name "newsraft")
-    (version "0.21")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://codeberg.org/grisha/newsraft/"
-                    "archive/newsraft-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1dbyg0qy2kw4fjb6hi8ad4jiji9z0wl97aizd3gp68ch1cn7ban2"))))
+    (version "0.27")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://codeberg.org/newsraft/newsraft")
+             (commit (string-append name "-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "170dwv6v9755mdy4w91r4mk6r5d713rxi71hppqws3bsh2g4bmrj"))))
     (build-system gnu-build-system)
-    (native-inputs (list gnu-make pkg-config scdoc))
-    (inputs (list curl expat gumbo-parser ncurses sqlite yajl))
     (arguments
-     (list #:tests? #f
-           #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
-                                (string-append "PREFIX=" #$output)
-                                "CFLAGS=-DCURL_WRITEFUNC_ERROR=0xFFFFFFFF")
-           #:phases #~(modify-phases %standard-phases
-                        (delete 'configure))))
+     (list
+      #:make-flags
+      #~(list (string-append "CC=" #$(cc-for-target))
+              (string-append "PREFIX=" #$output)
+              "CFLAGS=-DCURL_WRITEFUNC_ERROR=0xFFFFFFFF")
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure)))) ; no configure
+    (native-inputs
+     (list pkg-config scdoc))
+    (inputs
+     (list curl expat gumbo-parser ncurses sqlite yajl))
     (home-page "https://codeberg.org/grisha/newsraft")
-    (synopsis
-     "Newsraft is a ncurses feed reader greatly inspired by newsboat.")
+    (synopsis "Feed reader for termnial")
     (description
-     "Newsraft is a feed reader with ncurses user interface. It is
-greatly inspired by Newsboat and tries to be its lightweight counterpart.")
+     "Newsraft is a feed reader with ncurses user interface.  It is greatly
+inspired by Newsboat and tries to be its lightweight counterpart.
+
+Features:
+@itemize
+@item parallel downloads
+@item section-based feeds grouping
+@item opening links in any program
+@item viewing news from all feeds with explore mode
+@item automatic updates for feeds and sections
+@item per-feed settings and key bindings
+@item assigning multiple actions to key bindings
+@item processing feeds from command output
+@item text searching by news titles and content
+@item interactive news content viewing
+@end itemize")
     (license license:isc)))
\ No newline at end of file

Diff finished.  Sun Nov  3 20:36:46 2024
--8<---------------cut here---------------end--------------->8---

Pushed as 2ef5e0cd89 to master.

--
Thanks,
Oleg
[signature.asc (application/pgp-signature, inline)]

Message sent on to lgcoelho <at> disroot.org:
bug#68063. (Mon, 04 Nov 2024 13:26:03 GMT) Full text and rfc822 format available.

Message #13 received at 68063-submitter <at> debbugs.gnu.org (full text, mbox):

From: Steve George <steve <at> futurile.net>
To: control <at> debbugs.gnu.org
Cc: 68063-submitter <at> debbugs.gnu.org
Subject: closing 68063
Date: Mon, 4 Nov 2024 13:25:41 +0000
close 68063 
# Hi there - your patch to add Newscraft to Guix has been applied and you 
# should see it in the archive! Thanks for sendig it
# As a tip - when you send future patches please send them as 'inline' not 
# attachments as this one was - it's easier for the CI system and devs to 
# download and apply them. The easiest way is to use `git send-email` for more
# info see the manual:
# https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html
#
thanks





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 03 Dec 2024 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 214 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.