From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37273) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iE8Il-0006Sg-KB for guix-patches@gnu.org; Sat, 28 Sep 2019 04:42:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iE8Ik-0002Qy-IA for guix-patches@gnu.org; Sat, 28 Sep 2019 04:42:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40163) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iE8Ik-0002Qu-F9 for guix-patches@gnu.org; Sat, 28 Sep 2019 04:42:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iE8Ik-0006Cs-A4 for guix-patches@gnu.org; Sat, 28 Sep 2019 04:42:02 -0400 Subject: [bug#37539] [PATCH] gnu: gpodder: Update to 3.10.10. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:37108) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iE8Hs-0006PB-Bz for guix-patches@gnu.org; Sat, 28 Sep 2019 04:41:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iE8Hr-000215-9D for guix-patches@gnu.org; Sat, 28 Sep 2019 04:41:08 -0400 Received: from mout.gmx.net ([212.227.17.21]:37247) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iE8Hq-0001zY-VM for guix-patches@gnu.org; Sat, 28 Sep 2019 04:41:07 -0400 From: Pierre Langlois Date: Sat, 28 Sep 2019 09:40:59 +0100 Message-ID: <87y2y8g6ec.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: 37539@debbugs.gnu.org Cc: Pierre Langlois --=-=-= Content-Type: text/plain Hello Guix! Here's an update for gpodder! Thanks, Pierre --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-gpodder-Update-to-3.10.10.patch Content-Transfer-Encoding: quoted-printable =46rom 34c9412e708bdbdcd200c65519d4a6ede3fa75ac Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Fri, 27 Sep 2019 09:43:43 +0100 Subject: [PATCH] gnu: gpodder: Update to 3.10.10. * gnu/packages/gpodder.scm (gpodder): Update to 3.10.10. [inputs]: Add youtube-dl. =2D-- gnu/packages/gpodder.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gpodder.scm b/gnu/packages/gpodder.scm index 7c9994f128..f896ddae35 100644 =2D-- a/gnu/packages/gpodder.scm +++ b/gnu/packages/gpodder.scm @@ -31,12 +31,13 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) - #:use-module (gnu packages qt)) + #:use-module (gnu packages qt) + #:use-module (gnu packages video)) (define-public gpodder (package (name "gpodder") - (version "3.10.9") + (version "3.10.10") (source (origin (method git-fetch) @@ -45,7 +46,7 @@ (commit version))) (sha256 (base32 - "1sdmr1sq1d4p492zp9kq3npl7p56yr0pr470z9r6xxcylax5mhfq")) + "1phgd3xly6ddrxpx5glgfs1ya4xq2qbcx5d9l3d6i4dlhji1dmja")) (file-name (git-file-name name version)))) (build-system python-build-system) (native-inputs @@ -58,6 +59,7 @@ ("python-html5lib" ,python-html5lib) ("python-mygpoclient" ,python-mygpoclient) ("python-podcastparser" ,python-podcastparser) + ("youtube-dl" ,youtube-dl) ("xdg-utils" ,xdg-utils))) (arguments '(#:phases =2D- 2.23.0 --=-=-=--