svn commit: r411407 - head/net-im/telepathy-qt4/files

Raphael Kubo da Costa rakuco at FreeBSD.org
Sat Mar 19 14:38:37 UTC 2016


Author: rakuco
Date: Sat Mar 19 14:38:35 2016
New Revision: 411407
URL: https://svnweb.freebsd.org/changeset/ports/411407

Log:
  Add some upstream patches that properly declare all build dependencies.
  
  The upcoming CMake 3.5.0 generates Makefiles that break parallel builds more
  often when the dependencies between each targets are not declared correctly.
  
  PR:		208033

Added:
  head/net-im/telepathy-qt4/files/patch-git_1e1f53e9   (contents, props changed)
  head/net-im/telepathy-qt4/files/patch-git_7389dc9   (contents, props changed)

Added: head/net-im/telepathy-qt4/files/patch-git_1e1f53e9
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/telepathy-qt4/files/patch-git_1e1f53e9	Sat Mar 19 14:38:35 2016	(r411407)
@@ -0,0 +1,21 @@
+This commit is required to avoid occasional build failures in parallel builds
+especially after CMake 3.5.0.
+
+commit 1e1f53e9d91684918c34ec50392f86287e001a1e
+Author: Alexandr Akulich <akulichalexander at gmail.com>
+Date:   Fri Jan 15 18:52:59 2016 +0500
+
+    BaseChannel: Reduced includes (doesn't depend on client stuff anymore).
+
+--- TelepathyQt/base-channel.cpp
++++ TelepathyQt/base-channel.cpp
+@@ -26,7 +26,8 @@
+ 
+ #include "TelepathyQt/_gen/base-channel.moc.hpp"
+ #include "TelepathyQt/_gen/base-channel-internal.moc.hpp"
+-#include "TelepathyQt/future-internal.h"
++#include "TelepathyQt/_gen/future-constants.h"
++#include "TelepathyQt/_gen/future-types.h"
+ 
+ #include "TelepathyQt/debug-internal.h"
+ 

Added: head/net-im/telepathy-qt4/files/patch-git_7389dc9
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/telepathy-qt4/files/patch-git_7389dc9	Sat Mar 19 14:38:35 2016	(r411407)
@@ -0,0 +1,20 @@
+This commit is required to avoid occasional build failures in parallel builds.
+
+commit 7389dc990c67d4269f3a79c924c054e87f2e4ac5
+Author: Alexandr Akulich <akulichalexander at gmail.com>
+Date:   Fri, 15 Jan 2016 18:54:09 +0500
+
+    CMakeLists: Added missing service dependence.
+
+    telepathy-qt-service depends on generated stable and future types and consts.
+
+--- TelepathyQt/CMakeLists.txt
++++ TelepathyQt/CMakeLists.txt
+@@ -953,6 +953,7 @@ if(ENABLE_SERVICE_SUPPORT)
+     #endif (ENABLE_COMPILER_COVERAGE)
+     # lets build a static only library until we have a stable API/ABI
+     add_library(telepathy-qt${QT_VERSION_MAJOR}-service STATIC ${telepathy_qt_service_SRCS})
++    add_dependencies(telepathy-qt${QT_VERSION_MAJOR}-service stable-typesgen future-typesgen)
+ 
+     # generate service moc files
+     foreach(moc_src ${telepathy_qt_service_MOC_SRCS})


More information about the svn-ports-head mailing list