diff options
| author | Michał Górny <mgorny@gentoo.org> | 2018-04-20 23:02:24 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2018-04-20 23:06:34 +0200 |
| commit | df85b214466b9717612c149b3e31156b5a1bc882 (patch) | |
| tree | b448d0ca8e16d8e3808719610f68b899f427eb7d /dev-python/python-xlib/python-xlib-0.23.ebuild | |
| parent | c0462547950e14a269592fabe071c02caedf78ff (diff) | |
| download | gentoo-df85b214466b9717612c149b3e31156b5a1bc882.tar.gz gentoo-df85b214466b9717612c149b3e31156b5a1bc882.tar.bz2 gentoo-df85b214466b9717612c149b3e31156b5a1bc882.zip | |
dev-python/python-xlib: Bump to 0.23, fix doc build & tests
Diffstat (limited to 'dev-python/python-xlib/python-xlib-0.23.ebuild')
| -rw-r--r-- | dev-python/python-xlib/python-xlib-0.23.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-python/python-xlib/python-xlib-0.23.ebuild b/dev-python/python-xlib/python-xlib-0.23.ebuild new file mode 100644 index 000000000000..7132ed70ef56 --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.23.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) + +inherit distutils-r1 virtualx + +DESCRIPTION="A fully functional X client library for Python, written in Python" +HOMEPAGE="https://github.com/python-xlib/python-xlib" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="doc" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools_scm[${PYTHON_USEDEP}] + doc? ( sys-apps/texinfo )" + +# DISTUTILS_IN_SOURCE_BUILD=1 + +python_compile_all() { + use doc && emake -C doc/info +} + +src_test() { + virtx distutils-r1_src_test +} + +python_test() { + "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + use doc && doinfo doc/info/*.info + distutils-r1_python_install_all +} |
