commit:     18f36f256af5771a53d7d07d4d84939e0e64fbaf
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun May  7 18:15:30 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 27 11:31:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f36f25

dev-python/neovim-python-client: add python3_6, enable tests

Closes: https://github.com/gentoo/gentoo/pull/4266

 .../neovim-python-client-0.1.13.ebuild                 | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/dev-python/neovim-python-client/neovim-python-client-0.1.13.ebuild 
b/dev-python/neovim-python-client/neovim-python-client-0.1.13.ebuild
index 5a547eb581e..72d1f13ef3f 100644
--- a/dev-python/neovim-python-client/neovim-python-client-0.1.13.ebuild
+++ b/dev-python/neovim-python-client/neovim-python-client-0.1.13.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
 
 inherit distutils-r1
 
@@ -14,16 +14,28 @@ 
SRC_URI="https://github.com/neovim/python-client/archive/${PV}.tar.gz -> ${P}.ta
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test"
 
-DEPEND="
+COMMON_DEPEND="
        >=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]
        virtual/python-greenlet[${PYTHON_USEDEP}]
        $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' python2_7)
 "
 
 RDEPEND="
-       ${DEPEND}
+       ${COMMON_DEPEND}
        >=app-editors/neovim-0.1.6
 "
+DEPEND="
+       ${COMMON_DEPEND}
+       test? (
+               ${RDEPEND}
+               dev-python/nose[${PYTHON_USEDEP}]
+       )
+"
 
 S="${WORKDIR}/python-client-${PV}"
+
+python_test() {
+       nosetests -d -v || die
+}

Reply via email to