all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#58209] [patch 0/2] gnu: neovim: Update to 0.8.0.
@ 2022-10-01  0:28 ギャラ via Guix-patches via
  2022-10-01  0:30 ` [bug#58209] [PATCH 1/2] gnu: libvterm: Update to 0.3.0 ギャラ via Guix-patches via
  2022-10-02 12:08 ` bug#58209: [patch 0/2] " Efraim Flashner
  0 siblings, 2 replies; 4+ messages in thread
From: ギャラ via Guix-patches via @ 2022-10-01  0:28 UTC (permalink / raw)
  To: 58209


[-- Attachment #1.1: Type: text/plain, Size: 339 bytes --]

This patch update neovim to 0.8.0.

ギャラ (2):
       gnu: libvterm: Update to 0.3.0.
       gnu: neovim: Update to 0.8.0.

  gnu/packages/terminals.scm | 4 ++--
  gnu/packages/vim.scm       | 4 ++--
  2 files changed, 4 insertions(+), 4 deletions(-)

-- 
存在するということは、自分を创造することだ。

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#58209] [PATCH 1/2] gnu: libvterm: Update to 0.3.0.
  2022-10-01  0:28 [bug#58209] [patch 0/2] gnu: neovim: Update to 0.8.0 ギャラ via Guix-patches via
@ 2022-10-01  0:30 ` ギャラ via Guix-patches via
  2022-10-01  0:30   ` [bug#58209] [PATCH 2/2] gnu: neovim: Update to 0.8.0 ギャラ via Guix-patches via
  2022-10-02 12:08 ` bug#58209: [patch 0/2] " Efraim Flashner
  1 sibling, 1 reply; 4+ messages in thread
From: ギャラ via Guix-patches via @ 2022-10-01  0:30 UTC (permalink / raw)
  To: 58209; +Cc: ギャラ

* gnu/packages/terminals.scm (libvterm): Update to 0.3.0.
---
 gnu/packages/terminals.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 9ece3043e0..f29d7e3773 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -640,7 +640,7 @@ (define-public unibilium
 (define-public libvterm
   (package
     (name "libvterm")
-    (version "0.1.4")
+    (version "0.3")
     (source
      (origin
        (method url-fetch)
@@ -648,7 +648,7 @@ (define-public libvterm
                            "libvterm-" version ".tar.gz"))
        (sha256
         (base32
-         "1pfkhbbihd2kvaza707vl2nvk7bxaawmb37wf9v6d72mjng38w5w"))))
+         "0n1k923ii618ffkbifi8a89ag8c6m9l49z8dj01dyay551k0vsv1"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#58209] [PATCH 2/2] gnu: neovim: Update to 0.8.0.
  2022-10-01  0:30 ` [bug#58209] [PATCH 1/2] gnu: libvterm: Update to 0.3.0 ギャラ via Guix-patches via
@ 2022-10-01  0:30   ` ギャラ via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: ギャラ via Guix-patches via @ 2022-10-01  0:30 UTC (permalink / raw)
  To: 58209; +Cc: ギャラ

* gnu/packages/vim.scm (neovim): Update to 0.8.0.
---
 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 c6bfbb5c6b..901527e159 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -685,7 +685,7 @@ (define-public neovim-syntastic
 (define-public neovim
   (package
     (name "neovim")
-    (version "0.7.2")
+    (version "0.8.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -694,7 +694,7 @@ (define-public neovim
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1jn4i4ral79ys06i50bimylm515sfh41z503gj50a74h1ylg0z4w"))))
+                "0hkd49wkxfi6k1xa92hdd4b9z356r32hbpr78z1cigcln1wr0z7j"))))
     (build-system cmake-build-system)
     (arguments
      (list #:modules
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#58209: [patch 0/2] gnu: neovim: Update to 0.8.0.
  2022-10-01  0:28 [bug#58209] [patch 0/2] gnu: neovim: Update to 0.8.0 ギャラ via Guix-patches via
  2022-10-01  0:30 ` [bug#58209] [PATCH 1/2] gnu: libvterm: Update to 0.3.0 ギャラ via Guix-patches via
@ 2022-10-02 12:08 ` Efraim Flashner
  1 sibling, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2022-10-02 12:08 UTC (permalink / raw)
  To: ギャラ; +Cc: 58209-done

[-- Attachment #1: Type: text/plain, Size: 778 bytes --]

On Sat, Oct 01, 2022 at 09:28:30AM +0900, ギャラ via Guix-patches via wrote:
> This patch update neovim to 0.8.0.
> 
> ギャラ (2):
>       gnu: libvterm: Update to 0.3.0.
>       gnu: neovim: Update to 0.8.0.
> 
>  gnu/packages/terminals.scm | 4 ++--
>  gnu/packages/vim.scm       | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> -- 
> 存在するということは、自分を创造することだ。

Thanks, patches pushed.

I wasn't able to build neovim for aarch64-linux, but it failed to build
there before anyway.


-- 
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] 4+ messages in thread

end of thread, other threads:[~2022-10-02 12:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-01  0:28 [bug#58209] [patch 0/2] gnu: neovim: Update to 0.8.0 ギャラ via Guix-patches via
2022-10-01  0:30 ` [bug#58209] [PATCH 1/2] gnu: libvterm: Update to 0.3.0 ギャラ via Guix-patches via
2022-10-01  0:30   ` [bug#58209] [PATCH 2/2] gnu: neovim: Update to 0.8.0 ギャラ via Guix-patches via
2022-10-02 12:08 ` bug#58209: [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.