Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-python-client/
Date: Fri, 05 Jan 2018 15:02:18
Message-Id: 1515164528.ea127fd212e7f67a0f9ca1855ac173267db9dba1.monsieurp@gentoo
1 commit: ea127fd212e7f67a0f9ca1855ac173267db9dba1
2 Author: Shane Peelar <lookatyouhacker <AT> gmail <DOT> com>
3 AuthorDate: Fri Dec 8 14:58:53 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 15:02:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea127fd2
7
8 dev-python/neovim-python-client: version bump.
9
10 Closes: https://bugs.gentoo.org/640260
11 Closes: https://github.com/gentoo/gentoo/pull/6484
12 Package-Manager: Portage-2.3.13, Repoman-2.3.3
13
14 dev-python/neovim-python-client/Manifest | 1 +
15 .../neovim-python-client-0.2.0.ebuild | 25 ++++++++++++++++++++++
16 2 files changed, 26 insertions(+)
17
18 diff --git a/dev-python/neovim-python-client/Manifest b/dev-python/neovim-python-client/Manifest
19 index 867d9c9e875..0b64c972223 100644
20 --- a/dev-python/neovim-python-client/Manifest
21 +++ b/dev-python/neovim-python-client/Manifest
22 @@ -1,2 +1,3 @@
23 DIST neovim-python-client-0.1.13.tar.gz 41413 BLAKE2B 819c3e7763cfb357d45130928dab23ad149a5f9d8efb0df8699a805bc394662447837ad3edc869705a95d74a37f2eec4f155212da918ac779d389c150a0d7189 SHA512 ecef42601632551c98f8de019bfdf4dbff3ce1f0e1b6943b78a506b710e5810f6a7e611adc09435992b97288ff365a416870a74202a5c68236b5daeb51d15c8b
24 DIST neovim-python-client-0.1.9.tar.gz 40599 BLAKE2B 48b43d344ed0c7aa3faa95a16c9714f2d105a916364db55d68263db7b8307a90d084bcf7559dd17277bb8dfbe6d7bbab8d3dafa250b4825b2cebddc00d130dee SHA512 043429407d140b37004d5344f9244c8cb5a37e2b5d450454e6535bece7fb05f037e5eff2a63431fad55ab2470372c4a17e0a608a94af65a2f400f2158b736ce4
25 +DIST neovim-python-client-0.2.0.tar.gz 41892 BLAKE2B 0ae59548ae1e376c618c24edfa73f3f68f5c059b2772be8ba3aae08d38c7a368d8b341da0221092ec8fb132843e1ea2d313bedf0c51fd202d5953e530f205d3a SHA512 b8363be2892f4dfaed0251186a3f370ec31be51710b659b71f52575da773e254b388afec2f5999a6b526d722b5232a16c59d7e28e49df30b4760ef030238d068
26
27 diff --git a/dev-python/neovim-python-client/neovim-python-client-0.2.0.ebuild b/dev-python/neovim-python-client/neovim-python-client-0.2.0.ebuild
28 new file mode 100644
29 index 00000000000..66a5585d620
30 --- /dev/null
31 +++ b/dev-python/neovim-python-client/neovim-python-client-0.2.0.ebuild
32 @@ -0,0 +1,25 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python client for Neovim"
41 +HOMEPAGE="https://github.com/neovim/python-client"
42 +SRC_URI="https://github.com/neovim/python-client/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +DEPEND="
49 + >=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]
50 + virtual/python-greenlet[${PYTHON_USEDEP}]
51 + $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' python{2_7,3_3})"
52 +
53 +RDEPEND="
54 + ${DEPEND}
55 + app-editors/neovim"
56 +
57 +S="${WORKDIR}/python-client-${PV}"