diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-03 13:35:37 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-03 13:35:37 +0100 |
commit | fd6ac50214a4e9d826a99889cd1f1c597c69dade (patch) | |
tree | fa21c7cebc130d98ed8d892940c5f6e6d34bed4b /dev-python/python-xlib | |
parent | x11-libs/xapp: Update remote-id (diff) | |
download | gentoo-fd6ac50214a4e9d826a99889cd1f1c597c69dade.tar.gz gentoo-fd6ac50214a4e9d826a99889cd1f1c597c69dade.tar.bz2 gentoo-fd6ac50214a4e9d826a99889cd1f1c597c69dade.zip |
dev-python/python-xlib: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-xlib')
-rw-r--r-- | dev-python/python-xlib/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-xlib/files/python-xlib-0.32-drop-unused-tkinter-import.patch | 9 | ||||
-rw-r--r-- | dev-python/python-xlib/python-xlib-0.32-r1.ebuild | 52 |
3 files changed, 0 insertions, 62 deletions
diff --git a/dev-python/python-xlib/Manifest b/dev-python/python-xlib/Manifest index 2a42cde9567d..80930e7f24ed 100644 --- a/dev-python/python-xlib/Manifest +++ b/dev-python/python-xlib/Manifest @@ -1,2 +1 @@ -DIST python-xlib-0.32.tar.bz2 213554 BLAKE2B cf24645529c6ca67a4825419837f312fa4ae0902bd2fb8f2eade7cc1645a3f79201b43c7ddca0cdcf8b21f623583acee1252cbe83d3700ab08979b8f0723b0a4 SHA512 9fecb77fa5d7ffba4c8031c0738147b7581dee9aed1a812254d22d78b6021cfc08743edb76829a3e5ba31f9a42648ea501b50ddcf5652ec3114a367c5e83d465 DIST python-xlib-0.33.tar.bz2 213763 BLAKE2B 53486ec938bc00306658f3151556f1353fe5881ab942d06493f6f78d33b4cff8aab6e6aa5ad7e9124824d61549545719375c84f7b9376518e2328fa2e65df553 SHA512 3b7b4fea5cd69544d2227806853bdfdd04447089e182ca0f199e18e8bd43375d9bf03c819fd6a055ad4ad274594651e05db82585ab40d0fcf225ce36b553c991 diff --git a/dev-python/python-xlib/files/python-xlib-0.32-drop-unused-tkinter-import.patch b/dev-python/python-xlib/files/python-xlib-0.32-drop-unused-tkinter-import.patch deleted file mode 100644 index 5a0272a867b9..000000000000 --- a/dev-python/python-xlib/files/python-xlib-0.32-drop-unused-tkinter-import.patch +++ /dev/null @@ -1,9 +0,0 @@ -https://bugs.gentoo.org/881851 -https://github.com/python-xlib/python-xlib/issues/240 -https://github.com/python-xlib/python-xlib/pull/238 ---- a/Xlib/ext/randr.py -+++ b/Xlib/ext/randr.py -@@ -36,3 +36,2 @@ -
--from tkinter import W
- from Xlib import X
diff --git a/dev-python/python-xlib/python-xlib-0.32-r1.ebuild b/dev-python/python-xlib/python-xlib-0.32-r1.ebuild deleted file mode 100644 index c7dd75f90ded..000000000000 --- a/dev-python/python-xlib/python-xlib-0.32-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..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 -} |