summaryrefslogtreecommitdiff
path: root/sys-power/upower
diff options
context:
space:
mode:
Diffstat (limited to 'sys-power/upower')
-rw-r--r--sys-power/upower/Manifest1
-rw-r--r--sys-power/upower/files/upower-1.90.2-backport-pr207.patch43
2 files changed, 0 insertions, 44 deletions
diff --git a/sys-power/upower/Manifest b/sys-power/upower/Manifest
index e81298792953..1639242e37f2 100644
--- a/sys-power/upower/Manifest
+++ b/sys-power/upower/Manifest
@@ -1,4 +1,3 @@
-AUX upower-1.90.2-backport-pr207.patch 1549 BLAKE2B a682f9fe09c9df49ba2ff038fbbd649b1a9e1cba6ab148fdca30b9cc708f151bf6ae47655a90a49e67ace48ad847730923ae12c98869e93509fcc1900568b9f8 SHA512 2ecf1211e9185af0f8cd92c982f334dda9e4916f50f0a087802bf01fecc7e6926cda6562d581a328f9f2560d0d42a4f09837fdbc82524491cfd7cc721ac8dff8
DIST upower-v1.90.4.tar.bz2 139422 BLAKE2B a06be2d483773a2115f4cdd4f7c023589ebc937846fc360341cd57d1a225f4dc1b448f50438216c3ae679effa86d61b96f7c4b9d59f6b0f30e9dcbc047a5cac7 SHA512 2db8f2fea4086939c7ec236674ddd03ff043eeb1c7e46deb40b45aed5d31b6eb0e84fa44f189336b0a171f3e2f92f2f50e2f355b9366e0d686e570d0107e88da
EBUILD upower-1.90.4-r1.ebuild 2806 BLAKE2B f68bf6fce6c74fd70b2e3ed004894c09c7afff1c176877e2b6be1dfdc09d164b878ec1690c86461a2dc1856804e80f270f7166ab411eb8c1f2e54cba5dab42c6 SHA512 fe7708566885c3985d81472542a19d507b47d7ccfc37de2046fd166b06f482ee33e19e29563ff77252bec390552eb92d218f75107f1c318e9b82c97b640bd0a1
MISC metadata.xml 319 BLAKE2B deed435a52138ca25bc6db202a294303839a6be54e3c257f25e25b8050ae30992fd18054cf568bcfd33e14211523a328546cf9732fc10844437994fa79e3f63d SHA512 47a7e588aee976740610165259518b427b425dc9aaff3afd74d4abb34717dd4ca23c0d062347a1257e192a56ce16d7793d4d58738d0cfd178adcc55992136194
diff --git a/sys-power/upower/files/upower-1.90.2-backport-pr207.patch b/sys-power/upower/files/upower-1.90.2-backport-pr207.patch
deleted file mode 100644
index dd47e4c8926a..000000000000
--- a/sys-power/upower/files/upower-1.90.2-backport-pr207.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-https://bugs.gentoo.org/923794
-https://bugs.gentoo.org/927405
-https://gitlab.freedesktop.org/upower/upower/-/merge_requests/207
-https://bugs.debian.org/1059467
-https://github.com/martinpitt/python-dbusmock/pull/192
-
-From bd1e4698f480c6b94afa0536fc02e211ae5a87fb Mon Sep 17 00:00:00 2001
-From: Martin Pitt <martin@piware.de>
-Date: Thu, 28 Dec 2023 21:13:15 +0100
-Subject: [PATCH] linux: Adjust test_bluetooth_le_device for dbusmock 0.30.1
-
-dbusmock 0.30.1 changed the BlueZ template to set the default "Class"
-property to `MOCK_PHONE_CLASS` right away instead of in PairDevice() [1].
-
-test_bluetooth_le_device() relied on the previous implicit default of a
-"0" Class value. Set this explicitly to expect a "generic" device. This
-makes the test work with old and current dbusmock versions.
-
-https://bugs.debian.org/1059467
-
-[1] https://github.com/martinpitt/python-dbusmock/pull/192
----
- src/linux/integration-test.py | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/linux/integration-test.py b/src/linux/integration-test.py
-index e6861253..4c071e85 100755
---- a/src/linux/integration-test.py
-+++ b/src/linux/integration-test.py
-@@ -2162,7 +2162,9 @@ class Tests(dbusmock.DBusTestCase):
-
- alias = 'Satechi M1 Mouse'
- battery_level = 99
-- device_properties = None
-+ device_properties = {
-+ 'Class': dbus.UInt32(0, variant_level=1)
-+ }
-
- devs = self._add_bluez_battery_device(alias, device_properties, battery_level)
- self.assertEqual(len(devs), 1)
---
-GitLab
-