guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: youtube-dl: Update to 2016.06.14.


From: Alex Vong
Subject: [PATCH] gnu: youtube-dl: Update to 2016.06.14.
Date: Tue, 14 Jun 2016 13:15:28 +0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

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

>From 9c5ce8ca9fb9d5d91e84f7d043998422b31fe3bd Mon Sep 17 00:00:00 2001
From: Alex Vong <address@hidden>
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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]