diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-06-01 11:45:02 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-06-01 12:55:28 +0200 |
commit | ef98582ae411cc42c9933d0e6add3bc8564a38ff (patch) | |
tree | e70d8c63857d8b173fb6994543510f30f150c5bf /dev-python/python-xlib | |
parent | dev-python/dictdiffer: pep517, enable py3.11 (diff) | |
download | gentoo-ef98582ae411cc42c9933d0e6add3bc8564a38ff.tar.gz gentoo-ef98582ae411cc42c9933d0e6add3bc8564a38ff.tar.bz2 gentoo-ef98582ae411cc42c9933d0e6add3bc8564a38ff.zip |
dev-python/python-xlib: update EAPI 7 -> 8, pep517, enable py3.11
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'dev-python/python-xlib')
-rw-r--r-- | dev-python/python-xlib/python-xlib-0.31-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/python-xlib/python-xlib-0.31-r1.ebuild b/dev-python/python-xlib/python-xlib-0.31-r1.ebuild new file mode 100644 index 000000000000..b9715050ed58 --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.31-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools +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 ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="doc" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +BDEPEND="${RDEPEND} + dev-python/setuptools_scm[${PYTHON_USEDEP}] + doc? ( sys-apps/texinfo ) + test? ( dev-python/mock[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests unittest + +python_compile_all() { + use doc && emake -C doc/info +} + +src_test() { + virtx distutils-r1_src_test +} + +python_install_all() { + use doc && doinfo doc/info/*.info + distutils-r1_python_install_all +} |