emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27970: closed ([PATCH] gnu: Add rss-bridge.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27970: closed ([PATCH] gnu: Add rss-bridge.)
Date: Fri, 18 Aug 2017 01:55:01 +0000

Your message dated Fri, 18 Aug 2017 07:23:58 +0530
with message-id <address@hidden>
and subject line Re: [bug#27970] [PATCH] gnu: Add rss-bridge.
has caused the debbugs.gnu.org bug report #27970,
regarding [PATCH] gnu: Add rss-bridge.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27970: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27970
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add rss-bridge. Date: Sat, 5 Aug 2017 22:31:16 +0530
* gnu/packages/web.scm (rss-bridge): New variable.
---
 gnu/packages/web.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5459a3051..92e2c4474 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4879,3 +4879,43 @@ responsive, and powerful applications with minimal 
effort.")
 communicate with each other, with Shiny or without (i.e.  static @code{.html}
 files).  It currently supports linked brushing and filtering.")
     (license l:expat)))
+
+(define-public rss-bridge
+  (package
+    (name "rss-bridge")
+    (version "2017-08-03")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/RSS-Bridge/rss-bridge/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "05s16y552hbyj91s7bnlkx1bi64s6aw0fjy29az8via3i3b21yhl"))))
+    (build-system trivial-build-system)
+    (native-inputs
+     `(("gzip" ,gzip)
+       ("tar" ,tar)))
+    (arguments
+     '(#:modules ((guix build utils))
+       #:builder
+       (begin
+         (use-modules (guix build utils)
+                      (ice-9 match))
+         (let* ((out (assoc-ref %outputs "out"))
+                (share-rss-bridge (string-append out "/share/rss-bridge")))
+           (set-path-environment-variable
+            "PATH" '("bin") (map (match-lambda ((_ . input) input))
+                                 %build-inputs))
+           (mkdir-p share-rss-bridge)
+           (system* "tar" "xvf" (assoc-ref %build-inputs "source")
+                    "--strip-components" "1" "-C" share-rss-bridge)
+           #t))))
+    (home-page "https://github.com/RSS-Bridge/rss-bridge";)
+    (synopsis "Generate ATOM feeds for social networking websites")
+    (description "rss-bridge generates ATOM feeds for social networking
+websites lacking feeds.  Supported websites include Facebook, Twitter,
+Instagram and YouTube.")
+    (license (list l:public-domain
+                   l:expat)))) ;; vendor/simplehtmldom/simple_html_dom.php
-- 
2.13.4




--- End Message ---
--- Begin Message --- Subject: Re: [bug#27970] [PATCH] gnu: Add rss-bridge. Date: Fri, 18 Aug 2017 07:23:58 +0530
Pushed with modifications, thanks!

>>> How is this supposed to be used?
>>
>> I think we'll have to create an rss-bridge service. I'm not too sure at
>> this point, because I am yet to write my first service, and don't fully
>> understand how services work.
>
> Services are more than just daemon scripts that can be started and
> stopped with Shepherd.  Services can do more than that; they can extend
> other services e.g. to add to a configuration file or to set up
> directories at activation time.
>
> If you can come up with a list of things that need to be done to use
> the rss-bridge web application I’m sure we can figure out together how
> to implement the service.

I'll figure this out, and add a service soon.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]