* [bug#63226] [patch 0/2] gnu: neovim: Update to 0.9.0.
@ 2023-05-02 7:35 ギャラ via Guix-patches via
2023-05-02 7:58 ` [bug#63226] [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8 ギャラ via Guix-patches via
2023-05-07 9:43 ` bug#63226: [patch 0/2] " Efraim Flashner
0 siblings, 2 replies; 5+ messages in thread
From: ギャラ via Guix-patches via @ 2023-05-02 7:35 UTC (permalink / raw)
To: 63226
[-- Attachment #1.1: Type: text/plain, Size: 349 bytes --]
This patch update neovim to 0.9.0.
ギャラ (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 | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
--
存在するということは、自分を创造することだ。
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#63226] [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8.
2023-05-02 7:35 [bug#63226] [patch 0/2] gnu: neovim: Update to 0.9.0 ギャラ via Guix-patches via
@ 2023-05-02 7:58 ` ギャラ via Guix-patches via
2023-05-02 7:58 ` [bug#63226] [PATCH 2/2] gnu: neovim: Update to 0.9.0 ギャラ via Guix-patches via
2023-05-07 9:43 ` bug#63226: [patch 0/2] " Efraim Flashner
1 sibling, 1 reply; 5+ messages in thread
From: ギャラ via Guix-patches via @ 2023-05-02 7:58 UTC (permalink / raw)
To: 63226; +Cc: ギャラ
* gnu/packages/tree-sitter.scm (tree-sitter): Update to 0.20.8.
---
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
base-commit: 854c57c3525325070e261a2e6f81d4016ef44bfa
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#63226] [PATCH 2/2] gnu: neovim: Update to 0.9.0.
2023-05-02 7:58 ` [bug#63226] [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8 ギャラ via Guix-patches via
@ 2023-05-02 7:58 ` ギャラ via Guix-patches via
2023-05-02 15:13 ` Greg Hogan
0 siblings, 1 reply; 5+ messages in thread
From: ギャラ via Guix-patches via @ 2023-05-02 7:58 UTC (permalink / raw)
To: 63226; +Cc: ギャラ
* gnu/packages/vim.scm (neovim): Update to 0.9.0.
[arguments]: CompileFlags.cmake is gone, use versiondef.h.in instead.
---
gnu/packages/vim.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index d555194d0b..7d975efcc8 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
@@ -752,7 +752,7 @@ (define-public neovim
;; 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"
+ (substitute* "cmake.config/versiondef.h.in"
(("\\$\\{CMAKE_C_COMPILER\\}") "/gnu/store/.../bin/gcc"))
#t)))))
(inputs (list libuv-for-luv
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#63226: [patch 0/2] gnu: neovim: Update to 0.9.0.
2023-05-02 7:35 [bug#63226] [patch 0/2] gnu: neovim: Update to 0.9.0 ギャラ via Guix-patches via
2023-05-02 7:58 ` [bug#63226] [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8 ギャラ via Guix-patches via
@ 2023-05-07 9:43 ` Efraim Flashner
1 sibling, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2023-05-07 9:43 UTC (permalink / raw)
To: ギャラ; +Cc: 63226-done
[-- Attachment #1: Type: text/plain, Size: 305 bytes --]
Thanks for the patches but I've pushed the other neovim patch set since
it arrived first.
--
Efraim Flashner <efraim@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
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-05-07 9:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-02 7:35 [bug#63226] [patch 0/2] gnu: neovim: Update to 0.9.0 ギャラ via Guix-patches via
2023-05-02 7:58 ` [bug#63226] [PATCH 1/2] gnu: tree-sitter: Update to 0.20.8 ギャラ via Guix-patches via
2023-05-02 7:58 ` [bug#63226] [PATCH 2/2] gnu: neovim: Update to 0.9.0 ギャラ via Guix-patches via
2023-05-02 15:13 ` Greg Hogan
2023-05-07 9:43 ` bug#63226: [patch 0/2] " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.