Gentoo Archives: gentoo-commits

From: Ole Reifschneider <tranquility@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/neovim-python-client/
Date: Mon, 11 Jun 2018 20:50:48
Message-Id: 1528750235.8bd012c26359a110fe321eb899f67e805c2735fa.tranquility@gentoo
1 commit: 8bd012c26359a110fe321eb899f67e805c2735fa
2 Author: Ole Reifschneider <tranquility <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 11 20:44:40 2018 +0000
4 Commit: Ole Reifschneider <tranquility <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 11 20:50:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd012c2
7
8 dev-python/neovim-python-client: Bump version to 0.3.0
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 dev-python/neovim-python-client/Manifest | 1 +
13 .../neovim-python-client-0.2.6.ebuild | 32 ++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/neovim-python-client/Manifest b/dev-python/neovim-python-client/Manifest
17 index 3007ba10674..3c39a25efb5 100644
18 --- a/dev-python/neovim-python-client/Manifest
19 +++ b/dev-python/neovim-python-client/Manifest
20 @@ -1,3 +1,4 @@
21 DIST neovim-python-client-0.1.13.tar.gz 41413 BLAKE2B 819c3e7763cfb357d45130928dab23ad149a5f9d8efb0df8699a805bc394662447837ad3edc869705a95d74a37f2eec4f155212da918ac779d389c150a0d7189 SHA512 ecef42601632551c98f8de019bfdf4dbff3ce1f0e1b6943b78a506b710e5810f6a7e611adc09435992b97288ff365a416870a74202a5c68236b5daeb51d15c8b
22 DIST neovim-python-client-0.2.1.tar.gz 41971 BLAKE2B 9ebff937e08963cb8c764c4dcfcef8b6e28e8d0219635f9602ccc77b0bf4412a797de71fbf149bcaafe85bd1122a0d3cec1d8bfa81217c8c2d5a89bc1772c572 SHA512 710be7f5355077fa1eae256c541a06d475902492a19638c5786e25aafb9181f40afcc8df70aca0da15a569a9d6b095ab7bd8008e4f947725cf081954fb7c042e
23 DIST neovim-python-client-0.2.4.tar.gz 47216 BLAKE2B 029bc18936fcd23518ee0b80e5396b2ad9477a4395c27ca5d7e30f897599b47d68529cfe0febafae321a2dc9bb8dfd7cdcdde97225e166bae0565bd301598a4b SHA512 38dcd146060d1942d5ab58ab036f39667b908719b1fc48f79c0bd2b82cf458c3ef6750ccf6d0e4b5bdb71b42a9e5666c008f03a46b07801f2ea8435dec8c716a
24 +DIST neovim-python-client-0.2.6.tar.gz 50170 BLAKE2B d241ae0019bb8a4f08abf11866d7c964425d96756452e7bafb95fbce1795657c6911cf6bb706f5efa46ac3f5bd2c4af23ade9b9677d8f1f94905d72a39ddfde5 SHA512 a493c1e6be6a196d35e69e6b6b6a7752e939a254ed423079468c0e13ce40c2646ee8d65482648ea37a9d9c53b4f2c50cdd5e6c8dc130e63a7e40f424c4f4a9c0
25
26 diff --git a/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild b/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild
27 new file mode 100644
28 index 00000000000..fba1505898d
29 --- /dev/null
30 +++ b/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
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.5.2[${PYTHON_USEDEP}]
50 + virtual/python-greenlet[${PYTHON_USEDEP}]
51 + $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' python2_7)"
52 +
53 +RDEPEND="
54 + ${DEPEND}
55 + >=app-editors/neovim-0.2.1"
56 +
57 +S="${WORKDIR}/python-client-${PV}"
58 +
59 +python_prepare_all() {
60 + # allow useage of renamed msgpack
61 + sed -i '/^msgpack/d' setup.py || die
62 + distutils-r1_python_prepare_all
63 +}