summaryrefslogtreecommitdiff
path: root/dev-python/python-xlib/python-xlib-0.19.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-03-28 22:04:54 +0100
committerMichał Górny <mgorny@gentoo.org>2020-03-28 22:11:22 +0100
commit68ac15fa1b968bb0bc48324db45012583385d9cb (patch)
tree3c04619c208fec1f345ae2b31b19cfc4c2f1fbb3 /dev-python/python-xlib/python-xlib-0.19.ebuild
parentcc25f43c5601cdc941c3cab4f003ef8e03767c5f (diff)
downloadgentoo-68ac15fa1b968bb0bc48324db45012583385d9cb.tar.gz
gentoo-68ac15fa1b968bb0bc48324db45012583385d9cb.tar.bz2
gentoo-68ac15fa1b968bb0bc48324db45012583385d9cb.zip
dev-python/python-xlib: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-xlib/python-xlib-0.19.ebuild')
-rw-r--r--dev-python/python-xlib/python-xlib-0.19.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/python-xlib/python-xlib-0.19.ebuild b/dev-python/python-xlib/python-xlib-0.19.ebuild
deleted file mode 100644
index 463754e79620..000000000000
--- a/dev-python/python-xlib/python-xlib-0.19.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_6 )
-
-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
-}