GNU bug report logs - #63227
[PATCH 0/2] gnu: neovim: Update to 0.9.0

Previous Next

Package: guix-patches;

Reported by: Benjamin <benjamin <at> uvy.fr>

Date: Tue, 2 May 2023 07:57:01 UTC

Severity: normal

Tags: patch

Merged with 63226

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 63227 in the body.
You can then email your comments to 63227 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#63227; Package guix-patches. (Tue, 02 May 2023 07:57:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Benjamin <benjamin <at> uvy.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 02 May 2023 07:57:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Benjamin <benjamin <at> uvy.fr>
To: guix-patches <at> gnu.org
Cc: Benjamin <benjamin <at> uvy.fr>
Subject: [PATCH 0/2] gnu: neovim: Update to 0.9.0
Date: Tue,  2 May 2023 01:25:02 +0200
Hello,

This is my first contribution to guix (and first time using git email
flow), so I hope I did everything as expected.

This patches update neovim to 0.9.0.

It was required to bump its dependency tree-sitter to 0.20.8 as 
there were some missing symbols with 0.20.7.
I also fixed the script avoiding to include gcc in dependencies 
as the makefile as moved.

Benjamin (2):
  gnu: tree-sitter: Update to 0.20.8
  gnu: neovim update to 0.9.0

 gnu/packages/tree-sitter.scm | 4 ++--
 gnu/packages/vim.scm         | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)


base-commit: f21007ce4aceeacf5bbfc7cd45d526073141f194
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#63227; Package guix-patches. (Tue, 02 May 2023 11:52:02 GMT) Full text and rfc822 format available.

Message #8 received at 63227 <at> debbugs.gnu.org (full text, mbox):

From: Benjamin <benjamin <at> uvy.fr>
To: 63227 <at> debbugs.gnu.org
Cc: Benjamin <benjamin <at> uvy.fr>
Subject: [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8
Date: Tue,  2 May 2023 10:54:12 +0200
---
 gnu/packages/tree-sitter.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tree-sitter.scm b/gnu/packages/tree-sitter.scm
index b91345bb36..386409914b 100644
--- a/gnu/packages/tree-sitter.scm
+++ b/gnu/packages/tree-sitter.scm
@@ -38,7 +38,7 @@ (define-module (gnu packages tree-sitter)
 (define-public tree-sitter
   (package
     (name "tree-sitter")
-    (version "0.20.7")
+    (version "0.20.8")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -47,7 +47,7 @@ (define-public tree-sitter
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1nv2a2hr22w8ix71b6rkkxv9rfvhvwlmyql0g6lva9qzj4vy50p4"))
+                "10w17lfn9asqrk612xivkx26lc620s3nnm30hhlyqd4bj19k7gyv"))
               (modules '((guix build utils)))
               (snippet #~(begin
                            ;; Remove bundled ICU parts
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#63227; Package guix-patches. (Tue, 02 May 2023 11:52:02 GMT) Full text and rfc822 format available.

Message #11 received at 63227 <at> debbugs.gnu.org (full text, mbox):

From: Benjamin <benjamin <at> uvy.fr>
To: 63227 <at> debbugs.gnu.org
Cc: Benjamin <benjamin <at> uvy.fr>
Subject: [PATCH 2/2] gnu: neovim update to 0.9.0
Date: Tue,  2 May 2023 10:54:13 +0200
---
 gnu/packages/vim.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index d555194d0b..e5e9d67c4b 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -693,7 +693,7 @@ (define-public neovim-syntastic
 (define-public neovim
   (package
     (name "neovim")
-    (version "0.8.3")
+    (version "0.9.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -702,7 +702,7 @@ (define-public neovim
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1zff73yxbnxym6sn43xk6r0zc2ncingsib81v9g39ibrcinpwaa9"))))
+                "0xsvhm191cy5ivcw0c8dnpzbpcvvn5hsnkzkipr2aabgrsgqj628"))))
     (build-system cmake-build-system)
     (arguments
      (list #:modules
@@ -751,8 +751,8 @@ (define-public neovim
                  (lambda _
                    ;; nvim remembers its build options, including the compiler with
                    ;; its complete path.  This adds gcc to the closure of nvim, which
-                   ;; doubles its size.  We remove the refirence here.
-                   (substitute* "cmake/GetCompileFlags.cmake"
+                   ;; doubles its size.  We remove the reference here.
+                   (substitute* "cmake.config/versiondef.h.in"
                      (("\\$\\{CMAKE_C_COMPILER\\}") "/gnu/store/.../bin/gcc"))
                    #t)))))
     (inputs (list libuv-for-luv
-- 
2.39.2





Merged 63226 63227. Request was from zimoun <zimon.toutoune <at> gmail.com> to control <at> debbugs.gnu.org. (Wed, 03 May 2023 17:25:04 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#63227; Package guix-patches. (Sun, 07 May 2023 09:44:03 GMT) Full text and rfc822 format available.

Message #16 received at 63227-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Benjamin <benjamin <at> uvy.fr>
Cc: 63227-done <at> debbugs.gnu.org
Subject: Re: [bug#63227] [PATCH 0/2] gnu: neovim: Update to 0.9.0
Date: Sun, 7 May 2023 12:43:44 +0300
[Message part 1 (text/plain, inline)]
Thanks for the patch!

On Tue, May 02, 2023 at 01:25:02AM +0200, Benjamin wrote:
> Hello,
> 
> This is my first contribution to guix (and first time using git email
> flow), so I hope I did everything as expected.

There's a file in the guix tree at etc/committer.scm which takes care of
some of the less complex commit messages. I rounded out your commit
messages but otherwise everything looks good.

> This patches update neovim to 0.9.0.
> 
> It was required to bump its dependency tree-sitter to 0.20.8 as 
> there were some missing symbols with 0.20.7.
> I also fixed the script avoiding to include gcc in dependencies 
> as the makefile as moved.
> 
> Benjamin (2):
>   gnu: tree-sitter: Update to 0.20.8
>   gnu: neovim update to 0.9.0
> 
>  gnu/packages/tree-sitter.scm | 4 ++--
>  gnu/packages/vim.scm         | 8 ++++----
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> 
> base-commit: f21007ce4aceeacf5bbfc7cd45d526073141f194
> -- 
> 2.39.2

Patch pushed.

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 04 Jun 2023 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 317 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.