Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-remote/
Date: Tue, 01 Jun 2021 00:28:34
Message-Id: 1622507281.bd388adb0bb1a37d67f28045b42d8c2e88eb0080.sam@gentoo
1 commit: bd388adb0bb1a37d67f28045b42d8c2e88eb0080
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 1 00:27:27 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 00:28:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd388adb
7
8 dev-python/neovim-remote: sync live ebuild
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-python/neovim-remote/neovim-remote-2.4.0.ebuild | 4 ++--
13 dev-python/neovim-remote/neovim-remote-9999.ebuild | 14 ++++++++++----
14 2 files changed, 12 insertions(+), 6 deletions(-)
15
16 diff --git a/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild
17 index ec688444a52..24fb72fd195 100644
18 --- a/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild
19 +++ b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild
20 @@ -5,19 +5,19 @@ EAPI=7
21
22 PYTHON_COMPAT=( python3_{7..10} )
23 DISTUTILS_USE_SETUPTOOLS=rdepend
24 -
25 inherit distutils-r1
26
27 if [[ ${PV} == 9999 ]]; then
28 inherit git-r3
29 EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
30 else
31 - KEYWORDS="~amd64 ~arm"
32 SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 + KEYWORDS="~amd64 ~arm"
34 fi
35
36 DESCRIPTION="A tool that helps control neovim processes"
37 HOMEPAGE="https://github.com/mhinz/neovim-remote"
38 +
39 LICENSE="MIT"
40 SLOT="0"
41
42
43 diff --git a/dev-python/neovim-remote/neovim-remote-9999.ebuild b/dev-python/neovim-remote/neovim-remote-9999.ebuild
44 index 4dbb14c735e..15b4a3d9ac7 100644
45 --- a/dev-python/neovim-remote/neovim-remote-9999.ebuild
46 +++ b/dev-python/neovim-remote/neovim-remote-9999.ebuild
47 @@ -10,17 +10,23 @@ if [[ ${PV} == 9999 ]]; then
48 inherit git-r3
49 EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
50 else
51 - KEYWORDS="~amd64"
52 SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
53 + KEYWORDS="~amd64 ~arm"
54 fi
55
56 DESCRIPTION="A tool that helps control neovim processes"
57 HOMEPAGE="https://github.com/mhinz/neovim-remote"
58 +
59 LICENSE="MIT"
60 SLOT="0"
61
62 RDEPEND="
63 dev-python/pynvim[${PYTHON_USEDEP}]
64 - dev-python/psutil[${PYTHON_USEDEP}]"
65 -DEPEND="${RDEPEND}
66 - dev-python/setuptools[${PYTHON_USEDEP}]"
67 + dev-python/psutil[${PYTHON_USEDEP}]
68 +"
69 +
70 +distutils_enable_tests pytest
71 +
72 +BDEPEND+="
73 + test? ( app-editors/neovim )
74 +"