From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY4Gp-0000mt-NB for guix-patches@gnu.org; Thu, 20 Jul 2017 01:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dY4Gk-0008Bg-Qh for guix-patches@gnu.org; Thu, 20 Jul 2017 01:45:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45751) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dY4Gk-0008BY-MU for guix-patches@gnu.org; Thu, 20 Jul 2017 01:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dY4Gk-0003nV-Gc for guix-patches@gnu.org; Thu, 20 Jul 2017 01:45:02 -0400 Subject: [bug#27770] [PATCH] gnu: vim: Update to 8.0.0727 [fixes CVE-2017-11109]. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dY4GW-0000lS-Hi for guix-patches@gnu.org; Thu, 20 Jul 2017 01:44:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dY4GR-0007wv-SS for guix-patches@gnu.org; Thu, 20 Jul 2017 01:44:48 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:48163) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dY4GR-0007vp-JV for guix-patches@gnu.org; Thu, 20 Jul 2017 01:44:43 -0400 Received: from jasmine.lan (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id 2EB047E4E8 for ; Thu, 20 Jul 2017 01:44:42 -0400 (EDT) From: Leo Famulari Date: Thu, 20 Jul 2017 01:44:36 -0400 Message-Id: <13567bf3a5179aafe1491aff8e2fa62e9c543ea2.1500529284.git.leo@famulari.name> 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: 27770@debbugs.gnu.org vim-full fails its tests with this update. I've noticed from previous discussion that the test suite is flaky with vim-full. What do you suggest? ------ Test results: >From test_alot.vim: Found errors in Test_input_in_timer(): function RunTheTest[24]..Test_input_in_timer line 4: Expected 'hello' but got '' Found errors in Test_map_ctrl_c_insert(): function RunTheTest[24]..Test_map_ctrl_c_insert line 7: Expected 'TEST2: CTRL-C |A|' but got 'GoTEST2: CTRL-C |A|' TEST FAILURE ------ * gnu/packages/vim.scm (vim, vim-full): Update to 8.0.0727. --- gnu/packages/vim.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 27c0b0da9..39894f39c 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -60,7 +60,7 @@ (define-public vim (package (name "vim") - (version "8.0.0600") + (version "8.0.0727") (source (origin (method url-fetch) (uri (string-append "https://github.com/vim/vim/archive/v" @@ -68,7 +68,7 @@ (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1ifaj0lfzqn06snkcd83l58m9r6lg7lk3wspx71k5ycvypyfi67s")))) + "0hwqglpsk8qlp2rn6q9p35fxk88xixljk1yv42m3j01g3bgqg0gx")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- 2.13.3