diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-11-28 08:40:51 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-11-28 08:40:51 +0000 |
| commit | c05d24a3b79163b97cc5dc39c466a5bbb07012e8 (patch) | |
| tree | 0f4a0755ed9e0435bd70bc1dab706c175e04fecb /dev-python/python-xlib/python-xlib-0.32-r1.ebuild | |
| parent | 33751691cbbd33164fff39b18034900e9011ac8d (diff) | |
| download | baldeagleos-repo-c05d24a3b79163b97cc5dc39c466a5bbb07012e8.tar.gz baldeagleos-repo-c05d24a3b79163b97cc5dc39c466a5bbb07012e8.tar.xz baldeagleos-repo-c05d24a3b79163b97cc5dc39c466a5bbb07012e8.zip | |
Adding metadata
Diffstat (limited to 'dev-python/python-xlib/python-xlib-0.32-r1.ebuild')
| -rw-r--r-- | dev-python/python-xlib/python-xlib-0.32-r1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-python/python-xlib/python-xlib-0.32-r1.ebuild b/dev-python/python-xlib/python-xlib-0.32-r1.ebuild new file mode 100644 index 000000000000..8828ce42b978 --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.32-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{7,8,9,10,11} ) + +inherit distutils-r1 virtualx + +DESCRIPTION="A fully functional X client library for Python, written in Python" +HOMEPAGE=" + https://github.com/python-xlib/python-xlib/ + https://pypi.org/project/python-xlib/ +" +SRC_URI=" + https://github.com/python-xlib/python-xlib/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 + +PATCHES=( + "${FILESDIR}"/${P}-drop-unused-tkinter-import.patch +) + +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 +} |
