From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37150) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h860a-0007j7-Mk for guix-patches@gnu.org; Sun, 24 Mar 2019 12:30:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h860Z-0006cC-HG for guix-patches@gnu.org; Sun, 24 Mar 2019 12:30:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43423) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h860Y-0006aX-DL for guix-patches@gnu.org; Sun, 24 Mar 2019 12:30:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h860Y-0001Hy-35 for guix-patches@gnu.org; Sun, 24 Mar 2019 12:30:02 -0400 Subject: [bug#34931] [PATCH 0/5] Add gPodder. Resent-Message-ID: References: <20190321001143.21045-1-pierre.langlois@gmx.com> <87mullv7bx.fsf@gnu.org> <87tvfs8kt6.fsf@gmx.com> <87sgvc8i64.fsf@gmx.com> From: Pierre Langlois In-reply-to: <87sgvc8i64.fsf@gmx.com> Date: Sun, 24 Mar 2019 16:29:35 +0000 Message-ID: <87r2aw8ccw.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 34931@debbugs.gnu.org --=-=-= Content-Type: text/plain Pierre Langlois writes: > Pierre Langlois writes: > > (snip) > >> >> * gnu/packages/podcast.scm (python-mygpoclient): New variable. > > Whoops, that's 'gpodder.scm' and not 'podcast.scm' too. Attached with ChangeLog fixed. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-python-mygpoclient.patch Content-Transfer-Encoding: quoted-printable =46rom c91de4895afd53e40081501cd2db32bb47a5b92a Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Wed, 20 Mar 2019 23:55:31 +0000 Subject: [PATCH] gnu: Add python-mygpoclient. * gnu/packages/gpodder.scm (python-mygpoclient): New variable. =2D-- gnu/packages/gpodder.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm index 5b872908a5..4eda95e626 100644 =2D-- a/gnu/packages/gpodder.scm +++ b/gnu/packages/gpodder.scm @@ -57,6 +57,36 @@ 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-coverage" ,python-coverage) + ("python-minimock" ,python-minimock) + ("python-nose" ,python-nose))) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "make" "test")))))) + (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))) + (define-public python-podcastparser (package (name "python-podcastparser") =2D- 2.21.0 --=-=-=--