summaryrefslogtreecommitdiff
path: root/dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch')
-rw-r--r--dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch b/dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch
new file mode 100644
index 000000000000..e85826f6bc0e
--- /dev/null
+++ b/dev-python/python-varlink/files/python-varlink-30.3.1-fix.py3.10.patch
@@ -0,0 +1,30 @@
+From 0a9014ad564131ee98dc8c4c1f9cc0c5e29d5dac Mon Sep 17 00:00:00 2001
+From: Arthur Zamarin <arthurzam@gentoo.org>
+Date: Fri, 20 Aug 2021 10:37:42 +0300
+Subject: [PATCH] Python3.10: fix import collections
+
+Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
+---
+ varlink/scanner.py | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/varlink/scanner.py b/varlink/scanner.py
+index d5a0e7b..58ced74 100644
+--- a/varlink/scanner.py
++++ b/varlink/scanner.py
+@@ -21,7 +21,11 @@ try:
+ except: # Python 2
+ from argparse import Namespace as SimpleNamespace
+
+-from collections import (Set, OrderedDict, Mapping)
++try:
++ from collections.abc import (Set, Mapping)
++ from collections import OrderedDict
++except ImportError:
++ from collections import (Set, OrderedDict, Mapping)
+
+ from .error import (MethodNotFound, InvalidParameter)
+
+--
+2.33.0
+