Hello community,

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

Package is "kactivities4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities4/kactivities4.changes        
2014-05-22 06:49:07.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kactivities4.new/kactivities4.changes   
2014-06-19 13:15:06.000000000 +0200
@@ -1,0 +2,7 @@
+Sun Jun  8 18:27:53 UTC 2014 - [email protected]
+
+- Update to 4.13.2
+   * KDE 4.13  release
+   * See http://www.kde.org/announcements/announce-4.13.2.php
+
+-------------------------------------------------------------------

Old:
----
  kactivities-4.13.1.tar.xz

New:
----
  kactivities-4.13.2.tar.xz

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

Other differences:
------------------
++++++ kactivities4.spec ++++++
--- /var/tmp/diff_new_pack.uVXSOH/_old  2014-06-19 13:15:07.000000000 +0200
+++ /var/tmp/diff_new_pack.uVXSOH/_new  2014-06-19 13:15:07.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           kactivities4
-Version:        4.13.1
+Version:        4.13.2
 Release:        0
 Summary:        KDE Plasma Activities support
 License:        GPL-2.0+ and LGPL-2.1+

++++++ kactivities-4.13.1.tar.xz -> kactivities-4.13.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-4.13.1/src/CMakeLists.txt 
new/kactivities-4.13.2/src/CMakeLists.txt
--- old/kactivities-4.13.1/src/CMakeLists.txt   2014-04-04 19:38:42.000000000 
+0200
+++ new/kactivities-4.13.2/src/CMakeLists.txt   2014-06-01 04:30:01.000000000 
+0200
@@ -53,45 +53,49 @@
 
 # main part
 
-string (COMPARE EQUAL "${CXX_FEATURES_UNSUPPORTED}" "" CXX_COMPILER_IS_MODERN)
+option (KACTIVITIES_LIBRARY_ONLY "If true, compiles only the KActivities 
library, without the service and other modules." OFF)
 
-if (NOT HAVE_CXX11_AUTO OR NOT HAVE_CXX11_LAMBDA OR NOT HAVE_CXX11_UNIQUE_PTR 
OR NOT HAVE_CXX11_VARIADIC_TEMPLATES OR NOT HAVE_CXX11_INITIALIZER_LISTS)
+if (NOT KACTIVITIES_LIBRARY_ONLY)
+       string (COMPARE EQUAL "${CXX_FEATURES_UNSUPPORTED}" "" 
CXX_COMPILER_IS_MODERN)
 
-    macro_log_feature (FALSE
-        "C++11 enabled compiler"
-        "GCC >=4.5 or Clang 3.1"
-        "http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
-        "REQUIRED: You need a more modern compiler in order to build the 
Activity Manager daemon"
-        )
-
-else ()
-
-    if (CXX_COMPILER_IS_MODERN)
-        macro_log_feature (
-            CXX_COMPILER_IS_MODERN
-            "C++11 enabled compiler"
-            "Your compiler is state-of-the-art"
-            "http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
-            "Your compiler doesn't support the following features: 
${CXX_FEATURES_UNSUPPORTED} but
-             the list of the supported ones is sufficient for the build: 
${CXX_FEATURES_SUPPORTED}"
-            )
-    else ()
-        macro_log_feature (
-            CXX_COMPILER_IS_MODERN
-            "C++11 enabled compiler"
-            "Having to use the latest versions of GCC and Clang would be 
awesome"
-            "http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
-            "Your compiler doesn't support the following features: 
${CXX_FEATURES_UNSUPPORTED} but
-             the list of the supported ones is sufficient for the build: 
${CXX_FEATURES_SUPPORTED}"
-            )
-    endif ()
+       if (NOT HAVE_CXX11_AUTO OR NOT HAVE_CXX11_LAMBDA OR NOT 
HAVE_CXX11_UNIQUE_PTR OR NOT HAVE_CXX11_VARIADIC_TEMPLATES OR NOT 
HAVE_CXX11_INITIALIZER_LISTS)
 
-    add_subdirectory (service)
+                       macro_log_feature (FALSE
+                                       "C++11 enabled compiler"
+                                       "GCC >=4.5 or Clang 3.1"
+                                       
"http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
+                                       "REQUIRED: You need a more modern 
compiler in order to build the Activity Manager daemon"
+                                       )
+
+       else ()
+
+                       if (CXX_COMPILER_IS_MODERN)
+                                       macro_log_feature (
+                                                       CXX_COMPILER_IS_MODERN
+                                                       "C++11 enabled compiler"
+                                                       "Your compiler is 
state-of-the-art"
+                                                       
"http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
+                                                       "Your compiler doesn't 
support the following features: ${CXX_FEATURES_UNSUPPORTED} but
+                                                       the list of the 
supported ones is sufficient for the build: ${CXX_FEATURES_SUPPORTED}"
+                                                       )
+                       else ()
+                                       macro_log_feature (
+                                                       CXX_COMPILER_IS_MODERN
+                                                       "C++11 enabled compiler"
+                                                       "Having to use the 
latest versions of GCC and Clang would be awesome"
+                                                       
"http://www.open-std.org/jtc1/sc22/wg21/"; FALSE ""
+                                                       "Your compiler doesn't 
support the following features: ${CXX_FEATURES_UNSUPPORTED} but
+                                                       the list of the 
supported ones is sufficient for the build: ${CXX_FEATURES_SUPPORTED}"
+                                                       )
+                       endif ()
 
-    # No point in having workspace addons without the service
-    add_subdirectory (workspace)
+                       add_subdirectory (service)
 
-endif ()
+                       # No point in having workspace addons without the 
service
+                       add_subdirectory (workspace)
+
+       endif ()
+endif()
 
 add_subdirectory (ontologies)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-4.13.1/src/lib/core/utils_p.h 
new/kactivities-4.13.2/src/lib/core/utils_p.h
--- old/kactivities-4.13.1/src/lib/core/utils_p.h       2014-04-04 
19:38:42.000000000 +0200
+++ new/kactivities-4.13.2/src/lib/core/utils_p.h       2014-06-01 
04:30:01.000000000 +0200
@@ -30,7 +30,6 @@
 // Creates an async call to retrieve a value from the dbus service
 // and initializes the call watcher
 #define KAMD_RETRIEVE_REMOTE_VALUE(Variable, MethodToCall, Target)             
         \
-    qDebug() << "Locking mutex for" << #Variable;                              
         \
     Variable##Mutex.lock();                                                    
         \
     const QDBusPendingCall & Variable##Call = 
Manager::activities()->MethodToCall;      \
     Variable##CallWatcher = new QDBusPendingCallWatcher(Variable##Call, 
Target);        \
@@ -80,7 +79,6 @@
         Variable##CallWatcher = 0;                                             
  \
         Variable##Mutex.unlock();                                              
  \
         call->deleteLater();                                                   
  \
-        qDebug() << "Unlocked mutex";                                          
  \
     }
 
 // Implements a value getter
@@ -89,7 +87,6 @@
     {                                                                 \
         if (!Manager::isServicePresent()) return Default;             \
         waitForCallFinished(d->Variable##CallWatcher, &d->Variable##Mutex); \
-        qDebug() << "Returning" << #Variable << d->Variable;          \
         return d->Variable;                                           \
     }
 
@@ -98,7 +95,6 @@
     if (watcher) {
         watcher->waitForFinished();
 
-        qDebug() << "Trying to lock mutex";
         mutex->lock();
         mutex->unlock();
     }

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to