unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#27970] [PATCH] gnu: Add rss-bridge.
@ 2017-08-05 17:01 Arun Isaac
  2017-08-16 14:24 ` Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: Arun Isaac @ 2017-08-05 17:01 UTC (permalink / raw)
  To: 27970

* 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


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#27970] [PATCH] gnu: Add rss-bridge.
  2017-08-05 17:01 [bug#27970] [PATCH] gnu: Add rss-bridge Arun Isaac
@ 2017-08-16 14:24 ` Ricardo Wurmus
  2017-08-17 16:52   ` Arun Isaac
       [not found]   ` <62f53276.ADkAACsNiF4AAAAAAAAAAAOzWwAAAAACwQwAAAAAAAW9WABZlcnr@mailjet.com>
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-08-16 14:24 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 27970


Hi Arun,

> * gnu/packages/web.scm (rss-bridge): New variable.
[…]
> +
> +(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

I think this should be “Atom”, not “ATOM”.

> +websites lacking feeds.  Supported websites include Facebook, Twitter,
> +Instagram and YouTube.")
> +    (license (list l:public-domain
> +                   l:expat)))) ;; vendor/simplehtmldom/simple_html_dom.php

How is this supposed to be used?  If these are just PHP files I think it
may be worth prepending “php-” to the package name and the variable
name.

What do you think?

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#27970] [PATCH] gnu: Add rss-bridge.
  2017-08-16 14:24 ` Ricardo Wurmus
@ 2017-08-17 16:52   ` Arun Isaac
       [not found]   ` <62f53276.ADkAACsNiF4AAAAAAAAAAAOzWwAAAAACwQwAAAAAAAW9WABZlcnr@mailjet.com>
  1 sibling, 0 replies; 5+ messages in thread
From: Arun Isaac @ 2017-08-17 16:52 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 27970


>> +    (synopsis "Generate ATOM feeds for social networking websites")
>> +    (description "rss-bridge generates ATOM feeds for social networking
>
> I think this should be “Atom”, not “ATOM”.

Indeed! I'll fix that.

>> +websites lacking feeds.  Supported websites include Facebook, Twitter,
>> +Instagram and YouTube.")
>> +    (license (list l:public-domain
>> +                   l:expat)))) ;; vendor/simplehtmldom/simple_html_dom.php
>

> If these are just PHP files I think it may be worth prepending “php-”
> to the package name and the variable name.

This is not a php library of any kind. It is a web *application*, and we
should ignore what language it was written in. For example, gnusocial is
also a bunch of PHP files, but we wouldn't name it php-gnusocial, would
we?

> 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.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#27970] [PATCH] gnu: Add rss-bridge.
       [not found]   ` <62f53276.ADkAACsNiF4AAAAAAAAAAAOzWwAAAAACwQwAAAAAAAW9WABZlcnr@mailjet.com>
@ 2017-08-17 19:49     ` Ricardo Wurmus
  2017-08-18  1:53       ` bug#27970: " Arun Isaac
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2017-08-17 19:49 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 27970


Hi Arun,

>> If these are just PHP files I think it may be worth prepending “php-”
>> to the package name and the variable name.
>
> This is not a php library of any kind. It is a web *application*, and we
> should ignore what language it was written in. For example, gnusocial is
> also a bunch of PHP files, but we wouldn't name it php-gnusocial, would
> we?

Ah, okay.  Thanks for clarifying.

>> 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.

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#27970: [PATCH] gnu: Add rss-bridge.
  2017-08-17 19:49     ` Ricardo Wurmus
@ 2017-08-18  1:53       ` Arun Isaac
  0 siblings, 0 replies; 5+ messages in thread
From: Arun Isaac @ 2017-08-18  1:53 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 27970-done


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.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-08-18  1:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-05 17:01 [bug#27970] [PATCH] gnu: Add rss-bridge Arun Isaac
2017-08-16 14:24 ` Ricardo Wurmus
2017-08-17 16:52   ` Arun Isaac
     [not found]   ` <62f53276.ADkAACsNiF4AAAAAAAAAAAOzWwAAAAACwQwAAAAAAAW9WABZlcnr@mailjet.com>
2017-08-17 19:49     ` Ricardo Wurmus
2017-08-18  1:53       ` bug#27970: " Arun Isaac

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).