Hello community, here is the log from the commit of package clusterssh for openSUSE:Factory checked in at 2016-01-28 17:24:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/clusterssh (Old) and /work/SRC/openSUSE:Factory/.clusterssh.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "clusterssh" Changes: -------- --- /work/SRC/openSUSE:Factory/clusterssh/clusterssh.changes 2013-07-09 20:48:18.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.clusterssh.new/clusterssh.changes 2016-01-28 17:25:49.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Jan 27 13:33:48 UTC 2016 - [email protected] + +- Added patch remove-time-key.patch, which resolves the issue where + windows become unmoveable after executing cssh in KDE5. + See for bnc#956316 and https://github.com/duncs/clusterssh/issues/46 + +------------------------------------------------------------------- New: ---- remove-time-key.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ clusterssh.spec ++++++ --- /var/tmp/diff_new_pack.lHr94r/_old 2016-01-28 17:25:50.000000000 +0100 +++ /var/tmp/diff_new_pack.lHr94r/_new 2016-01-28 17:25:50.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package clusterssh # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,6 +29,7 @@ #Git-Clone: git://clusterssh.git.sf.net/gitroot/clusterssh/clusterssh Source: http://downloads.sf.net/clusterssh/App-ClusterSSH-4.02_01.tar.gz Source2: %name-rpmlintrc +Patch1: remove-time-key.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch BuildRequires: fdupes @@ -71,6 +72,7 @@ %prep %setup -qn %modname-%dullver +%patch -P 1 -p1 %build perl Makefile.PL; ++++++ remove-time-key.patch ++++++ From: Brandon Perkins <[email protected]> Date: Fri, 6 Nov 2015 16:19:03 -0500 Subject: [PATCH] Remove 'time' key from the event hash. References: https://github.com/duncs/clusterssh/issues/46 References: bugzilla.opensuse.org/956316 'time' key and value from the event hash results in windows that cannot be manipulated under KDE5. --- lib/App/ClusterSSH.pm | 2 -- 1 file changed, 2 deletions(-) Index: App-ClusterSSH-4.02_01/lib/App/ClusterSSH.pm =================================================================== --- App-ClusterSSH-4.02_01.orig/lib/App/ClusterSSH.pm +++ App-ClusterSSH-4.02_01/lib/App/ClusterSSH.pm @@ -579,7 +579,6 @@ sub send_text($@) { 'name' => $event, 'detail' => $code, 'state' => $state, - 'time' => time(), 'event' => $servers{$svr}{wid}, 'root' => $xdisplay->root(), 'same_screen' => 1, @@ -1647,7 +1646,6 @@ sub key_event { 'name' => $event, 'detail' => $keycode, 'state' => $state, - 'time' => time(), 'event' => $servers{$_}{wid}, 'root' => $xdisplay->root(), 'same_screen' => 1,
