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/slixmpp/, dev-python/slixmpp/files/
Date: Thu, 31 Mar 2022 14:08:28
Message-Id: 1648735501.ba8c74c294943fce4e4da265dc8749943b1cb448.mgorny@gentoo
1 commit: ba8c74c294943fce4e4da265dc8749943b1cb448
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 31 14:05:01 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 14:05:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8c74c2
7
8 dev-python/slixmpp: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/slixmpp/Manifest | 2 --
13 .../slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch | 28 ----------------
14 dev-python/slixmpp/slixmpp-1.7.1.ebuild | 38 ----------------------
15 dev-python/slixmpp/slixmpp-1.8.0.1.ebuild | 36 --------------------
16 4 files changed, 104 deletions(-)
17
18 diff --git a/dev-python/slixmpp/Manifest b/dev-python/slixmpp/Manifest
19 index a816fce8cb4e..93180e7a2c76 100644
20 --- a/dev-python/slixmpp/Manifest
21 +++ b/dev-python/slixmpp/Manifest
22 @@ -1,3 +1 @@
23 -DIST slixmpp-1.7.1.tar.gz 931753 BLAKE2B 3de14be36353bc5f5f2cfbe002c44c5e843a7b36fa31a9dd315e363fc67e36d080df0dc70d82e65c6802c41377c2e98f56ff4e23cc5e9a92165c3d3b7565493f SHA512 5a59fcbb901e6f4456049f1ec2bbf781b1ec7c5a3ad4b66216d4c5daffa7f0606f74b941647fe2b53e6c8cdc476371305c7b7a2ca24d21450e19548f888be3b1
24 -DIST slixmpp-1.8.0.1.tar.gz 532519 BLAKE2B c4cda06d1d16ef92404263a90a6abbba46e526b4f9edc54228757b73c9faa0f04e9340ea80b5f0491017bad04094512bd25fe04fc095742b639cecba73db058b SHA512 0bfa39f126f2154702e160117b619f41319362723226ebf0ed4b803aafef0302d4df9d9a4cff5fd890507a10ac7424a07cc3bece519451bd56be400998dc0178
25 DIST slixmpp-1.8.1.tar.gz 532622 BLAKE2B d0c12c240c8a14df0a0765f8bac02eb545951a0b9749ec9569d651caa3457af1a71f1c6b3a10db879fe25648b1c3c456b78e48042a83124b0a8d4d35df60134d SHA512 13b355592d564b7e211e6007fa19099e619480d0a87332b68163115852840ad2f0c70063b4260fc88d4da67e13ea97c88972fc05999c1870256b0de0257409f9
26
27 diff --git a/dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch b/dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch
28 deleted file mode 100644
29 index 0901090e4651..000000000000
30 --- a/dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch
31 +++ /dev/null
32 @@ -1,28 +0,0 @@
33 -From 8b7648502b003d433a08333b041baf1d4960c9d4 Mon Sep 17 00:00:00 2001
34 -From: Nicolas Cedilnik <nicoco@××××××.fr>
35 -Date: Mon, 22 Feb 2021 13:07:15 +0100
36 -Subject: [PATCH] Fix deprecation warning
37 -
38 ----
39 - slixmpp/thirdparty/orderedset.py | 4 ++--
40 - 1 file changed, 2 insertions(+), 2 deletions(-)
41 -
42 -diff --git a/slixmpp/thirdparty/orderedset.py b/slixmpp/thirdparty/orderedset.py
43 -index f6642db3..43023af4 100644
44 ---- a/slixmpp/thirdparty/orderedset.py
45 -+++ b/slixmpp/thirdparty/orderedset.py
46 -@@ -20,9 +20,9 @@
47 - # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
48 - # OTHER DEALINGS IN THE SOFTWARE.
49 -
50 --import collections
51 -+from collections.abc import MutableSet
52 -
53 --class OrderedSet(collections.MutableSet):
54 -+class OrderedSet(MutableSet):
55 -
56 - def __init__(self, iterable=None):
57 - self.end = end = []
58 ---
59 -GitLab
60 -
61
62 diff --git a/dev-python/slixmpp/slixmpp-1.7.1.ebuild b/dev-python/slixmpp/slixmpp-1.7.1.ebuild
63 deleted file mode 100644
64 index e37f059d7d37..000000000000
65 --- a/dev-python/slixmpp/slixmpp-1.7.1.ebuild
66 +++ /dev/null
67 @@ -1,38 +0,0 @@
68 -# Copyright 1999-2021 Gentoo Authors
69 -# Distributed under the terms of the GNU General Public License v2
70 -
71 -EAPI=7
72 -
73 -PYTHON_COMPAT=( python3_{8..10} )
74 -
75 -inherit distutils-r1
76 -
77 -DESCRIPTION="Python 3 library for XMPP"
78 -HOMEPAGE="https://lab.louiz.org/poezio/slixmpp"
79 -LICENSE="MIT"
80 -SLOT="0"
81 -
82 -if [[ "${PV}" == "9999" ]]; then
83 - EGIT_REPO_URI="https://lab.louiz.org/poezio/${PN}.git"
84 - inherit git-r3
85 -else
86 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
87 - KEYWORDS="amd64"
88 -fi
89 -
90 -DEPEND="
91 - net-dns/libidn
92 -"
93 -RDEPEND="
94 - dev-python/aiodns[${PYTHON_USEDEP}]
95 - dev-python/aiohttp[${PYTHON_USEDEP}]
96 - dev-python/pyasn1-modules[${PYTHON_USEDEP}]
97 - dev-python/pyasn1[${PYTHON_USEDEP}]
98 - ${DEPEND}
99 -"
100 -
101 -PATCHES=(
102 - "${FILESDIR}/${P}-fix-py3.10.patch"
103 -)
104 -
105 -distutils_enable_tests unittest
106
107 diff --git a/dev-python/slixmpp/slixmpp-1.8.0.1.ebuild b/dev-python/slixmpp/slixmpp-1.8.0.1.ebuild
108 deleted file mode 100644
109 index 1a7f67fcb5c6..000000000000
110 --- a/dev-python/slixmpp/slixmpp-1.8.0.1.ebuild
111 +++ /dev/null
112 @@ -1,36 +0,0 @@
113 -# Copyright 1999-2022 Gentoo Authors
114 -# Distributed under the terms of the GNU General Public License v2
115 -
116 -EAPI=8
117 -
118 -DISTUTILS_USE_PEP517=setuptools
119 -PYTHON_COMPAT=( python3_{8..10} )
120 -
121 -inherit distutils-r1
122 -
123 -DESCRIPTION="Python 3 library for XMPP"
124 -HOMEPAGE="https://lab.louiz.org/poezio/slixmpp"
125 -LICENSE="MIT"
126 -SLOT="0"
127 -
128 -if [[ "${PV}" == "9999" ]]; then
129 - EGIT_REPO_URI="https://lab.louiz.org/poezio/${PN}.git"
130 - inherit git-r3
131 -else
132 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
133 - KEYWORDS="~amd64"
134 -fi
135 -
136 -DEPEND="
137 - net-dns/libidn
138 -"
139 -RDEPEND="
140 - dev-python/aiodns[${PYTHON_USEDEP}]
141 - dev-python/aiohttp[${PYTHON_USEDEP}]
142 - dev-python/defusedxml[${PYTHON_USEDEP}]
143 - dev-python/pyasn1-modules[${PYTHON_USEDEP}]
144 - dev-python/pyasn1[${PYTHON_USEDEP}]
145 - ${DEPEND}
146 -"
147 -
148 -distutils_enable_tests unittest