Hello community,

here is the log from the commit of package docky for openSUSE:Factory checked 
in at 2014-12-25 23:20:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/docky (Old)
 and      /work/SRC/openSUSE:Factory/.docky.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "docky"

Changes:
--------
--- /work/SRC/openSUSE:Factory/docky/docky.changes      2013-05-06 
09:51:20.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.docky.new/docky.changes 2014-12-25 
23:20:09.000000000 +0100
@@ -1,0 +2,6 @@
+Tue Dec 23 14:57:34 UTC 2014 - [email protected]
+
+- Add docky-mono-3.10.0.patch: Workaround build issues with Mono
+  3.10.0.
+
+-------------------------------------------------------------------

New:
----
  docky-mono-3.10.0.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ docky.spec ++++++
--- /var/tmp/diff_new_pack.Y6ep34/_old  2014-12-25 23:20:10.000000000 +0100
+++ /var/tmp/diff_new_pack.Y6ep34/_new  2014-12-25 23:20:10.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package docky
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,8 @@
 Group:          Productivity/Other
 Url:            https://launchpad.net/docky
 Source:         
http://launchpad.net/docky/2.2/%{version}/+download/%{name}-%{version}.tar.xz
+# PATCH-HACK-OPENSUSE docky-mono-3.10.0.patch [email protected] -- Work 
around build issues with mono 3.10.0; no idea why it would not like the 
original code
+Patch0:         docky-mono-3.10.0.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  mono
@@ -68,6 +70,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure --disable-schemas-install

++++++ docky-mono-3.10.0.patch ++++++
Index: docky-2.2.0/StandardPlugins/WorkspaceSwitcher/src/Desk.cs
===================================================================
--- docky-2.2.0.orig/StandardPlugins/WorkspaceSwitcher/src/Desk.cs
+++ docky-2.2.0/StandardPlugins/WorkspaceSwitcher/src/Desk.cs
@@ -130,7 +130,13 @@ namespace WorkspaceSwitcher
                                        grid [x, y] = desk;
                                }
                                if (gridsize.Y - 1 > y) {
-                                       desk = (grid [0, y] != null ? grid [0, 
y].GetNeighbor (Wnck.MotionDirection.Down) : null);
+                                       if (grid [0, y] != null ) {
+                                               desk = grid [0, y].GetNeighbor 
(Wnck.MotionDirection.Down);
+                                       }
+                                       else {
+                                               desk = null;
+                                       }
+                                       // desk = grid [0, y] != null ? grid 
[0, y].GetNeighbor (Wnck.MotionDirection.Down) : null;
                                        grid [0, y+1] = desk;
                                }
                        }
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to