emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#67278: closed ([PATCH] gnu: Add vim-jedi.)


From: GNU bug Tracking System
Subject: bug#67278: closed ([PATCH] gnu: Add vim-jedi.)
Date: Sun, 26 Nov 2023 10:11:02 +0000

Your message dated Sun, 26 Nov 2023 12:09:49 +0200
with message-id <ZWMZbVcwOqC_3evC@3900XT>
and subject line Re: [bug#67278] [PATCH] gnu: Add vim-jedi.
has caused the debbugs.gnu.org bug report #67278,
regarding [PATCH] gnu: Add vim-jedi.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
67278: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67278
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add vim-jedi. Date: Sun, 19 Nov 2023 22:19:19 +0900
* gnu/packages/vim.scm (vim-jedi): New variable.

Change-Id: I2656837686866961266b093cd6b4a4d528f5f684
---
 gnu/packages/vim.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 469c8b64cbe6..d10308959687 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1423,3 +1423,25 @@ (define-public vim-nerdcommenter
 operations and styles which are invoked via key mappings and a menu.  These
 operations are available for most filetypes.")
     (license license:cc0)))
+
+(define-public vim-jedi
+  (package
+    (name "vim-jedi")
+    (version "0.11.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/davidhalter/jedi-vim";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+         (base32 "03fj7f5cpchrdmz9szal6fdg05wdwb0j6260nnyp37nmpcpn13yc"))))
+    (build-system vim-build-system)
+    (arguments (list #:plugin-name "jedi-vim"))
+    (propagated-inputs (list python-jedi))
+    (home-page "https://github.com/davidhalter/jedi-vim";)
+    (synopsis "Jedi autocompletion library for Vim")
+    (description
+      "@code{jedi-vim} is a VIM binding to the autocompletion library Jedi.")
+    (license license:expat)))

base-commit: 5cad6f721b8884b612178896f06cd69d5839402c
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#67278] [PATCH] gnu: Add vim-jedi. Date: Sun, 26 Nov 2023 12:09:49 +0200
I looked around the sources and I didn't see a good spot to try to wrap
the plugin with python-jedi so we wouldn't have to propagate it.

I also renamed the package to vim-jedi-vim. Patch pushed! Thanks.

On Sun, Nov 19, 2023 at 10:19:19PM +0900, guix-patches--- via wrote:
> * gnu/packages/vim.scm (vim-jedi): New variable.
> 
> Change-Id: I2656837686866961266b093cd6b4a4d528f5f684
> ---
>  gnu/packages/vim.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
> index 469c8b64cbe6..d10308959687 100644
> --- a/gnu/packages/vim.scm
> +++ b/gnu/packages/vim.scm
> @@ -1423,3 +1423,25 @@ (define-public vim-nerdcommenter
>  operations and styles which are invoked via key mappings and a menu.  These
>  operations are available for most filetypes.")
>      (license license:cc0)))
> +
> +(define-public vim-jedi
> +  (package
> +    (name "vim-jedi")
> +    (version "0.11.2")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +              (url "https://github.com/davidhalter/jedi-vim";)
> +              (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +         (base32 "03fj7f5cpchrdmz9szal6fdg05wdwb0j6260nnyp37nmpcpn13yc"))))
> +    (build-system vim-build-system)
> +    (arguments (list #:plugin-name "jedi-vim"))
> +    (propagated-inputs (list python-jedi))
> +    (home-page "https://github.com/davidhalter/jedi-vim";)
> +    (synopsis "Jedi autocompletion library for Vim")
> +    (description
> +      "@code{jedi-vim} is a VIM binding to the autocompletion library Jedi.")
> +    (license license:expat)))
> 
> base-commit: 5cad6f721b8884b612178896f06cd69d5839402c
> -- 
> 2.41.0
> 
> 
> 
> 

-- 
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: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]