From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d03Wr-0000rn-LT for guix-patches@gnu.org; Mon, 17 Apr 2017 06:05:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d03Wo-0002pR-DL for guix-patches@gnu.org; Mon, 17 Apr 2017 06:05:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53345) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d03Wo-0002pE-37 for guix-patches@gnu.org; Mon, 17 Apr 2017 06:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d03Wn-0006sB-MI for guix-patches@gnu.org; Mon, 17 Apr 2017 06:05:01 -0400 Subject: bug#26532: Re: bug#26532: [PATCH] gnu: update you-get version Resent-Message-ID: From: "Feng Shu" References: <8737d8skud.fsf@163.com> <87shl8kvyw.fsf@fastmail.com> <40e4f3cd.38c1.15b79bc2bea.Coremail.tumashu@163.com> Date: Mon, 17 Apr 2017 18:04:27 +0800 In-Reply-To: <40e4f3cd.38c1.15b79bc2bea.Coremail.tumashu@163.com> (tumashu@163.com's message of "Mon, 17 Apr 2017 10:27:06 +0800 (CST)") Message-ID: <87inm3mjtg.fsf@163.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: Marius Bakke Cc: 26532@debbugs.gnu.org --=-=-= Content-Type: text/plain tumashu writes: This is the updated patch, I use git-fetch instead of url-fetch for I want to package git-snapshot if need. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-update-you-get-version.patch >From fc6114749fa00b9171d0f308daa268ce343d4538 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Sun, 16 Apr 2017 18:27:18 +0800 Subject: [PATCH] gnu: update you-get version * gnu/packages/video.scm (you-get): Update to git snapshot --- gnu/packages/video.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b64664176..95af55dab 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1027,15 +1027,16 @@ YouTube.com and a few more sites.") (define-public you-get (package (name "you-get") - (version "0.4.652") + (version "0.4.715") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/soimort/you-get/releases/download/v" - version "/you-get-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/soimort/you-get.git") + (commit "v0.4.715"))) + (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0brkz98lycx8mmxjwmn7jlhqfdbvl0hy070n7skwr1k75kh99q30")))) + "1miakavayg0x0vg1llbs97j6hj7k6rv9dp8idn2v2hnplvhgn08d")))) (build-system python-build-system) (arguments ;; no tests -- 2.12.2 --=-=-= Content-Type: text/plain > I prefer packaging a git snapshot version to stable version, many > website > update frequently theirs codes, so you-get need to update to fix the > problem. > git snapshot is more useful than stable version. > > At 2017-04-17 03:12:39, "Marius Bakke" wrote: >>Feng Shu writes: >> >>> you-get stable version is outdate, it can not work with many websites >>> so I update you-get to git snapshot version >> >>Version 0.4.715 was released just some hours ago and is the latest >>upstream commit. Can you try updating to this version instead? -- --=-=-=--