summaryrefslogtreecommitdiff
path: root/dev-python/dbus-python
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
commit2771f79232c273bc2a57d23bf335dd81ccf6af28 (patch)
treec8af0fd04194aed03cf067d44e53c7edd3e9ab84 /dev-python/dbus-python
parente9d044d4b9b71200a96adfa280848858c0f468c9 (diff)
gentoo resync : 05.12.2021
Diffstat (limited to 'dev-python/dbus-python')
-rw-r--r--dev-python/dbus-python/Manifest1
-rw-r--r--dev-python/dbus-python/files/dbus-python-1.2.16-py39.patch33
2 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/dbus-python/Manifest b/dev-python/dbus-python/Manifest
index a7d288b6b2b1..e7b763f55113 100644
--- a/dev-python/dbus-python/Manifest
+++ b/dev-python/dbus-python/Manifest
@@ -1,4 +1,3 @@
-AUX dbus-python-1.2.16-py39.patch 948 BLAKE2B df88f38be549b81b404f3e5e7f0d4c09f7c43bc9ee91b0534059fbb3edbbe675e7ecd467d5d57f365aa59d510f06c41c9ae4970a5e5e8d2fad109bf55cfb507d SHA512 ce5f419736dea09de8a58e372c7587afbd270d806bdcc0eb3b7bd5fa830be00453152ea7ea44a32a06d860ca3174282f62ef44d5f8c9d43de7d8724c69f2ab37
DIST dbus-python-1.2.18.tar.gz 578204 BLAKE2B 932a06f4b0145f7a47cf1ab6ea33c14eb4e36570ef548e7557d4aa5b780e49f2d284cdb51f0ec2d8a1cb286097fb9eabb2193d7cbeb387eaf43cbe209b7f11fa SHA512 72f422c59637392bd78b741b66dff2afadcc706452c3e82fdc14b1dc052a0c5cb8a85e2758d18c5cbdc08004419a0b3c16b67b99688d96307084403e72585900
EBUILD dbus-python-1.2.18.ebuild 1925 BLAKE2B 1d64093c96d75a16615eb66656c733b0b059c46503b36231b464e498512c130e9f11eb6947f877b68e671d55ef1ec1351865c7bb82d4fae9fd7a9ea6c336cfd8 SHA512 bbc6c3ce463661c279f579d9ad55a561329f0d3b4383b9d3b3ccecf7a0ef8e8ff4661792d968d265b948ac159e23c1c053289741ff79c21bcbcaafbdd7e3f277
MISC metadata.xml 404 BLAKE2B 14fb120b562c66c35e57d6686f87d2515d6e7a33e4a3027e2edde743ca533d8be63c8c3c4596de913c86091b2d768c997a1c25282efa657cab08131090cec588 SHA512 7a22b8fccd4715f6d817d528eadff1eaf126158f02113b318a4cf99b5a9bf7a05e67ad0ef1258399a937599bec23cb52f8fb42652948313fb8c8ba63bc5d22b6
diff --git a/dev-python/dbus-python/files/dbus-python-1.2.16-py39.patch b/dev-python/dbus-python/files/dbus-python-1.2.16-py39.patch
deleted file mode 100644
index 93db26cfcefc..000000000000
--- a/dev-python/dbus-python/files/dbus-python-1.2.16-py39.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 6a899a9174c8008ba5fb576238ea4d7c970453c3 Mon Sep 17 00:00:00 2001
-From: Simon McVittie <smcv@collabora.com>
-Date: Tue, 14 Jan 2020 15:29:43 +0000
-Subject: [PATCH] service: Adjust to deprecation of collections.Sequence
-
-Since Python 3.3 the recommended location is collections.abc.Sequence,
-and the collections.Sequence alias will be removed in 3.9.
-
-Signed-off-by: Simon McVittie <smcv@collabora.com>
----
- dbus/service.py | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/dbus/service.py b/dbus/service.py
-index fd57054..0c8695a 100644
---- a/dbus/service.py
-+++ b/dbus/service.py
-@@ -32,7 +32,11 @@ import sys
- import logging
- import threading
- import traceback
--from collections import Sequence
-+try:
-+ from collections.abc import Sequence
-+except ImportError:
-+ # Python 2 (and 3.x < 3.3, but we don't support those)
-+ from collections import Sequence
-
- import _dbus_bindings
- from dbus import (
---
-2.26.2
-