From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35534) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hgk79-0001al-9I for guix-patches@gnu.org; Fri, 28 Jun 2019 02:12:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hgk78-00060m-0r for guix-patches@gnu.org; Fri, 28 Jun 2019 02:12:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54937) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hgk77-00060X-QM for guix-patches@gnu.org; Fri, 28 Jun 2019 02:12:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hgk77-0002nu-J1 for guix-patches@gnu.org; Fri, 28 Jun 2019 02:12:01 -0400 Subject: [bug#34931] [PATCH 4/5] gnu: Add python-mygpoclient. Resent-Message-ID: References: <20190321002204.25294-1-pierre.langlois@gmx.com> <20190321002204.25294-4-pierre.langlois@gmx.com> <02ec8c71-9248-7441-f564-62b59ebd7a68@riseup.net> <87pnmyslo4.fsf@gmx.com> From: Pierre Langlois In-reply-to: <87pnmyslo4.fsf@gmx.com> Date: Fri, 28 Jun 2019 07:11:25 +0100 Message-ID: <87o92is0he.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 Pierre Langlois writes: > 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! It looks like this was fixed before committing (see b58ab1598fc615f3f11ad7b439e61e0616117e2c). Ludo must have either pointed it out or fixed it for me, I don't remember :-). Thanks, Pierre