From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPDbb-0006kK-KN for guix-patches@gnu.org; Fri, 10 May 2019 18:03:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPDba-0006vH-Ll for guix-patches@gnu.org; Fri, 10 May 2019 18:03:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54031) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hPDba-0006v0-IN for guix-patches@gnu.org; Fri, 10 May 2019 18:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hPDba-00065n-9b for guix-patches@gnu.org; Fri, 10 May 2019 18:03:02 -0400 Subject: [bug#35680] [PATCH] Update Neovim to version 0.3.5 Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:53704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPDaa-0006gt-NM for guix-patches@gnu.org; Fri, 10 May 2019 18:02:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPDaY-00067V-Q1 for guix-patches@gnu.org; Fri, 10 May 2019 18:02:00 -0400 Received: from mout02.posteo.de ([185.67.36.66]:33919) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hPDaW-00064x-Q0 for guix-patches@gnu.org; Fri, 10 May 2019 18:01:57 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id A08A92400E6 for ; Sat, 11 May 2019 00:01:52 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 45141X0CKkz9rxH for ; Sat, 11 May 2019 00:01:51 +0200 (CEST) From: HiPhish Date: Sat, 11 May 2019 00:01:51 +0200 Message-ID: <4725920.dTlGXAFRqV@aleksandar-ixtreme-m5740> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart3923978.OGUtdWV9SE" Content-Transfer-Encoding: 7Bit 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: 35680@debbugs.gnu.org This is a multi-part message in MIME format. --nextPart3923978.OGUtdWV9SE Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" This patch updates Neovim to the current version. As a side note, there is a TODO from the previous definition to remove an in-place patching when the package definition gets updated; the fix is not in 0.3.5, so I have not removed this part of the defintion on purpose, it is not an oversight. --nextPart3923978.OGUtdWV9SE Content-Disposition: attachment; filename="0001-gnu-packages-vim.scm-neovim-Update-to-v0.3.5.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="utf-8"; name="0001-gnu-packages-vim.scm-neovim-Update-to-v0.3.5.patch" >From 2f68bfe42593dfd03338c76c6a0b9ea8eb217fc1 Mon Sep 17 00:00:00 2001 From: HiPhish Date: Fri, 10 May 2019 23:36:47 +0200 Subject: [PATCH] * gnu/packages/vim.scm (neovim): Update to v0.3.5. --- 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 dadffa3ab1..b2fd6cac99 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -729,7 +729,7 @@ are detected, the user is notified."))) (define-public neovim (package (name "neovim") - (version "0.3.4") + (version "0.3.5") (source (origin (method url-fetch) @@ -738,7 +738,7 @@ are detected, the user is notified."))) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "03mwfhr9rq86p8lypbdfyl7c7xyn6nzv2ipd8jc33bxzvs5i0hd6")))) + "1min68r4rnyfly9j86szkx7gkj4924vbc74hg17j2crijr1h1cxq")))) (build-system cmake-build-system) (arguments `(#:modules ((srfi srfi-26) -- 2.19.1 --nextPart3923978.OGUtdWV9SE--