diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-29 21:44:18 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-30 00:11:34 +0200 |
commit | f34703669276d66a0bc30006ad813ea5514b3784 (patch) | |
tree | 069fc6bded44d53cd75c78e4a60725e5a23c3769 /app-laptop/batti/files/batti-0.3.8-upower-capital.patch | |
parent | sys-fs/pysize: Remove last-rited package (diff) | |
download | gentoo-f34703669276d66a0bc30006ad813ea5514b3784.tar.gz gentoo-f34703669276d66a0bc30006ad813ea5514b3784.tar.bz2 gentoo-f34703669276d66a0bc30006ad813ea5514b3784.zip |
app-laptop/batti: Remove last-rited package
Closes: https://bugs.gentoo.org/708114
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-laptop/batti/files/batti-0.3.8-upower-capital.patch')
-rw-r--r-- | app-laptop/batti/files/batti-0.3.8-upower-capital.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app-laptop/batti/files/batti-0.3.8-upower-capital.patch b/app-laptop/batti/files/batti-0.3.8-upower-capital.patch deleted file mode 100644 index e7f62761661c..000000000000 --- a/app-laptop/batti/files/batti-0.3.8-upower-capital.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 1e0fe57a93ed3996bad295e20eeda81f6af483af Mon Sep 17 00:00:00 2001 -From: Christian Ruppert <idl0r@gentoo.org> -Date: Wed, 20 Jul 2016 20:14:32 +0200 -Subject: [PATCH] The type property (in recent UPower at least) needs to have a - capital T - "Type" - ---- - src/PowerBackend.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/PowerBackend.py b/src/PowerBackend.py -index e020b98..56bcb61 100644 ---- a/src/PowerBackend.py -+++ b/src/PowerBackend.py -@@ -165,7 +165,7 @@ def __init__(self): - self.__batteries = {} - for dev in devices: - (prop_iface, dev_iface) = self.__get_battery(dev) -- type = prop_iface.Get(self.device_interface, 'type') -+ type = prop_iface.Get(self.device_interface, 'Type') - if type == self.bat_type: - power_bat = UPowerBattery(prop_iface, dev_iface) - self.__batteries[dev] = power_bat -@@ -228,7 +228,7 @@ def set_right_popup_menu_action(self, action): - def __device_added(self, udi): - (prop_iface, dev_iface) = self.__get_battery(udi) - try: -- type = prop_iface.Get(self.device_interface, 'type') -+ type = prop_iface.Get(self.device_interface, 'Type') - if type == self.bat_type: - power_bat = UPowerBattery(prop_iface, dev_iface) - power_bat.set_left_popup_menu_action(self.__mc_action) |