[Pkg-xfce-commits] r8597 - in /desktop/branches/experimental/xfce4-power-manager/debian: changelog patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch patches/series

Yves-Alexis Perez corsac at moszumanska.debian.org
Wed Sep 17 21:34:50 UTC 2014


Author: corsac
Date: Wed Sep 17 21:34:50 2014
New Revision: 8597

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8597
Log:
* debian/patches:
  - 0001-Fix-handle-lid-switch-with-loginD-Bug-11160 added, fix incomplete
    patch reverting the logind xfconf hidden variables.

Added:
    desktop/branches/experimental/xfce4-power-manager/debian/patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch
    desktop/branches/experimental/xfce4-power-manager/debian/patches/series
Modified:
    desktop/branches/experimental/xfce4-power-manager/debian/changelog

Modified: desktop/branches/experimental/xfce4-power-manager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/desktop/branches/experimental/xfce4-power-manager/debian/changelog?rev=8597&op=diff
==============================================================================
--- desktop/branches/experimental/xfce4-power-manager/debian/changelog	(original)
+++ desktop/branches/experimental/xfce4-power-manager/debian/changelog	Wed Sep 17 21:34:50 2014
@@ -1,3 +1,11 @@
+xfce4-power-manager (1.4.0-2) UNRELEASED; urgency=medium
+
+  * debian/patches:
+    - 0001-Fix-handle-lid-switch-with-loginD-Bug-11160 added, fix incomplete
+      patch reverting the logind xfconf hidden variables.
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Wed, 17 Sep 2014 21:51:57 +0200
+
 xfce4-power-manager (1.4.0-1) experimental; urgency=medium
 
   * New upstream stable release.

Added: desktop/branches/experimental/xfce4-power-manager/debian/patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/desktop/branches/experimental/xfce4-power-manager/debian/patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch?rev=8597&op=file
==============================================================================
--- desktop/branches/experimental/xfce4-power-manager/debian/patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch	(added)
+++ desktop/branches/experimental/xfce4-power-manager/debian/patches/0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch	Wed Sep 17 21:34:50 2014
@@ -0,0 +1,30 @@
+From f62e82256cb2a45b4f044b7d603017952f7dd63e Mon Sep 17 00:00:00 2001
+From: Eric Koegel <eric.koegel at gmail.com>
+Date: Mon, 15 Sep 2014 14:35:00 +0300
+Subject: [PATCH] Fix handle lid switch with loginD (Bug 11160)
+
+The xfconf settings logic for logind interactions were inverted
+in commit: 03193df6cad651841e8d9960335b4a3bf13afdad
+However the handle lid switch in the xfpm_manager_lid_changed_cb
+also needs to be inverted. This patch fixes it. Patch submitted
+by Simon P.
+---
+ src/xfpm-manager.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/xfpm-manager.c b/src/xfpm-manager.c
+index d6c533c..9549b66 100644
+--- a/src/xfpm-manager.c
++++ b/src/xfpm-manager.c
+@@ -335,7 +335,7 @@ xfpm_manager_lid_changed_cb (XfpmPower *power, gboolean lid_is_closed, XfpmManag
+               LOGIND_HANDLE_LID_SWITCH, &logind_handle_lid_switch,
+               NULL);
+ 
+-        if (!logind_handle_lid_switch)
++        if (logind_handle_lid_switch)
+             return;
+     }
+ 
+-- 
+2.1.0
+

Added: desktop/branches/experimental/xfce4-power-manager/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/desktop/branches/experimental/xfce4-power-manager/debian/patches/series?rev=8597&op=file
==============================================================================
--- desktop/branches/experimental/xfce4-power-manager/debian/patches/series	(added)
+++ desktop/branches/experimental/xfce4-power-manager/debian/patches/series	Wed Sep 17 21:34:50 2014
@@ -0,0 +1 @@
+0001-Fix-handle-lid-switch-with-loginD-Bug-11160.patch




More information about the Pkg-xfce-commits mailing list