GNU bug report logs -
#67278
[PATCH] gnu: Add vim-jedi.
Previous Next
Reported by: Nguyễn Gia Phong <mcsinyx <at> disroot.org>
Date: Sun, 19 Nov 2023 13:21:02 UTC
Severity: normal
Tags: patch
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 67278 in the body.
You can then email your comments to 67278 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#67278
; Package
guix-patches
.
(Sun, 19 Nov 2023 13:21:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nguyễn Gia Phong <mcsinyx <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 19 Nov 2023 13:21:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Efraim Flashner <efraim <at> flashner.co.il>
:
You have taken responsibility.
(Sun, 26 Nov 2023 10:11:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Nguyễn Gia Phong <mcsinyx <at> disroot.org>
:
bug acknowledged by developer.
(Sun, 26 Nov 2023 10:11:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 67278-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
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 <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)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#67278
; Package
guix-patches
.
(Mon, 27 Nov 2023 16:05:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 67278-done <at> debbugs.gnu.org (full text, mbox):
On 2023-11-26 at 12:09+02:00, Efraim Flashner wrote:
> 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.
Thank you!
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 26 Dec 2023 12:24:12 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 135 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.