GNU bug report logs - #52458
[PATCH] gnu: Add sfeed.

Previous Next

Package: guix-patches;

Reported by: Nikolay Korotkiy <sikmir <at> gmail.com>

Date: Sun, 12 Dec 2021 20:11:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Nikolay Korotkiy <sikmir <at> gmail.com>
Subject: bug#52458: closed (Re: [bug#52458] [PATCH] gnu: Add sfeed.)
Date: Fri, 17 Dec 2021 08:18:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#52458: [PATCH] gnu: Add sfeed.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 52458 <at> debbugs.gnu.org.

-- 
52458: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=52458
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Nikolay Korotkiy <sikmir <at> gmail.com>
Cc: 52458-done <at> debbugs.gnu.org
Subject: Re: [bug#52458] [PATCH] gnu: Add sfeed.
Date: Fri, 17 Dec 2021 09:16:55 +0100
Hello,

Nikolay Korotkiy <sikmir <at> gmail.com> writes:

> * gnu/packages/suckless.scm (sfeed): New variable.

I tweaked description (two spaces after sentences), used the new package
style, and applied your patch.

Thank you.

Regards,
-- 
Nicolas Goaziou

[Message part 3 (message/rfc822, inline)]
From: Nikolay Korotkiy <sikmir <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Nikolay Korotkiy <sikmir <at> gmail.com>
Subject: [PATCH] gnu: Add sfeed.
Date: Sun, 12 Dec 2021 23:09:58 +0300
* gnu/packages/suckless.scm (sfeed): New variable.
---
 gnu/packages/suckless.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index e22880e78e..97232c7fa8 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -992,3 +992,41 @@ (define-public sfm
     (synopsis "Simple file manager")
     (description "sfm is a simple file manager.")
     (license license:isc)))
+
+(define-public sfeed
+  (package
+    (name "sfeed")
+    (version "1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "git://git.codemadness.org/sfeed")
+         (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1b0l6f9aymk54ncc2kxavhg4flcqv7d4mpkpw8ljx7mzg0g4ygyk"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ;no check target
+       #:make-flags
+       (list (string-append "CC=" ,(cc-for-target))
+             (string-append "PREFIX=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-ncurses
+           (lambda _
+             (substitute* "Makefile"
+               (("-lcurses") "-lncurses"))))
+         (delete 'configure)))) ;no configure script
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (home-page "https://git.codemadness.org/sfeed")
+    (synopsis "RSS and Atom parser")
+    (description
+     "It converts RSS or Atom feeds from XML to a TAB-separated file.
+There are formatting programs included to convert this TAB-separated format to
+various other formats. There are also some programs and scripts included to
+import and export OPML and to fetch, filter, merge and order feed items.")
+    (license license:isc)))
-- 
2.34.0




This bug report was last modified 3 years and 153 days ago.

Previous Next


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