Merge lp:~boiko/texts-scope/update_to_latest_history into lp:texts-scope

Proposed by Gustavo Pichorim Boiko
Status: Merged
Approved by: Kyle Nitzsche
Approved revision: 15
Merge reported by: Kyle Nitzsche
Merged at revision: not available
Proposed branch: lp:~boiko/texts-scope/update_to_latest_history
Merge into: lp:texts-scope
Diff against target: 75 lines (+19/-7)
5 files modified
CMakeLists.txt (+3/-3)
click-build.sh (+12/-0)
data/CMakeLists.txt (+1/-1)
po/CMakeLists.txt (+2/-2)
src/query.cpp (+1/-1)
To merge this branch: bzr merge lp:~boiko/texts-scope/update_to_latest_history
Reviewer Review Type Date Requested Status
texts-scope-team Pending
Review via email: mp+274788@code.launchpad.net

Commit message

Update to latest history-service API and fix building when builddir != srcdir

Description of the change

Update to latest history-service API and fix building when builddir != srcdir

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2015-09-08 15:18:54 +0000
+++ CMakeLists.txt 2015-10-16 21:37:32 +0000
@@ -1,4 +1,4 @@
1set(VERSION "1.3.6")1set(VERSION "1.3.6.1")
22
3# Supress qDebug() output3# Supress qDebug() output
4ADD_DEFINITIONS( -DQT_NO_DEBUG_OUTPUT )4ADD_DEFINITIONS( -DQT_NO_DEBUG_OUTPUT )
@@ -84,6 +84,6 @@
84add_subdirectory(data)84add_subdirectory(data)
85add_subdirectory(po)85add_subdirectory(po)
8686
87install(FILES manifest.json DESTINATION "/")87install(FILES ${CMAKE_BINARY_DIR}/manifest.json DESTINATION "/")
88install(FILES "${PKG_PREFIX}.${PKG}_${APP}.security.json" DESTINATION "/")88install(FILES "${CMAKE_BINARY_DIR}/${PKG_PREFIX}.${PKG}_${APP}.security.json" DESTINATION "/")
8989
9090
=== added file 'click-build.sh'
--- click-build.sh 1970-01-01 00:00:00 +0000
+++ click-build.sh 2015-10-16 21:37:32 +0000
@@ -0,0 +1,12 @@
1#!/bin/sh
2
3export LC_ALL=C
4
5CLICKARCH=armhf
6rm -rf $CLICKARCH-build
7mkdir $CLICKARCH-build
8cd $CLICKARCH-build
9cmake ..
10make DESTDIR=../package install
11cd ..
12click build package
013
=== modified file 'data/CMakeLists.txt'
--- data/CMakeLists.txt 2015-04-06 21:34:04 +0000
+++ data/CMakeLists.txt 2015-10-16 21:37:32 +0000
@@ -15,7 +15,7 @@
15endforeach(INI)15endforeach(INI)
1616
17INSTALL(17INSTALL(
18 FILES "scope.ini"18 FILES "${CMAKE_CURRENT_BINARY_DIR}/scope.ini"
19 DESTINATION "${SCOPE_INSTALLDIR}"19 DESTINATION "${SCOPE_INSTALLDIR}"
20 RENAME "${PKG_PREFIX}.${PKG}_${APP}.ini"20 RENAME "${PKG_PREFIX}.${PKG}_${APP}.ini"
21)21)
2222
=== modified file 'po/CMakeLists.txt'
--- po/CMakeLists.txt 2015-04-06 21:34:04 +0000
+++ po/CMakeLists.txt 2015-10-16 21:37:32 +0000
@@ -26,6 +26,6 @@
26endforeach(POFILE)26endforeach(POFILE)
2727
28INSTALL(28INSTALL(
29 DIRECTORY "built_mos/"29 DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/built_mos/"
30 DESTINATION "${SCOPE_INSTALLDIR}"30 DESTINATION "${SCOPE_INSTALLDIR}"
31)
32\ No newline at end of file31\ No newline at end of file
32)
3333
=== modified file 'src/query.cpp'
--- src/query.cpp 2015-09-08 15:13:40 +0000
+++ src/query.cpp 2015-10-16 21:37:32 +0000
@@ -183,7 +183,7 @@
183 tevent.cat = cat;183 tevent.cat = cat;
184184
185 //get call participants and deduce the caller185 //get call participants and deduce the caller
186 QList<QString> participants = ev.participants();186 QStringList participants = ev.participants().identifiers();
187 QString caller_raw = participants[0];187 QString caller_raw = participants[0];
188 QString caller;188 QString caller;
189 QString sender = ev.senderId();189 QString sender = ev.senderId();

Subscribers

People subscribed via source and target branches