From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43013) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFHDD-0000ut-4H for guix-patches@gnu.org; Tue, 01 Oct 2019 08:25:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFHDC-00049w-21 for guix-patches@gnu.org; Tue, 01 Oct 2019 08:25:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52158) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFHDB-00049k-Uy for guix-patches@gnu.org; Tue, 01 Oct 2019 08:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFHDB-0003oB-QJ for guix-patches@gnu.org; Tue, 01 Oct 2019 08:25:01 -0400 Subject: [bug#37568] [PATCH] gnu: youtube-dl: Update to 2019.09.28. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42949) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFHCz-0000uP-5K for guix-patches@gnu.org; Tue, 01 Oct 2019 08:24:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFHCw-0003t9-Sw for guix-patches@gnu.org; Tue, 01 Oct 2019 08:24:48 -0400 Received: from mout01.posteo.de ([185.67.36.65]:41233) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iFHCr-0003k5-Ll for guix-patches@gnu.org; Tue, 01 Oct 2019 08:24:44 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 744E116006C for ; Tue, 1 Oct 2019 14:24:28 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 46jJNl5m9jz6tmG for ; Tue, 1 Oct 2019 14:24:23 +0200 (CEST) From: Diego Nicola Barbato Date: Tue, 01 Oct 2019 14:24:23 +0200 Message-ID: <87sgocwt54.fsf@GlaDOS.home> 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: 37568@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, The following patch updates youtube-dl. Regards, Diego --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-youtube-dl-Update-to-2019.09.28.patch >From 037cb5d6ce2da84a10e1545932ebed41ec585550 Mon Sep 17 00:00:00 2001 From: Diego Nicola Barbato Date: Tue, 1 Oct 2019 12:56:16 +0200 Subject: [PATCH] gnu: youtube-dl: Update to 2019.09.28. * gnu/packages/video.scm (youtube-dl): Update to 2019.09.28. --- gnu/packages/video.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index f624f62429..bb8b0fb68f 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1493,7 +1493,7 @@ projects while introducing many more.") (define-public youtube-dl (package (name "youtube-dl") - (version "2019.09.12.1") + (version "2019.09.28") (source (origin (method url-fetch) (uri (string-append "https://github.com/ytdl-org/youtube-dl/" @@ -1501,7 +1501,7 @@ projects while introducing many more.") version ".tar.gz")) (sha256 (base32 - "0h7v81kcxcpy82wq9b1aiz2zg6hg7rnlcfmzd13j6k8yhr7ah9yf")))) + "0nrk0bk6lksnmng8lwhcpkc57iibzjjamlqz8rxjpsw6dnzxz82h")))) (build-system python-build-system) (arguments ;; The problem here is that the directory for the man page and completion -- 2.23.0 --=-=-=--