Hello community,

here is the log from the commit of package telepathy-qt4 for openSUSE:Factory 
checked in at 2015-11-24 22:29:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/telepathy-qt4 (Old)
 and      /work/SRC/openSUSE:Factory/.telepathy-qt4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "telepathy-qt4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/telepathy-qt4/telepathy-qt4.changes      
2014-09-12 15:25:00.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-qt4.new/telepathy-qt4.changes 
2015-11-24 22:29:39.000000000 +0100
@@ -1,0 +2,34 @@
+Sat Nov 21 08:59:24 UTC 2015 - m...@suse.com
+
+- Update to 0.9.6.1
+  Fixes:
+    * Fixed illegal C++ statement in one of service interfaces.
+- Add fix-farstream-compilation-with-gstreamer-1.5.1.patch
+  * Fix compilation with GStreamer >= 1.5.1, only apply to openSUSE
+    version >= 13.1
+- Add fix-compilation-with-old-cmake.patch
+  * Fix build with old cmake in earlier openSUSE version
+
+-------------------------------------------------------------------
+Sat Nov 21 08:55:08 UTC 2015 - m...@suse.com
+
+- Update to 0.9.6
+  Enhancements:
+    * Added TP_QT_VERSION and TP_QT_VERSION_CHECK macros
+      - Can be used like #if (TP_QT_VERSION == TP_QT_VERSION_CHECK(0, 9, 6))
+      - Absence of the TP_QT_VERSION macros indicates previous versions
+        (might be useful for service bindings compatibility)
+    * Added client side support for conference calls
+    * Implemented numerous interfaces for service bindings
+
+  API changes:
+    * Refactored service-side bindings API
+      - BaseConnection createChannel() and ensureChannel() methods
+        now accept request map instead of several extracted values.
+      - BaseChannel::create() arguments reordered in natural way.
+ 
+  Fixes:
+    * Fixed CallContent interfaces exposing (required for DTMF)
+    * fd.0 #86312: Fixed condition in adaptor methods generation
+
+-------------------------------------------------------------------

Old:
----
  telepathy-qt-0.9.5.tar.gz

New:
----
  fix-compilation-with-old-cmake.patch
  fix-farstream-compilation-with-gstreamer-1.5.1.patch
  telepathy-qt-0.9.6.1.tar.gz

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

Other differences:
------------------
++++++ telepathy-qt4.spec ++++++
--- /var/tmp/diff_new_pack.wmFepe/_old  2015-11-24 22:29:40.000000000 +0100
+++ /var/tmp/diff_new_pack.wmFepe/_new  2015-11-24 22:29:40.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package telepathy-qt4
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -26,7 +26,7 @@
 %endif
 
 Name:           telepathy-qt4
-Version:        0.9.5
+Version:        0.9.6.1
 Release:        0
 Summary:        Qt4 bindings for the Telepathy Library
 License:        LGPL-2.1+
@@ -39,6 +39,10 @@
 Patch1:         search-for-farstream0.2.diff
 # PATCH-FIX-UPSTREAM search-for-telepathy-farstream-0.4.diff -- searches for 
telepathy-farstream-0.4
 Patch2:         search-for-telepathy-farstream-0.4.diff
+# PATCH-FIX-UPSTREAM fix-farstream-compilation-with-gstreamer-1.5.1.patch 
m...@suse.com
+Patch3:         fix-farstream-compilation-with-gstreamer-1.5.1.patch
+# PATCH-FIX-OPENSUSE fix-compilation-with-old-cmake.patch m...@suse.com -- 
somehow old cmake do not like relative path
+Patch4:         fix-compilation-with-old-cmake.patch
 BuildRequires:  cmake
 BuildRequires:  dbus-1-python
 BuildRequires:  doxygen
@@ -113,6 +117,9 @@
 %patch0 -Rp1
 %patch1 -p1
 %patch2 -p1
+%patch4 -p1
+%else
+%patch3 -p1
 %endif
 
 %build

++++++ fix-compilation-with-old-cmake.patch ++++++
Index: b/TelepathyQt/CMakeLists.txt
===================================================================
--- a/TelepathyQt/CMakeLists.txt
+++ b/TelepathyQt/CMakeLists.txt
@@ -775,7 +775,6 @@ target_link_libraries(telepathy-qt${QT_V
     ${QT_QTNETWORK_LIBRARY}
     ${QT_QTXML_LIBRARY}
     ${TP_QT_LIBRARY_LINKER_FLAGS})
-target_include_directories(telepathy-qt${QT_VERSION_MAJOR} PUBLIC 
"$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/telepathy-qt${QT_VERSION_MAJOR}/>")
 
 # Link - Library used by tests to test some unexported functionality
 target_link_libraries(telepathy-qt-test-backdoors
++++++ fix-farstream-compilation-with-gstreamer-1.5.1.patch ++++++
>From ec4a3d62b68a57254515f01fc5ea3325ffb1dbfb Mon Sep 17 00:00:00 2001
From: Niels Ole Salscheider <niels_...@salscheider-online.de>
Date: Tue, 29 Sep 2015 20:52:15 +0200
Subject: [PATCH] Farstream: gst/gstconfig.h can be in LIBDIR, search for it
 explicitly

Since GStreamer-1.5.1 config header file moved to LIBDIR.

Reviewed-by: Alexandr Akulich <akulichalexan...@gmail.com>
---
 TelepathyQt/Farstream/CMakeLists.txt |  2 +-
 cmake/modules/FindGStreamer.cmake    | 25 ++++++++++++++++++++-----
 2 files changed, 21 insertions(+), 6 deletions(-)

diff --git a/TelepathyQt/Farstream/CMakeLists.txt 
b/TelepathyQt/Farstream/CMakeLists.txt
index 250bfdb..dd71430 100644
--- a/TelepathyQt/Farstream/CMakeLists.txt
+++ b/TelepathyQt/Farstream/CMakeLists.txt
@@ -2,7 +2,7 @@ if(FARSTREAM_COMPONENTS_FOUND)
     include_directories(${TELEPATHY_FARSTREAM_INCLUDE_DIR}
                         ${TELEPATHY_GLIB_INCLUDE_DIR}
                         ${FARSTREAM_INCLUDE_DIR}
-                        ${GSTREAMER_INCLUDE_DIR}
+                        ${GSTREAMER_INCLUDE_DIRS}
                         ${GLIB2_INCLUDE_DIR}
                         ${LIBXML2_INCLUDE_DIR}
                         ${DBUS_INCLUDE_DIR})
diff --git a/cmake/modules/FindGStreamer.cmake 
b/cmake/modules/FindGStreamer.cmake
index 63fb41c..ffdd7a9 100644
--- a/cmake/modules/FindGStreamer.cmake
+++ b/cmake/modules/FindGStreamer.cmake
@@ -13,12 +13,12 @@
 
 # TODO: Other versions --> GSTREAMER_X_Y_FOUND (Example: GSTREAMER_0_8_FOUND 
and GSTREAMER_0_10_FOUND etc)
 
-IF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY 
AND GSTREAMER_INTERFACE_LIBRARY)
+IF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY 
AND GSTREAMER_INTERFACE_LIBRARY)
    # in cache already
    SET(GSTREAMER_FIND_QUIETLY TRUE)
-ELSE (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND GSTREAMER_BASE_LIBRARY 
AND GSTREAMER_INTERFACE_LIBRARY)
+ELSE (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND 
GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
    SET(GSTREAMER_FIND_QUIETLY FALSE)
-ENDIF (GSTREAMER_INCLUDE_DIR AND GSTREAMER_LIBRARIES AND 
GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
+ENDIF (GSTREAMER_INCLUDE_DIRS AND GSTREAMER_LIBRARIES AND 
GSTREAMER_BASE_LIBRARY AND GSTREAMER_INTERFACE_LIBRARY)
 
 IF (NOT WIN32)
    # use pkg-config to get the directories and then use these values
@@ -38,6 +38,15 @@ FIND_PATH(GSTREAMER_INCLUDE_DIR gst/gst.h
    PATH_SUFFIXES gstreamer-1.0
    )
 
+FIND_PATH(GSTREAMER_CONF_INCLUDE_DIR gst/gstconfig.h
+   PATHS
+   ${PC_GSTREAMER_INCLUDEDIR}
+   ${PC_GSTREAMER_INCLUDE_DIRS}
+   PATH_SUFFIXES gstreamer-1.0
+   )
+
+SET(GSTREAMER_INCLUDE_DIRS ${GSTREAMER_INCLUDE_DIR} 
${GSTREAMER_CONF_INCLUDE_DIR})
+
 FIND_LIBRARY(GSTREAMER_LIBRARIES NAMES gstreamer-1.0
    PATHS
    ${PC_GSTREAMER_LIBDIR}
@@ -57,6 +66,12 @@ ELSE (GSTREAMER_INCLUDE_DIR)
    MESSAGE(STATUS "GStreamer: WARNING: include dir not found")
 ENDIF (GSTREAMER_INCLUDE_DIR)
 
+IF (GSTREAMER_CONF_INCLUDE_DIR)
+       #MESSAGE(STATUS "DEBUG: Found GStreamer config include dir: 
${GSTREAMER_CONF_INCLUDE_DIR}")
+ELSE (GSTREAMER_CONF_INCLUDE_DIR)
+   MESSAGE(STATUS "GStreamer: WARNING: config include dir not found")
+ENDIF (GSTREAMER_CONF_INCLUDE_DIR)
+
 IF (GSTREAMER_LIBRARIES)
    #MESSAGE(STATUS "DEBUG: Found GStreamer library: ${GSTREAMER_LIBRARIES}")
 ELSE (GSTREAMER_LIBRARIES)
@@ -65,6 +80,6 @@ ENDIF (GSTREAMER_LIBRARIES)
 
 
 INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer  DEFAULT_MSG  GSTREAMER_LIBRARIES 
GSTREAMER_INCLUDE_DIR GSTREAMER_BASE_LIBRARY)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(GStreamer  DEFAULT_MSG  GSTREAMER_LIBRARIES 
GSTREAMER_INCLUDE_DIRS GSTREAMER_BASE_LIBRARY)
 
-MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIR GSTREAMER_LIBRARIES 
GSTREAMER_BASE_LIBRARY)
+MARK_AS_ADVANCED(GSTREAMER_INCLUDE_DIRS GSTREAMER_LIBRARIES 
GSTREAMER_BASE_LIBRARY)
-- 
2.6.3

++++++ telepathy-qt-0.9.5.tar.gz -> telepathy-qt-0.9.6.1.tar.gz ++++++
++++ 680276 lines of diff (skipped)


Reply via email to