From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH] gnu: vim: Update to 8.0.0047. Date: Thu, 27 Oct 2016 14:29:02 +0100 Message-ID: <87y419zzs1.fsf@duckhunt.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37084) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bzkk2-0002JO-4p for guix-devel@gnu.org; Thu, 27 Oct 2016 09:29:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bzkjy-0005XA-KR for guix-devel@gnu.org; Thu, 27 Oct 2016 09:29:10 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:37938) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bzkjy-0005Wx-Fn for guix-devel@gnu.org; Thu, 27 Oct 2016 09:29:06 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 6D34220A6C for ; Thu, 27 Oct 2016 09:29:04 -0400 (EDT) Received: from localhost (169.243.187.81.in-addr.arpa [81.187.243.169]) by mail.messagingengine.com (Postfix) with ESMTPA id D4CC8CC07B for ; Thu, 27 Oct 2016 09:29:03 -0400 (EDT) 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 The official vim mirrors only carries major versions and individual patches, no up-to-date releases. This patch changes the source uri to the tagged github releases instead of downloading all 40+ (so far) patches individually. I'm not very happy about changing to a third-party source, but IMO it beats keeping track of the frequent patches. WDYT? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-vim-Update-to-8.0.0047.patch >From 786dc474126431c8d2b9b97644dd629f5f7aed37 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 27 Oct 2016 14:14:40 +0100 Subject: [PATCH] gnu: vim: Update to 8.0.0047. * gnu/packages/vim.scm (vim): Update to 8.0.0047. [source]: Change to github release archive. --- gnu/packages/vim.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 4ee8c7d..32f9e62 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -48,14 +48,15 @@ (define-public vim (package (name "vim") - (version "8.0") + (version "8.0.0047") (source (origin (method url-fetch) - (uri (string-append "ftp://ftp.vim.org/pub/vim/unix/vim-" - version ".tar.bz2")) + (uri (string-append "https://github.com/vim/vim/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1s34rf8089klsbdx5l0iw7vjymir0kzfrx8wb30s31wygnq29axc")))) + "1l24pbc06970crk513a98vlr77sp6wq6d0ylviwk9nhvfz4p0cff")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- 2.10.1 --=-=-=--