From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44940) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgcyt-0002sh-8t for guix-patches@gnu.org; Thu, 27 Jun 2019 18:35:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgcyr-00066R-VW for guix-patches@gnu.org; Thu, 27 Jun 2019 18:35:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hgcyr-00065P-Qr for guix-patches@gnu.org; Thu, 27 Jun 2019 18:35:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hgcyr-0007fs-NA for guix-patches@gnu.org; Thu, 27 Jun 2019 18:35: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]:44661) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgcy1-0001YU-Jx for guix-patches@gnu.org; Thu, 27 Jun 2019 18:34:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgcy0-00052h-Gq for guix-patches@gnu.org; Thu, 27 Jun 2019 18:34:09 -0400 Received: from mout.gmx.net ([212.227.17.22]:43053) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hgcy0-0004yA-3A for guix-patches@gnu.org; Thu, 27 Jun 2019 18:34:08 -0400 References: <20190321002204.25294-1-pierre.langlois@gmx.com> <20190321002204.25294-4-pierre.langlois@gmx.com> <02ec8c71-9248-7441-f564-62b59ebd7a68@riseup.net> From: Pierre Langlois In-reply-to: <02ec8c71-9248-7441-f564-62b59ebd7a68@riseup.net> Date: Thu, 27 Jun 2019 23:33:47 +0100 Message-ID: <87pnmyslo4.fsf@gmx.com> MIME-Version: 1.0 Content-Type: text/plain 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 Hello! swedebugia writes: > 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+ Oh, whoops I missed that! I'll submit an update by the end of the week! Thanks!