2019-04-18 08:49:42 +03:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2017-05-01 10:50:13 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
2019-04-18 08:49:42 +03:00
|
|
|
PYTHON_COMPAT=( python2_7 python3_{5,6} pypy )
|
2017-05-01 10:50:13 +03:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
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}]"
|
|
|
|
|
|
|
|
# DISTUTILS_IN_SOURCE_BUILD=1
|
|
|
|
|
|
|
|
python_prepare_all() {
|
|
|
|
sed -e 's:make:$(MAKE):g' -i doc/Makefile || die
|
|
|
|
cp -r "${FILESDIR}"/defs doc/src/ || die
|
|
|
|
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
}
|
|
|
|
|
|
|
|
python_compile_all() {
|
|
|
|
if use doc; then
|
|
|
|
cd doc || die
|
|
|
|
VARTEXFONTS="${T}"/fonts emake html
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
python_test() {
|
|
|
|
cd test || die
|
|
|
|
|
|
|
|
local t
|
|
|
|
for t in *.py; do
|
|
|
|
"${EPYTHON}" "${t}" || die
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
use doc && local HTML_DOCS=( doc/html/. )
|
|
|
|
distutils-r1_python_install_all
|
|
|
|
}
|