Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-remote/
Date: Tue, 29 Sep 2020 10:26:58
Message-Id: 1601375160.e7705c8d44d861c03028fcd767bfb2994134e5ff.juippis@gentoo
1 commit: e7705c8d44d861c03028fcd767bfb2994134e5ff
2 Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl>
3 AuthorDate: Thu Sep 3 04:12:09 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 10:26:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7705c8d
7
8 dev-python/neovim-remote: version bump to 2.4.0
9
10 Closes: https://bugs.gentoo.org/738018
11 Package-Manager: Portage-3.0.5, Repoman-3.0.1
12 Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl>
13 Closes: https://github.com/gentoo/gentoo/pull/17391
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-python/neovim-remote/Manifest | 1 +
17 .../neovim-remote/neovim-remote-2.4.0.ebuild | 40 ++++++++++++++++++++++
18 2 files changed, 41 insertions(+)
19
20 diff --git a/dev-python/neovim-remote/Manifest b/dev-python/neovim-remote/Manifest
21 index 9484816847b..eef6d19f080 100644
22 --- a/dev-python/neovim-remote/Manifest
23 +++ b/dev-python/neovim-remote/Manifest
24 @@ -1 +1,2 @@
25 DIST neovim-remote-2.2.1.tar.gz 438078 BLAKE2B abbb056a10acb1c4e21c0c418ee2d6003869340eb34df0c0374b947fbbfa2d2e0f64f61ad571a6cad7ffad7374f1df17a519795e61b37b8d6741d566760759e9 SHA512 04a16a1ed5f4947b4fd763432a14fc565300abe9b480037a462f0c4700535d4854012ff08ac64234dbb1fccc1d3f5ba2174f94effc5564879fbcd1c83fee26ae
26 +DIST neovim-remote-2.4.0.tar.gz 438687 BLAKE2B 0dfbe3d660d9b2f6b7a4f1016d4d230d63612306ea99079364ed5c6dbae51df7a19c4d1bca51a7bfad142ffe5811e286b843edf6b0715c7aac921c584701030e SHA512 073bf95a0238c76c19258d886fe71e23ec85f9cba200b8a490014a2842d1a84b3c95092afcfdcc8ca80122639b9e07652594faa24ed6a6aff537192ec3a3d14c
27
28 diff --git a/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild
29 new file mode 100644
30 index 00000000000..0516b6e481b
31 --- /dev/null
32 +++ b/dev-python/neovim-remote/neovim-remote-2.4.0.ebuild
33 @@ -0,0 +1,40 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +PYTHON_COMPAT=( python3_{6,7,8} )
39 +DISTUTILS_USE_SETUPTOOLS=rdepend
40 +
41 +inherit distutils-r1
42 +
43 +if [[ ${PV} == 9999 ]]; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://github.com/mhinz/${PN}.git"
46 +else
47 + KEYWORDS="~amd64 ~arm"
48 + SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +fi
50 +
51 +DESCRIPTION="A tool that helps control neovim processes"
52 +HOMEPAGE="https://github.com/mhinz/neovim-remote"
53 +LICENSE="MIT"
54 +SLOT="0"
55 +IUSE="test"
56 +RESTRICT="!test? ( test )"
57 +
58 +RDEPEND="
59 + dev-python/pynvim[${PYTHON_USEDEP}]
60 + dev-python/psutil[${PYTHON_USEDEP}]
61 + dev-python/setuptools[${PYTHON_USEDEP}]
62 +"
63 +
64 +DEPEND="${RDEPEND}
65 + test? (
66 + app-editors/neovim
67 + dev-python/pytest[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +python_test() {
72 + pytest -vv || die
73 +}