summaryrefslogtreecommitdiff
path: root/dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-04-06 22:33:41 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-04-06 22:33:41 +0100
commite68d405c5d712af4387159df07e226217bdda049 (patch)
tree009ab0f3d427f0813e62930d71802cb054c07e30 /dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch
parent401101f9c8077911929d3f2b60a37098460a5d89 (diff)
gentoo resync : 06.04.2022
Diffstat (limited to 'dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch')
-rw-r--r--dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch28
1 files changed, 0 insertions, 28 deletions
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
deleted file mode 100644
index 0901090e4651..000000000000
--- a/dev-python/slixmpp/files/slixmpp-1.7.1-fix-py3.10.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 8b7648502b003d433a08333b041baf1d4960c9d4 Mon Sep 17 00:00:00 2001
-From: Nicolas Cedilnik <nicoco@nicoco.fr>
-Date: Mon, 22 Feb 2021 13:07:15 +0100
-Subject: [PATCH] Fix deprecation warning
-
----
- slixmpp/thirdparty/orderedset.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/slixmpp/thirdparty/orderedset.py b/slixmpp/thirdparty/orderedset.py
-index f6642db3..43023af4 100644
---- a/slixmpp/thirdparty/orderedset.py
-+++ b/slixmpp/thirdparty/orderedset.py
-@@ -20,9 +20,9 @@
- # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- # OTHER DEALINGS IN THE SOFTWARE.
-
--import collections
-+from collections.abc import MutableSet
-
--class OrderedSet(collections.MutableSet):
-+class OrderedSet(MutableSet):
-
- def __init__(self, iterable=None):
- self.end = end = []
---
-GitLab
-