Hello community,

here is the log from the commit of package leechcraft for openSUSE:Factory 
checked in at 2014-08-14 14:58:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/leechcraft (Old)
 and      /work/SRC/openSUSE:Factory/.leechcraft.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "leechcraft"

Changes:
--------
--- /work/SRC/openSUSE:Factory/leechcraft/leechcraft-doc.changes        
2014-07-10 14:55:56.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.leechcraft.new/leechcraft-doc.changes   
2014-08-14 14:58:14.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jul 30 14:38:58 UTC 2014 - [email protected]
+
+- 0.6.70 release.
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/leechcraft/leechcraft.changes    2014-07-10 
14:55:56.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.leechcraft.new/leechcraft.changes       
2014-08-14 14:58:14.000000000 +0200
@@ -1,0 +2,15 @@
+Wed Jul 30 14:38:58 UTC 2014 - [email protected]
+
+- 0.6.70 release:
+  * Poshuku browser IDN support was enabled;
+  * utilities library was split into different so files
+    and subpackages.
+- New plugins were enabled:
+  * Azoth MuCommands provides conference-oriented commands;
+  * LMP FrAdj is a 10-band equalizer;
+  * Poshuku DCAC provides DC/AC for browser;
+  * Poshuku QRd provides QR codes for browser.
+- leechcraft-azoth-gcc47.patch was updated.
+- Added leechcraft-gcc47.patch vs. names constructor error.
+
+-------------------------------------------------------------------

Old:
----
  leechcraft-0.6.65-380-gffa0f72.tar.xz

New:
----
  leechcraft-0.6.70.tar.xz
  leechcraft-gcc47.patch

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

Other differences:
------------------
++++++ leechcraft-doc.spec ++++++
--- /var/tmp/diff_new_pack.cElTVt/_old  2014-08-14 14:58:15.000000000 +0200
+++ /var/tmp/diff_new_pack.cElTVt/_new  2014-08-14 14:58:15.000000000 +0200
@@ -17,15 +17,13 @@
 
 
 Name:           leechcraft-doc
-Version:        0.6.65+git.380.gffa0f72
+Version:        0.6.70
 Release:        0
 Summary:        Modular Internet Client Documentation
 License:        BSL-1.0
 Group:          Development/Libraries/Other
 Url:            http://leechcraft.org
-Source0:        
http://dist.leechcraft.org/LeechCraft/0.6.70/leechcraft-0.6.65-380-gffa0f72.tar.xz
-# 
http://dist.leechcraft.org/LeechCraft/%%{version}/leechcraft-%%{version}.tar.xz
-# TODO: for stable releases.
+Source0:        
http://dist.leechcraft.org/LeechCraft/%{version}/leechcraft-%{version}.tar.xz
 
 BuildRequires:  doxygen >= 1.8.3.1
 BuildRequires:  fdupes
@@ -69,8 +67,7 @@
 is also available online at http://doc.leechcraft.org/monocle/
 
 %prep
-# TODO: just leechcraft-%%{version} for stable releases.
-%setup -q -n leechcraft-0.6.65-380-gffa0f72
+%setup -q -n leechcraft-%{version}
 
 %build
 cd doc/doxygen/core

++++++ leechcraft.spec ++++++
++++ 802 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/leechcraft/leechcraft.spec
++++ and /work/SRC/openSUSE:Factory/.leechcraft.new/leechcraft.spec


++++++ leechcraft-0.6.65-380-gffa0f72.tar.xz -> leechcraft-0.6.70.tar.xz ++++++
++++ 100020 lines of diff (skipped)

++++++ leechcraft-azoth-gcc47.patch ++++++
--- /var/tmp/diff_new_pack.cElTVt/_old  2014-08-14 14:58:19.000000000 +0200
+++ /var/tmp/diff_new_pack.cElTVt/_new  2014-08-14 14:58:19.000000000 +0200
@@ -11,3 +11,16 @@
                                {
                                        imjw->Join (accObj);
                                        w->deleteLater ();
+diff --git a/src/plugins/azoth/plugins/xoox/clientconnection.cpp 
b/src/plugins/azoth/plugins/xoox/clientconnection.cpp
+index cae3b05..e0d7cce 100644
+--- a/src/plugins/azoth/plugins/xoox/clientconnection.cpp
++++ b/src/plugins/azoth/plugins/xoox/clientconnection.cpp
+@@ -998,7 +998,7 @@ namespace Xoox
+                       {
+                               new Util::DelayedExecutor
+                               {
+-                                      [] () -> void
++                                      [this] () -> void
+                                       {
+                                               const auto& e = 
Util::MakeNotification ("Azoth",
+                                                               tr ("Using the 
juick.com service is discouraged. Please consider "

++++++ leechcraft-gcc47.patch ++++++
diff --git a/src/util/sll/slotclosure.h b/src/util/sll/slotclosure.h
index 2c9bbfc..a85a8ce 100644
--- a/src/util/sll/slotclosure.h
+++ b/src/util/sll/slotclosure.h
@@ -63,7 +63,26 @@ namespace Util
                                          , public 
FireDestrPolicy<SlotClosureBase>
        {
        public:
-               using SlotClosureBase::SlotClosureBase;
+               SlotClosure (const std::function<void ()>& func, QObject 
*parent)
+               : SlotClosureBase { func, parent }
+               {
+               }
+
+               SlotClosure (const std::function<void ()>& func,
+                               QObject *sender,
+                               const char *signal,
+                               QObject *parent)
+               : SlotClosureBase { func, sender, signal, parent }
+               {
+               }
+
+               SlotClosure (const std::function<void ()>& func,
+                               QObject *sender,
+                               const std::initializer_list<const char*>& 
signalsList,
+                               QObject *parent)
+               : SlotClosureBase { func, sender, signalsList, parent }
+               {
+               }
        public:
                void run () override
                {
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to