Hello community,

here is the log from the commit of package qutim for openSUSE:Factory checked 
in at 2016-06-26 23:52:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qutim (Old)
 and      /work/SRC/openSUSE:Factory/.qutim.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qutim"

Changes:
--------
--- /work/SRC/openSUSE:Factory/qutim/qutim.changes      2016-03-17 
16:47:27.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.qutim.new/qutim.changes 2016-06-26 
23:52:22.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Jun 24 03:10:10 UTC 2016 - [email protected]
+
+- add patch qutim-0.3.3-c11.patch
+  * fix boo#985383
+  * a space between string concatenation is mandatory
+
+-------------------------------------------------------------------

New:
----
  qutim-0.3.3-c11.patch

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

Other differences:
------------------
++++++ qutim.spec ++++++
--- /var/tmp/diff_new_pack.1QSb4C/_old  2016-06-26 23:52:23.000000000 +0200
+++ /var/tmp/diff_new_pack.1QSb4C/_new  2016-06-26 23:52:23.000000000 +0200
@@ -24,6 +24,8 @@
 Group:          Productivity/Networking/Instant Messenger
 Url:            http://qutim.org/
 Source:         http://qutim.org/dwnl/81/%{name}-%{version}.tar.xz
+#PATCH-FIX-UPSTREAM a space between string concatenation is mandatory
+Patch:         qutim-0.3.3-c11.patch
 BuildRequires:  cmake >= 2.8
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -94,6 +96,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 LIBSUFFIX=$(echo "%{_lib}"|sed 's/^lib//')

++++++ qutim-0.3.3-c11.patch ++++++
Index: b/protocols/irc/src/irccommandalias.cpp
===================================================================
--- a/protocols/irc/src/irccommandalias.cpp
+++ b/protocols/irc/src/irccommandalias.cpp
@@ -148,7 +148,7 @@ QString IrcPingAlias::generate(IrcComman
 }
 
 #define ADD_BAN_CMD(MODE, TYPE, NAME, TITLE, ADDITIONALCMD) \
-       cmd = new IrcCommandAlias(NAME, "MODE %n +b "MODE ADDITIONALCMD, 
IrcCommandAlias::Participant); \
+       cmd = new IrcCommandAlias(NAME, "MODE %n +b " MODE ADDITIONALCMD, 
IrcCommandAlias::Participant); \
        gen = new IrcActionGenerator(QIcon(), TITLE, cmd); \
        gen->setType(TYPE); \
        MenuController::addAction<IrcChannelParticipant>(gen, kickBanGroup);
@@ -172,7 +172,7 @@ QString IrcPingAlias::generate(IrcComman
        REGISTER_CTCP_CMD(TITLE)
 
 #define ADD_MODE(MODE, PRIORITY, NAME, TITLE)\
-       cmd = new IrcCommandAlias(NAME, "MODE %n "MODE" %o", 
IrcCommandAlias::Participant);\
+       cmd = new IrcCommandAlias(NAME, "MODE %n " MODE " %o", 
IrcCommandAlias::Participant);\
        gen = new IrcActionGenerator(QIcon(), TITLE, cmd);\
        gen->setPriority(PRIORITY);\
        MenuController::addAction<IrcChannelParticipant>(gen, modesGroup);\

Reply via email to