all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail
@ 2024-06-03 16:46 Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 1/3] gnu: vim-vader: Update to 0.4.0-1.429b669 Jean-Pierre De Jesus DIAZ
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Jean-Pierre De Jesus DIAZ @ 2024-06-03 16:46 UTC (permalink / raw)
  To: 71346; +Cc: Jean-Pierre De Jesus DIAZ

This patch set updates vim-vader and vim-coqtail and their neovim
variants respectively.

The vim-vader package also has been fixed since some tests have broke.

Also a patch adds python-pynvim to neovim-coqtail for convenience as the
plugin needs it (and to avoid manual installation).

Jean-Pierre De Jesus DIAZ (3):
  gnu: vim-vader: Update to 0.4.0-1.429b669.
  gnu: neovim-coqtail: Propagated python-pynvim.
  gnu: vim-coqtail: Update to 1.7.1-1.d77080e.

 gnu/packages/vim.scm | 26 ++++++++++++++++----------
 1 file changed, 16 insertions(+), 10 deletions(-)


base-commit: 879fc9b3f0c2e58c6232da03b94eba98c78e2d99
-- 
2.41.0





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

* [bug#71346] [PATCH 1/3] gnu: vim-vader: Update to 0.4.0-1.429b669.
  2024-06-03 16:46 [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Jean-Pierre De Jesus DIAZ
@ 2024-06-03 17:01 ` Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 2/3] gnu: neovim-coqtail: Propagated python-pynvim Jean-Pierre De Jesus DIAZ
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Jean-Pierre De Jesus DIAZ @ 2024-06-03 17:01 UTC (permalink / raw)
  To: 71346; +Cc: Jean-Pierre De Jesus DIAZ

* gnu/packages/vim.scm (vim-vader): Update to 0.4.0-1.429b669 and fix
'check phase.
(neovim-vader): Ditto.

Change-Id: I3dc73652596dcbded804dfc80c0ed9f2876ae89b
---
 gnu/packages/vim.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 6b5eaabf8e..f09a39e008 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1527,8 +1527,8 @@ (define-public vim-nerdcommenter
     (license license:cc0)))
 
 (define-public vim-vader
-  (let ((revision "0")
-        (commit "6fff477431ac3191c69a3a5e5f187925466e275a"))
+  (let ((revision "1")
+        (commit "429b669e6158be3a9fc110799607c232e6ed8e29"))
     (package
       (name "vim-vader")
       (version (git-version "0.4.0" revision commit))
@@ -1540,7 +1540,7 @@ (define-public vim-vader
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "179dbbqdyl6qf6jdb6kdazn3idz17m1h2n88rlggb1wnly74vjin"))))
+                  "0jf4gshr31c1i64f6qykqq17nsasfaljrqz41kzqcxw8fvra8y4c"))))
       (build-system vim-build-system)
       (arguments
        '(#:plugin-name "vader"
@@ -1549,11 +1549,14 @@ (define-public vim-vader
            (add-before 'install 'check
              (lambda* (#:key tests? vim? neovim? #:allow-other-keys)
                (when tests?
-                 ;; FIXME: suite1.vader fails with an unknown reason,
+                 ;; FIXME: suite1.vader, suite2.vader and
+                 ;; highlight-after-comment.vader fail with unknown reasons,
                  ;; lang-if.vader requires Python and Ruby.
                  (substitute* "test/vader.vader"
                    (("Include.*feature/suite1.vader.*$") "")
-                   (("Include.*feature/lang-if.vader.*$") ""))
+                   (("Include.*feature/suite2.vader.*$") "")
+                   (("Include.*feature/lang-if.vader.*$") "")
+                   (("Include.*regression/highlight-after-comment.vader.*$") ""))
 
                  (display "Running Vim tests\n")
                  (with-directory-excursion "test"
-- 
2.41.0





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

* [bug#71346] [PATCH 2/3] gnu: neovim-coqtail: Propagated python-pynvim.
  2024-06-03 16:46 [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 1/3] gnu: vim-vader: Update to 0.4.0-1.429b669 Jean-Pierre De Jesus DIAZ
@ 2024-06-03 17:01 ` Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 3/3] gnu: vim-coqtail: Update to 1.7.1-1.d77080e Jean-Pierre De Jesus DIAZ
  2024-06-11 11:42 ` [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Christopher Baines
  3 siblings, 0 replies; 6+ messages in thread
From: Jean-Pierre De Jesus DIAZ @ 2024-06-03 17:01 UTC (permalink / raw)
  To: 71346; +Cc: Jean-Pierre De Jesus DIAZ

* gnu/packages/vim.scm (neovim-coqtail) <propagated-inputs>: Add
python-pynvim.

Change-Id: Ic55bba3a959a1400e75788bf2054d816bb6146a6
---
 gnu/packages/vim.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index f09a39e008..d51147fd29 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -529,7 +529,10 @@ (define-public neovim-coqtail
     (native-inputs
      (modify-inputs (package-native-inputs vim-coqtail)
        (replace "vim-vader" neovim-vader)
-       (append python-minimal python-pynvim)))))
+       (append python-minimal python-pynvim)))
+    (propagated-inputs
+     (modify-inputs (package-propagated-inputs vim-coqtail)
+       (append python-pynvim)))))
 
 (define-public vim-fugitive
   (package
-- 
2.41.0





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

* [bug#71346] [PATCH 3/3] gnu: vim-coqtail: Update to 1.7.1-1.d77080e.
  2024-06-03 16:46 [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 1/3] gnu: vim-vader: Update to 0.4.0-1.429b669 Jean-Pierre De Jesus DIAZ
  2024-06-03 17:01 ` [bug#71346] [PATCH 2/3] gnu: neovim-coqtail: Propagated python-pynvim Jean-Pierre De Jesus DIAZ
@ 2024-06-03 17:01 ` Jean-Pierre De Jesus DIAZ
  2024-06-11 11:42 ` [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Christopher Baines
  3 siblings, 0 replies; 6+ messages in thread
From: Jean-Pierre De Jesus DIAZ @ 2024-06-03 17:01 UTC (permalink / raw)
  To: 71346; +Cc: Jean-Pierre De Jesus DIAZ

* gnu/packages/vim.scm (vim-coqtail): Update to 1.7.1-1.d77080e.
(neovim-coqtail): Ditto.

Change-Id: Ifea28105a394c50a78cc1afaa2fa0217fe0cf39b
---
 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 d51147fd29..1ab69b9572 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -455,11 +455,11 @@ (define-public vim-context-filetype
       (license license:expat)))) ; ??? check again
 
 (define-public vim-coqtail
-  (let ((commit "dfe3939c9caff69d9af76bfd74f1a40fb7dc5609")
-        (revision "0"))
+  (let ((commit "d77080e17787afe9ad0366d86327658da36febbb")
+        (revision "1"))
     (package
       (name "vim-coqtail")
-      (version (git-version "1.7.0" revision commit))
+      (version (git-version "1.7.1" revision commit))
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
@@ -468,7 +468,7 @@ (define-public vim-coqtail
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0av2m075n6z05ah9ndrgnp9s16yrz6n2lj0igd9fh3c5k41x5xks"))))
+                  "03qq50mas5dk3aj1rbv1f0x68rfa9b07cacj12sxp76sda9c0prz"))))
       (build-system vim-build-system)
       (arguments
        `(#:plugin-name "coqtail"
-- 
2.41.0





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

* [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail
  2024-06-03 16:46 [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Jean-Pierre De Jesus DIAZ
                   ` (2 preceding siblings ...)
  2024-06-03 17:01 ` [bug#71346] [PATCH 3/3] gnu: vim-coqtail: Update to 1.7.1-1.d77080e Jean-Pierre De Jesus DIAZ
@ 2024-06-11 11:42 ` Christopher Baines
  2024-06-11 11:57   ` bug#71346: " Jean-Pierre De Jesus Diaz
  3 siblings, 1 reply; 6+ messages in thread
From: Christopher Baines @ 2024-06-11 11:42 UTC (permalink / raw)
  To: Jean-Pierre De Jesus DIAZ; +Cc: 71346-done

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

Jean-Pierre De Jesus DIAZ <jean@foundation.xyz> writes:

> This patch set updates vim-vader and vim-coqtail and their neovim
> variants respectively.
>
> The vim-vader package also has been fixed since some tests have broke.
>
> Also a patch adds python-pynvim to neovim-coqtail for convenience as the
> plugin needs it (and to avoid manual installation).
>
> Jean-Pierre De Jesus DIAZ (3):
>   gnu: vim-vader: Update to 0.4.0-1.429b669.
>   gnu: neovim-coqtail: Propagated python-pynvim.
>   gnu: vim-coqtail: Update to 1.7.1-1.d77080e.
>
>  gnu/packages/vim.scm | 26 ++++++++++++++++----------
>  1 file changed, 16 insertions(+), 10 deletions(-)

Looks good to me, I've pushed this to master as
ec031bbbf136ceb0c6c62c68652ca98f74f86d8b.

I tweaked the commit mesasges a bit, the changelog entries are more
around what you change rather than the effects, so I removed the bits
about neovim "Ditto".

Thanks,

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

* bug#71346: [PATCH 0/3] gnu: Update vim-vader and vim-coqtail
  2024-06-11 11:42 ` [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Christopher Baines
@ 2024-06-11 11:57   ` Jean-Pierre De Jesus Diaz
  0 siblings, 0 replies; 6+ messages in thread
From: Jean-Pierre De Jesus Diaz @ 2024-06-11 11:57 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 71346-done

Hello,

Thanks for merging and I'm sorry about the extra stuff in the commit messages!

On Tue, Jun 11, 2024 at 11:42 AM Christopher Baines <mail@cbaines.net> wrote:
>
> Jean-Pierre De Jesus DIAZ <jean@foundation.xyz> writes:
>
> > This patch set updates vim-vader and vim-coqtail and their neovim
> > variants respectively.
> >
> > The vim-vader package also has been fixed since some tests have broke.
> >
> > Also a patch adds python-pynvim to neovim-coqtail for convenience as the
> > plugin needs it (and to avoid manual installation).
> >
> > Jean-Pierre De Jesus DIAZ (3):
> >   gnu: vim-vader: Update to 0.4.0-1.429b669.
> >   gnu: neovim-coqtail: Propagated python-pynvim.
> >   gnu: vim-coqtail: Update to 1.7.1-1.d77080e.
> >
> >  gnu/packages/vim.scm | 26 ++++++++++++++++----------
> >  1 file changed, 16 insertions(+), 10 deletions(-)
>
> Looks good to me, I've pushed this to master as
> ec031bbbf136ceb0c6c62c68652ca98f74f86d8b.
>
> I tweaked the commit mesasges a bit, the changelog entries are more
> around what you change rather than the effects, so I removed the bits
> about neovim "Ditto".
>
> Thanks,
>
> Chris




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

end of thread, other threads:[~2024-06-11 16:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 16:46 [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Jean-Pierre De Jesus DIAZ
2024-06-03 17:01 ` [bug#71346] [PATCH 1/3] gnu: vim-vader: Update to 0.4.0-1.429b669 Jean-Pierre De Jesus DIAZ
2024-06-03 17:01 ` [bug#71346] [PATCH 2/3] gnu: neovim-coqtail: Propagated python-pynvim Jean-Pierre De Jesus DIAZ
2024-06-03 17:01 ` [bug#71346] [PATCH 3/3] gnu: vim-coqtail: Update to 1.7.1-1.d77080e Jean-Pierre De Jesus DIAZ
2024-06-11 11:42 ` [bug#71346] [PATCH 0/3] gnu: Update vim-vader and vim-coqtail Christopher Baines
2024-06-11 11:57   ` bug#71346: " Jean-Pierre De Jesus Diaz

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.