From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Vong Subject: [PATCH] gnu: youtube-dl: Update to 2016.06.14. Date: Tue, 14 Jun 2016 13:15:28 +0800 Message-ID: <87r3c08i6n.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56680) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCghO-0004hp-BU for guix-devel@gnu.org; Tue, 14 Jun 2016 01:15:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCghK-0005BS-U4 for guix-devel@gnu.org; Tue, 14 Jun 2016 01:15:38 -0400 Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]:34177) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCghK-0005B7-GJ for guix-devel@gnu.org; Tue, 14 Jun 2016 01:15:34 -0400 Received: by mail-pf0-x243.google.com with SMTP id 66so10199922pfy.1 for ; Mon, 13 Jun 2016 22:15:33 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hi, This patch upgrades youtube-dl to the latest version. Also, the source uri and home-page uri are changed to use https. The change is made because the http source uri was redirected to a https uri, causing youtube-dl to FTBFS on my machine. Thanks, Alex --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-youtube-dl-Update-to-2016.06.14.patch >From 9c5ce8ca9fb9d5d91e84f7d043998422b31fe3bd Mon Sep 17 00:00:00 2001 From: Alex Vong Date: Tue, 14 Jun 2016 12:30:12 +0800 Subject: [PATCH] gnu: youtube-dl: Update to 2016.06.14. * gnu/packages/video.scm (youtube-dl): Update to 2016.06.14. [source]: Use https. [home-page]: Use https. --- gnu/packages/video.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index eee04fa..b447557 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -869,17 +869,17 @@ projects while introducing many more.") (define-public youtube-dl (package (name "youtube-dl") - (version "2016.05.01") + (version "2016.06.14") (source (origin (method url-fetch) - (uri (string-append "http://youtube-dl.org/downloads/" + (uri (string-append "https://youtube-dl.org/downloads/" version "/youtube-dl-" version ".tar.gz")) (sha256 (base32 - "1w04afmwq5pjvp3nl2k59q0cigqrj9n8fwkydcfldwpq83l15j5d")))) + "0fmvpqipc1xwagvk7ih4slmv1xz1rb6s8wpndhypwvrq4pnnm9ns")))) (build-system python-build-system) - (home-page "http://youtube-dl.org") + (home-page "https://youtube-dl.org") (arguments ;; The problem here is that the directory for the man page and completion ;; files is relative, and for some reason, setup.py uses the -- 2.8.4 --=-=-=--