[arch-commits] Commit in kdelibs/kde-unstable (3 files)

Andrea Scarpino andrea at archlinux.org
Tue Jun 12 05:41:31 UTC 2012


    Date: Tuesday, June 12, 2012 @ 01:41:31
  Author: andrea
Revision: 161505

KDE 4.9beta2

Modified:
  kdelibs/kde-unstable/PKGBUILD
Deleted:
  kdelibs/kde-unstable/fix-battery.patch
  kdelibs/kde-unstable/fix-mount.patch

-------------------+
 PKGBUILD          |   17 +++++------------
 fix-battery.patch |   39 ---------------------------------------
 fix-mount.patch   |   44 --------------------------------------------
 3 files changed, 5 insertions(+), 95 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2012-06-12 05:34:19 UTC (rev 161504)
+++ PKGBUILD	2012-06-12 05:41:31 UTC (rev 161505)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz <pierre at archlinux.de>
 
 pkgname=kdelibs
-pkgver=4.8.80
-pkgrel=5
+pkgver=4.8.90
+pkgrel=1
 pkgdesc="KDE Core Libraries"
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kdelibs'
@@ -18,15 +18,11 @@
 install=${pkgname}.install
 source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"
         'kde-applications-menu.patch' 'archlinux-menu.patch'
-        'use-pythondontwritebytecode.patch'
-        'fix-battery.patch'
-        'fix-mount.patch')
-sha1sums=('e0d4cef3a09c85e4309e48d7ab62ba9b8eccc575'
+        'use-pythondontwritebytecode.patch')
+sha1sums=('926d0c0e6a6134d7292ae4d71e74541044d75a2d'
           '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
           '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-          'bbacbbe2194f3961cd7557d98a9ddef158ca11aa'
-          '49e3d3e2b9b6e7b3abf6cdf0c37f30fbe7095797'
-          '7b74500f1e51d3f1ab8037d92b60285d6ab7d964')
+          'bbacbbe2194f3961cd7557d98a9ddef158ca11aa')
 
 build() {
        cd "${srcdir}"/${pkgname}-${pkgver}
@@ -39,9 +35,6 @@
        # Set PYTHONDONTWRITEBYTECODE (KDEBUG#276151)
        patch -p0 -i "${srcdir}"/use-pythondontwritebytecode.patch
        
-       patch -p1 -i "${srcdir}"/fix-battery.patch
-       patch -p1 -i "${srcdir}"/fix-mount.patch
-
        cd "${srcdir}"
        mkdir build
        cd build

Deleted: fix-battery.patch
===================================================================
--- fix-battery.patch	2012-06-12 05:34:19 UTC (rev 161504)
+++ fix-battery.patch	2012-06-12 05:41:31 UTC (rev 161505)
@@ -1,39 +0,0 @@
-commit 7f8c750541790de5a380409466cf07cfe19c3651
-Author: Lukas Tinkl <lukas at kde.org>
-Date:   Wed Jun 6 15:47:39 2012 +0200
-
-    Revert "don't consider external batteries (mice, keyboard, BT) as primary"
-    
-    This reverts commit d1661d1638851fd950c5926fb2040ea2abe2a8f0.
-    
-    This causes more trouble than expected, newer kernels/upower contain a bug that (in my case
-    and many others) marks ALL batteries as non-powersupply.
-    
-    BUG:301033
-    CCBUG:300787
-
-diff --git a/solid/solid/backends/upower/upowerbattery.cpp b/solid/solid/backends/upower/upowerbattery.cpp
-index 9c5f675..ab555d4 100644
---- a/solid/solid/backends/upower/upowerbattery.cpp
-+++ b/solid/solid/backends/upower/upowerbattery.cpp
-@@ -44,18 +44,15 @@ Solid::Battery::BatteryType Battery::type() const
- {
-     Solid::Battery::BatteryType result = Solid::Battery::UnknownBattery;
-     const uint t = m_device->prop("Type").toUInt();
--    bool powerSupply = m_device->prop("PowerSupply").toBool();
-     switch (t)
-     {
-         case 1: // TODO "Line Power"
-             break;
-         case 2:
--            if (powerSupply)
--                result = Solid::Battery::PrimaryBattery;
-+            result = Solid::Battery::PrimaryBattery;
-             break;
-         case 3:
--            if (powerSupply)
--                result = Solid::Battery::UpsBattery;
-+            result = Solid::Battery::UpsBattery;
-             break;
-         case 4:
-             result = Solid::Battery::MonitorBattery;

Deleted: fix-mount.patch
===================================================================
--- fix-mount.patch	2012-06-12 05:34:19 UTC (rev 161504)
+++ fix-mount.patch	2012-06-12 05:41:31 UTC (rev 161505)
@@ -1,44 +0,0 @@
-commit 19213a6c34e1b47a100815ccbfee8b5c70c3c12a
-Author: Alex Fiestas <afiestas at kde.org>
-Date:   Tue Jun 5 18:12:28 2012 +0200
-
-    Emit deviceRemoved/Added with the right deviceList set
-    
-    The problem is quite straightforward, deviceAdded is being emitted when
-    the m_deviceList has the OLD list, so the new device is still NOT in it.
-    If the user of the library instances a device Solid::Device(UDI) in the
-    slot after that signal, the device will be null because it will not be
-    found in m_deviceList.
-    
-    REVIEW: 105132
-
-diff --git a/solid/solid/backends/fstab/fstabmanager.cpp b/solid/solid/backends/fstab/fstabmanager.cpp
-index 608159f..6b29fa4 100644
---- a/solid/solid/backends/fstab/fstabmanager.cpp
-+++ b/solid/solid/backends/fstab/fstabmanager.cpp
-@@ -116,17 +116,19 @@ void FstabManager::_k_updateDeviceList()
-     QSet<QString> newlist = deviceList.toSet();
-     QSet<QString> oldlist = m_deviceList.toSet();
- 
--    foreach(const QString &device, newlist) {
--        if ( !oldlist.contains(device) )
--            emit deviceAdded(udiPrefix() + "/" + device);
--    }
--
-     foreach(const QString &device, oldlist) {
--        if ( !newlist.contains(device) )
-+        if ( !newlist.contains(device) ) {
-             emit deviceRemoved(udiPrefix() + "/" + device);
-+        }
-     }
- 
-     m_deviceList = deviceList;
-+
-+    foreach(const QString &device, newlist) {
-+        if ( !oldlist.contains(device) ) {
-+            emit deviceAdded(udiPrefix() + "/" + device);
-+        }
-+    }
- }
- 
- void FstabManager::onMtabChanged()




More information about the arch-commits mailing list