Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-xlib/
Date: Sat, 31 Dec 2022 12:37:13
Message-Id: 1672489809.69b8652a27a519205902d988ad165b376d21c402.mgorny@gentoo
1 commit: 69b8652a27a519205902d988ad165b376d21c402
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 31 12:30:09 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 31 12:30:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69b8652a
7
8 dev-python/python-xlib: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-xlib/Manifest | 1 -
13 dev-python/python-xlib/python-xlib-0.31-r1.ebuild | 39 -----------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-python/python-xlib/Manifest b/dev-python/python-xlib/Manifest
17 index 39759f903c90..2a42cde9567d 100644
18 --- a/dev-python/python-xlib/Manifest
19 +++ b/dev-python/python-xlib/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST python-xlib-0.31.tar.bz2 211425 BLAKE2B c0a15b11c264942479c86088d8d5bdc0c759ae71df8939feee200ff58ec30d3b2c0a99a119cc56e5c32279b26517e7925cf9124a367dc7d32fcaf0be4f7cd41e SHA512 f98978cd0058ae18f08f9da71b4ff31cd7811040ec1eb03ce065c187f312259d674dd76aad447752c8f508e585838948c90182eef5d5240e6c06b0a5dd1fbd33
22 DIST python-xlib-0.32.tar.bz2 213554 BLAKE2B cf24645529c6ca67a4825419837f312fa4ae0902bd2fb8f2eade7cc1645a3f79201b43c7ddca0cdcf8b21f623583acee1252cbe83d3700ab08979b8f0723b0a4 SHA512 9fecb77fa5d7ffba4c8031c0738147b7581dee9aed1a812254d22d78b6021cfc08743edb76829a3e5ba31f9a42648ea501b50ddcf5652ec3114a367c5e83d465
23 DIST python-xlib-0.33.tar.bz2 213763 BLAKE2B 53486ec938bc00306658f3151556f1353fe5881ab942d06493f6f78d33b4cff8aab6e6aa5ad7e9124824d61549545719375c84f7b9376518e2328fa2e65df553 SHA512 3b7b4fea5cd69544d2227806853bdfdd04447089e182ca0f199e18e8bd43375d9bf03c819fd6a055ad4ad274594651e05db82585ab40d0fcf225ce36b553c991
24
25 diff --git a/dev-python/python-xlib/python-xlib-0.31-r1.ebuild b/dev-python/python-xlib/python-xlib-0.31-r1.ebuild
26 deleted file mode 100644
27 index 6b3f020591e1..000000000000
28 --- a/dev-python/python-xlib/python-xlib-0.31-r1.ebuild
29 +++ /dev/null
30 @@ -1,39 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..11} )
37 -DISTUTILS_USE_PEP517=setuptools
38 -inherit distutils-r1 virtualx
39 -
40 -DESCRIPTION="A fully functional X client library for Python, written in Python"
41 -HOMEPAGE="https://github.com/python-xlib/python-xlib"
42 -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.bz2"
43 -
44 -LICENSE="LGPL-2+"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~riscv x86"
47 -IUSE="doc"
48 -
49 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
50 -BDEPEND="${RDEPEND}
51 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 - doc? ( sys-apps/texinfo )
53 - test? ( dev-python/mock[${PYTHON_USEDEP}] )
54 -"
55 -
56 -distutils_enable_tests unittest
57 -
58 -python_compile_all() {
59 - use doc && emake -C doc/info
60 -}
61 -
62 -src_test() {
63 - virtx distutils-r1_src_test
64 -}
65 -
66 -python_install_all() {
67 - use doc && doinfo doc/info/*.info
68 - distutils-r1_python_install_all
69 -}