From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34813) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgaEZ-0006sF-0p for guix-patches@gnu.org; Thu, 27 Jun 2019 15:39:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgaEX-0003rb-UN for guix-patches@gnu.org; Thu, 27 Jun 2019 15:39:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54459) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hgaEX-0003rO-Qd for guix-patches@gnu.org; Thu, 27 Jun 2019 15:39:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hgaEX-0001fH-NG for guix-patches@gnu.org; Thu, 27 Jun 2019 15:39:01 -0400 Subject: [bug#34931] [PATCH 4/5] gnu: Add python-mygpoclient. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:34773) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgaEQ-0006s5-Qt for guix-patches@gnu.org; Thu, 27 Jun 2019 15:38:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgaEP-0003j1-Kw for guix-patches@gnu.org; Thu, 27 Jun 2019 15:38:54 -0400 Received: from mx1.riseup.net ([198.252.153.129]:58168) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hgaEP-0003gu-CE for guix-patches@gnu.org; Thu, 27 Jun 2019 15:38:53 -0400 Received: from capuchin.riseup.net (capuchin-pn.riseup.net [10.0.1.176]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 3BDE01B93C5 for ; Thu, 27 Jun 2019 12:38:51 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by capuchin.riseup.net (Postfix) with ESMTPSA id 5AFA5120325 for ; Thu, 27 Jun 2019 12:38:51 -0700 (PDT) From: swedebugia References: <20190321002204.25294-1-pierre.langlois@gmx.com> <20190321002204.25294-4-pierre.langlois@gmx.com> Message-ID: <02ec8c71-9248-7441-f564-62b59ebd7a68@riseup.net> Date: Thu, 27 Jun 2019 21:38:49 +0200 MIME-Version: 1.0 In-Reply-To: <20190321002204.25294-4-pierre.langlois@gmx.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit 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: 34931@debbugs.gnu.org On 2019-03-21 01:22, Pierre Langlois wrote: > * gnu/packages/podcast.scm (python-mygpoclient, python2-mygpoclient): New > variables. > --- > gnu/packages/gpodder.scm | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm > index 5b872908a5..654d6b2f96 100644 > --- a/gnu/packages/gpodder.scm > +++ b/gnu/packages/gpodder.scm > @@ -57,6 +57,28 @@ > and track podcasts.") > (license license:lgpl2.1+))) > > +(define-public python-mygpoclient > + (package > + (name "python-mygpoclient") > + (version "1.8") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "mygpoclient" version)) > + (sha256 > + (base32 > + "1fi5x6k1mngr0iviw2s4n1f3y2x7pwqy5ivkcrjdprzvwr37f0mh")))) > + (build-system python-build-system) > + (native-inputs > + `(("python-minimock" ,python-minimock))) > + (home-page "https://mygpoclient.readthedocs.io") > + (synopsis "Python library for the gPodder web service") > + (description "@code{mygpoclient} provides an easy and structured way to > +access the @url{https://gpodder.net} web services. In addition to > +subscription list synchronization and storage, the API supports uploading and > +downloading episode status changes.") > + (license license:gpl3))) According to the files it is gpl3+ Apart from that LGTM. Thanks! -- Cheers Swedebugia