From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diO3Z-0002Pi-By for guix-patches@gnu.org; Thu, 17 Aug 2017 12:54:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1diO3W-0006RS-AB for guix-patches@gnu.org; Thu, 17 Aug 2017 12:54:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34335) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1diO3V-0006QR-TB for guix-patches@gnu.org; Thu, 17 Aug 2017 12:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1diO3V-00036A-Lp for guix-patches@gnu.org; Thu, 17 Aug 2017 12:54:01 -0400 Subject: [bug#27970] [PATCH] gnu: Add rss-bridge. Resent-Message-ID: Message-Id: <9147d83d.ADkAACsNiF0AAAAAAAAAAAPgZO8AAAACwQwAAAAAAAW9WABZlcnr@mailjet.com> MIME-Version: 1.0 From: Arun Isaac Date: Thu, 17 Aug 2017 22:22:44 +0530 In-reply-to: <87o9rfk2ts.fsf@elephly.net> References: <732e9060.AEQAOGPqjLYAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZhfn5@mailjet.com> <87o9rfk2ts.fsf@elephly.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ricardo Wurmus Cc: 27970@debbugs.gnu.org >> + (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.