Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-remote/
Date: Sat, 07 May 2022 09:35:11
Message-Id: 1651916024.3ae72434c6de21ec4e2ea24d5cd0c6bf1bc6f0e7.mgorny@gentoo
1 commit: 3ae72434c6de21ec4e2ea24d5cd0c6bf1bc6f0e7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 08:03:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 09:33:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae72434
7
8 dev-python/neovim-remote: Bump to 2.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/neovim-remote/Manifest | 1 +
13 .../neovim-remote/neovim-remote-2.5.0.ebuild | 42 ++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/neovim-remote/Manifest b/dev-python/neovim-remote/Manifest
17 index de84c2754b82..1bcf043aa783 100644
18 --- a/dev-python/neovim-remote/Manifest
19 +++ b/dev-python/neovim-remote/Manifest
20 @@ -1,2 +1,3 @@
21 DIST neovim-remote-2.4.0.tar.gz 438687 BLAKE2B 0dfbe3d660d9b2f6b7a4f1016d4d230d63612306ea99079364ed5c6dbae51df7a19c4d1bca51a7bfad142ffe5811e286b843edf6b0715c7aac921c584701030e SHA512 073bf95a0238c76c19258d886fe71e23ec85f9cba200b8a490014a2842d1a84b3c95092afcfdcc8ca80122639b9e07652594faa24ed6a6aff537192ec3a3d14c
22 DIST neovim-remote-2.4.2.gh.tar.gz 438766 BLAKE2B e4ff3218e405da24f5146e38fec94d61953e2b89ef1bdae49a2ec925c3c1f953187fec51e9ea9a71c9265959212221fd73d59582a8f91fd4c03c734ad04e219f SHA512 4c39a28781d33bd179492816b2723dba4ef8e535813a25373c94852125b2b743732e98875c89111dce4a6329338c7d69837fed0dd9072740b1bf2b0f192855ab
23 +DIST neovim-remote-2.5.0.gh.tar.gz 439382 BLAKE2B b37317362b13dcb796d6a6ca0bd16b99b48154d9615af162d3da3898b080bbd87ae4624c37240498d73b92522a32a732cfc75ce8f69e172c97dd837b0965748e SHA512 872ad20f947a5ac99a1a91b925e1daa59e0c4ed6b7dbe9fede806dae2c3f1f5bc8bd660ba58513c41e402d39e2ad15d5f499d57e13782af7d10d8390a2737ea3
24
25 diff --git a/dev-python/neovim-remote/neovim-remote-2.5.0.ebuild b/dev-python/neovim-remote/neovim-remote-2.5.0.ebuild
26 new file mode 100644
27 index 000000000000..a7036334d63e
28 --- /dev/null
29 +++ b/dev-python/neovim-remote/neovim-remote-2.5.0.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +if [[ ${PV} == 9999 ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
44 +else
45 + SRC_URI="
46 + https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 + "
49 + KEYWORDS="~amd64 ~arm"
50 +fi
51 +
52 +DESCRIPTION="A tool that helps control neovim processes"
53 +HOMEPAGE="
54 + https://github.com/mhinz/neovim-remote/
55 + https://pypi.org/project/neovim-remote/
56 +"
57 +
58 +LICENSE="MIT"
59 +SLOT="0"
60 +
61 +RDEPEND="
62 + dev-python/pynvim[${PYTHON_USEDEP}]
63 + dev-python/psutil[${PYTHON_USEDEP}]
64 +"
65 +
66 +BDEPEND="
67 + test? (
68 + app-editors/neovim
69 + )
70 +"
71 +
72 +distutils_enable_tests pytest