Merge lp:~kissiel/checkbox/ppa-packaging-touch2converged-trusty into lp:~checkbox-dev/checkbox/ppa-packaging-checkbox-converged-trusty

Proposed by Maciej Kisielewski
Status: Merged
Approved by: Sylvain Pineau
Approved revision: 22
Merged at revision: 22
Proposed branch: lp:~kissiel/checkbox/ppa-packaging-touch2converged-trusty
Merge into: lp:~checkbox-dev/checkbox/ppa-packaging-checkbox-converged-trusty
Diff against target: 539 lines (+109/-109)
5 files modified
debian/checkbox-converged.desktop (+2/-2)
debian/clean (+1/-1)
debian/install (+5/-5)
debian/patches/components_1.3_removal.diff (+100/-100)
debian/rules (+1/-1)
To merge this branch: bzr merge lp:~kissiel/checkbox/ppa-packaging-touch2converged-trusty
Reviewer Review Type Date Requested Status
Sylvain Pineau (community) Approve
Review via email: mp+307168@code.launchpad.net

This proposal supersedes a proposal from 2016-09-29.

Description of the change

This MR updates packaging with new Checkbox-Converged files layout (Trusty).

To post a comment you must log in.
Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

I have some doubts with the patch, but let's tru to see where it fails (if it fails)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== renamed file 'debian/checkbox-touch.desktop' => 'debian/checkbox-converged.desktop'
--- debian/checkbox-touch.desktop 2015-07-23 20:18:44 +0000
+++ debian/checkbox-converged.desktop 2016-09-29 12:09:15 +0000
@@ -1,8 +1,8 @@
1[Desktop Entry]1[Desktop Entry]
2Name=Checkbox Converged2Name=Checkbox Converged
3Comment=System testing utility for Ubuntu3Comment=System testing utility for Ubuntu
4Exec=env LD_LIBRARY_PATH=/opt/qt-5.4/usr/lib/x86_64-linux-gnu qmlscene -qt=5.4 --settings=/usr/share/checkbox-converged/settings.json $@ /usr/share/checkbox-converged/checkbox-touch.qml4Exec=env LD_LIBRARY_PATH=/opt/qt-5.4/usr/lib/x86_64-linux-gnu qmlscene -qt=5.4 --settings=/usr/share/checkbox-converged/settings.json $@ /usr/share/checkbox-converged/checkbox-converged.qml
5Icon=checkbox-touch.svg5Icon=checkbox-converged.svg
6Terminal=false6Terminal=false
7Type=Application7Type=Application
8X-Ubuntu-Touch=true8X-Ubuntu-Touch=true
99
=== modified file 'debian/clean'
--- debian/clean 2015-07-07 14:42:13 +0000
+++ debian/clean 2016-09-29 12:09:15 +0000
@@ -1,2 +1,2 @@
1checkbox-touch/py/__pycache__/*.pyc1converged/py/__pycache__/*.pyc
22
33
=== modified file 'debian/install'
--- debian/install 2015-07-23 20:18:44 +0000
+++ debian/install 2016-09-29 12:09:15 +0000
@@ -1,8 +1,8 @@
1checkbox-touch/checkbox-touch.qml usr/share/checkbox-converged/1converged/checkbox-converged.qml usr/share/checkbox-converged/
2checkbox-touch/checkbox-touch.svg usr/share/icons/hicolor/scalable/apps/2converged/checkbox-converged.svg usr/share/icons/hicolor/scalable/apps/
3checkbox-touch/components usr/share/checkbox-converged/3converged/components usr/share/checkbox-converged/
4checkbox-touch/py usr/share/checkbox-converged/4converged/py usr/share/checkbox-converged/
5debian/checkbox-touch.desktop usr/share/applications5debian/checkbox-converged.desktop usr/share/applications
6debian/settings.json usr/share/checkbox-converged/6debian/settings.json usr/share/checkbox-converged/
7debian/tick.svg usr/share/icons/suru/actions/scalable/7debian/tick.svg usr/share/icons/suru/actions/scalable/
8debian/window-close.svg usr/share/icons/suru/actions/scalable/8debian/window-close.svg usr/share/icons/suru/actions/scalable/
99
=== modified file 'debian/patches/components_1.3_removal.diff'
--- debian/patches/components_1.3_removal.diff 2016-08-19 09:06:46 +0000
+++ debian/patches/components_1.3_removal.diff 2016-09-29 12:09:15 +0000
@@ -1,7 +1,7 @@
1diff --git b/checkbox-touch/checkbox-touch.qml a/checkbox-touch/checkbox-touch.qml1diff --git b/converged/checkbox-converged.qml a/converged/checkbox-converged.qml
2index cb896ef..c6c3b93 1006442index cb896ef..c6c3b93 100644
3--- b/checkbox-touch/checkbox-touch.qml3--- b/converged/checkbox-converged.qml
4+++ a/checkbox-touch/checkbox-touch.qml4+++ a/converged/checkbox-converged.qml
5@@ -20,8 +20,8 @@5@@ -20,8 +20,8 @@
6 * along with this program. If not, see <http://www.gnu.org/licenses/>.6 * along with this program. If not, see <http://www.gnu.org/licenses/>.
7 */7 */
@@ -39,12 +39,12 @@
39 }39 }
40 return pageObject;40 return pageObject;
41 }41 }
42diff --git b/checkbox-touch/components/AboutPage.qml a/checkbox-touch/components/AboutPage.qml42diff --git b/converged/components/AboutPage.qml a/converged/components/AboutPage.qml
43index bb0f50e..d3de734 10064443index bb0f50e..d3de734 100644
44--- b/checkbox-touch/components/AboutPage.qml44--- b/converged/components/AboutPage.qml
45+++ a/checkbox-touch/components/AboutPage.qml45+++ a/converged/components/AboutPage.qml
46@@ -24,7 +24,7 @@46@@ -24,7 +24,7 @@
47 This page shows version information and contents of AUTHORS file located in top chekckbox-touch directory47 This page shows version information and contents of AUTHORS file located in top chekckbox-converged directory
48 */48 */
49 import QtQuick 2.049 import QtQuick 2.0
50-import Ubuntu.Components 1.350-import Ubuntu.Components 1.3
@@ -72,10 +72,10 @@
72 topMargin: units.gu(3)72 topMargin: units.gu(3)
73 bottomMargin: units.gu(3)73 bottomMargin: units.gu(3)
74 leftMargin: units.gu(1)74 leftMargin: units.gu(1)
75diff --git b/checkbox-touch/components/AutomatedTestPage.qml a/checkbox-touch/components/AutomatedTestPage.qml75diff --git b/converged/components/AutomatedTestPage.qml a/converged/components/AutomatedTestPage.qml
76index 49e9ba2..7102aa9 10064476index 49e9ba2..7102aa9 100644
77--- b/checkbox-touch/components/AutomatedTestPage.qml77--- b/converged/components/AutomatedTestPage.qml
78+++ a/checkbox-touch/components/AutomatedTestPage.qml78+++ a/converged/components/AutomatedTestPage.qml
79@@ -20,7 +20,7 @@79@@ -20,7 +20,7 @@
80 */80 */
81 81
@@ -101,10 +101,10 @@
101 101
102 TestPageBody {102 TestPageBody {
103 header: test["name"]103 header: test["name"]
104diff --git b/checkbox-touch/components/CbtDialog.qml a/checkbox-touch/components/CbtDialog.qml104diff --git b/converged/components/CbtDialog.qml a/converged/components/CbtDialog.qml
105index a7e36c3..ab3f281 100644105index a7e36c3..ab3f281 100644
106--- b/checkbox-touch/components/CbtDialog.qml106--- b/converged/components/CbtDialog.qml
107+++ a/checkbox-touch/components/CbtDialog.qml107+++ a/converged/components/CbtDialog.qml
108@@ -19,8 +19,8 @@108@@ -19,8 +19,8 @@
109 * along with this program. If not, see <http://www.gnu.org/licenses/>.109 * along with this program. If not, see <http://www.gnu.org/licenses/>.
110 */110 */
@@ -116,10 +116,10 @@
116 import QtQuick.Layouts 1.1116 import QtQuick.Layouts 1.1
117 117
118 /*! \brief Common dialog popup.118 /*! \brief Common dialog popup.
119diff --git b/checkbox-touch/components/CheckboxTouchApplication.qml a/checkbox-touch/components/CheckboxTouchApplication.qml119diff --git b/converged/components/CheckboxConvergedApplication.qml a/converged/components/CheckboxConvergedApplication.qml
120index 2aa8df3..46b92b4 100644120index 2aa8df3..46b92b4 100644
121--- b/checkbox-touch/components/CheckboxTouchApplication.qml121--- b/converged/components/CheckboxConvergedApplication.qml
122+++ a/checkbox-touch/components/CheckboxTouchApplication.qml122+++ a/converged/components/CheckboxConvergedApplication.qml
123@@ -21,6 +21,7 @@123@@ -21,6 +21,7 @@
124 */124 */
125 125
@@ -128,10 +128,10 @@
128 128
129 PythonObjectRef {129 PythonObjectRef {
130 id: app130 id: app
131diff --git b/checkbox-touch/components/CommandOutputPage.qml a/checkbox-touch/components/CommandOutputPage.qml131diff --git b/converged/components/CommandOutputPage.qml a/converged/components/CommandOutputPage.qml
132index 52a534f..144c4d0 100644132index 52a534f..144c4d0 100644
133--- b/checkbox-touch/components/CommandOutputPage.qml133--- b/converged/components/CommandOutputPage.qml
134+++ a/checkbox-touch/components/CommandOutputPage.qml134+++ a/converged/components/CommandOutputPage.qml
135@@ -24,8 +24,8 @@135@@ -24,8 +24,8 @@
136 */136 */
137 137
@@ -177,10 +177,10 @@
177 }177 }
178 178
179 Timer {179 Timer {
180diff --git b/checkbox-touch/components/CommentsDialog.qml a/checkbox-touch/components/CommentsDialog.qml180diff --git b/converged/components/CommentsDialog.qml a/converged/components/CommentsDialog.qml
181index 3323788..8dc1b6c 100644181index 3323788..8dc1b6c 100644
182--- b/checkbox-touch/components/CommentsDialog.qml182--- b/converged/components/CommentsDialog.qml
183+++ a/checkbox-touch/components/CommentsDialog.qml183+++ a/converged/components/CommentsDialog.qml
184@@ -19,8 +19,8 @@184@@ -19,8 +19,8 @@
185 * along with this program. If not, see <http://www.gnu.org/licenses/>.185 * along with this program. If not, see <http://www.gnu.org/licenses/>.
186 */186 */
@@ -192,10 +192,10 @@
192 192
193 /*! \brief Comment addition dialog.193 /*! \brief Comment addition dialog.
194 \inherits Item194 \inherits Item
195diff --git b/checkbox-touch/components/ConfirmationDialog.qml a/checkbox-touch/components/ConfirmationDialog.qml195diff --git b/converged/components/ConfirmationDialog.qml a/converged/components/ConfirmationDialog.qml
196index 25e8734..44e8963 100644196index 25e8734..44e8963 100644
197--- b/checkbox-touch/components/ConfirmationDialog.qml197--- b/converged/components/ConfirmationDialog.qml
198+++ a/checkbox-touch/components/ConfirmationDialog.qml198+++ a/converged/components/ConfirmationDialog.qml
199@@ -19,8 +19,8 @@199@@ -19,8 +19,8 @@
200 * along with this program. If not, see <http://www.gnu.org/licenses/>.200 * along with this program. If not, see <http://www.gnu.org/licenses/>.
201 */201 */
@@ -207,10 +207,10 @@
207 207
208 /*! \brief Skip-confirmation dialog.208 /*! \brief Skip-confirmation dialog.
209 \inherits Item209 \inherits Item
210diff --git b/checkbox-touch/components/ErrorDialog.qml a/checkbox-touch/components/ErrorDialog.qml210diff --git b/converged/components/ErrorDialog.qml a/converged/components/ErrorDialog.qml
211index edbcc1a..688e68a 100644211index edbcc1a..688e68a 100644
212--- b/checkbox-touch/components/ErrorDialog.qml212--- b/converged/components/ErrorDialog.qml
213+++ a/checkbox-touch/components/ErrorDialog.qml213+++ a/converged/components/ErrorDialog.qml
214@@ -19,8 +19,8 @@214@@ -19,8 +19,8 @@
215 * along with this program. If not, see <http://www.gnu.org/licenses/>.215 * along with this program. If not, see <http://www.gnu.org/licenses/>.
216 */216 */
@@ -222,10 +222,10 @@
222 222
223 /*! \brief Error message popup.223 /*! \brief Error message popup.
224 \inherits Item224 \inherits Item
225diff --git b/checkbox-touch/components/InputDialog.qml a/checkbox-touch/components/InputDialog.qml225diff --git b/converged/components/InputDialog.qml a/converged/components/InputDialog.qml
226index a9d9776..99fa4c5 100644226index a9d9776..99fa4c5 100644
227--- b/checkbox-touch/components/InputDialog.qml227--- b/converged/components/InputDialog.qml
228+++ a/checkbox-touch/components/InputDialog.qml228+++ a/converged/components/InputDialog.qml
229@@ -19,8 +19,8 @@229@@ -19,8 +19,8 @@
230 * along with this program. If not, see <http://www.gnu.org/licenses/>.230 * along with this program. If not, see <http://www.gnu.org/licenses/>.
231 */231 */
@@ -237,10 +237,10 @@
237 237
238 /*! \brief Simple input dialog.238 /*! \brief Simple input dialog.
239 \inherits Item239 \inherits Item
240diff --git b/checkbox-touch/components/InteractIntroPage.qml a/checkbox-touch/components/InteractIntroPage.qml240diff --git b/converged/components/InteractIntroPage.qml a/converged/components/InteractIntroPage.qml
241index 01e285b..d62965f 100644241index 01e285b..d62965f 100644
242--- b/checkbox-touch/components/InteractIntroPage.qml242--- b/converged/components/InteractIntroPage.qml
243+++ a/checkbox-touch/components/InteractIntroPage.qml243+++ a/converged/components/InteractIntroPage.qml
244@@ -27,8 +27,8 @@244@@ -27,8 +27,8 @@
245 */245 */
246 246
@@ -289,10 +289,10 @@
289 }289 }
290 290
291 state: "idle"291 state: "idle"
292diff --git b/checkbox-touch/components/LatchButton.qml a/checkbox-touch/components/LatchButton.qml292diff --git b/converged/components/LatchButton.qml a/converged/components/LatchButton.qml
293index 8fe9252..b1ea81b 100644293index 8fe9252..b1ea81b 100644
294--- b/checkbox-touch/components/LatchButton.qml294--- b/converged/components/LatchButton.qml
295+++ a/checkbox-touch/components/LatchButton.qml295+++ a/converged/components/LatchButton.qml
296@@ -20,7 +20,7 @@296@@ -20,7 +20,7 @@
297 */297 */
298 298
@@ -302,10 +302,10 @@
302 302
303 /*! \brief Latch button.303 /*! \brief Latch button.
304 \inherits Button304 \inherits Button
305diff --git b/checkbox-touch/components/ListItemWrappable.qml a/checkbox-touch/components/ListItemWrappable.qml305diff --git b/converged/components/ListItemWrappable.qml a/converged/components/ListItemWrappable.qml
306index e9297bf..a380ea2 100644306index e9297bf..a380ea2 100644
307--- b/checkbox-touch/components/ListItemWrappable.qml307--- b/converged/components/ListItemWrappable.qml
308+++ a/checkbox-touch/components/ListItemWrappable.qml308+++ a/converged/components/ListItemWrappable.qml
309@@ -19,7 +19,7 @@309@@ -19,7 +19,7 @@
310 * along with this program. If not, see <http://www.gnu.org/licenses/>.310 * along with this program. If not, see <http://www.gnu.org/licenses/>.
311 */311 */
@@ -315,10 +315,10 @@
315 import Ubuntu.Components.ListItems 1.0315 import Ubuntu.Components.ListItems 1.0
316 316
317 /*! \brief ListItemWrappable317 /*! \brief ListItemWrappable
318diff --git b/checkbox-touch/components/ManualIntroPage.qml a/checkbox-touch/components/ManualIntroPage.qml318diff --git b/converged/components/ManualIntroPage.qml a/converged/components/ManualIntroPage.qml
319index 0fce6f5..afe007a 100644319index 0fce6f5..afe007a 100644
320--- b/checkbox-touch/components/ManualIntroPage.qml320--- b/converged/components/ManualIntroPage.qml
321+++ a/checkbox-touch/components/ManualIntroPage.qml321+++ a/converged/components/ManualIntroPage.qml
322@@ -26,9 +26,9 @@322@@ -26,9 +26,9 @@
323 */323 */
324 324
@@ -368,10 +368,10 @@
368 }368 }
369 369
370 TestPageBody {370 TestPageBody {
371diff --git b/checkbox-touch/components/PasswordDialog.qml a/checkbox-touch/components/PasswordDialog.qml371diff --git b/converged/components/PasswordDialog.qml a/converged/components/PasswordDialog.qml
372index dea1b0f..c3931bc 100644372index dea1b0f..c3931bc 100644
373--- b/checkbox-touch/components/PasswordDialog.qml373--- b/converged/components/PasswordDialog.qml
374+++ a/checkbox-touch/components/PasswordDialog.qml374+++ a/converged/components/PasswordDialog.qml
375@@ -19,8 +19,8 @@375@@ -19,8 +19,8 @@
376 * along with this program. If not, see <http://www.gnu.org/licenses/>.376 * along with this program. If not, see <http://www.gnu.org/licenses/>.
377 */377 */
@@ -383,10 +383,10 @@
383 383
384 /*! \brief Password prompt dialog.384 /*! \brief Password prompt dialog.
385 \inherits Item385 \inherits Item
386diff --git b/checkbox-touch/components/ProgressBox.qml a/checkbox-touch/components/ProgressBox.qml386diff --git b/converged/components/ProgressBox.qml a/converged/components/ProgressBox.qml
387index b9fc720..a2b5d05 100644387index b9fc720..a2b5d05 100644
388--- b/checkbox-touch/components/ProgressBox.qml388--- b/converged/components/ProgressBox.qml
389+++ a/checkbox-touch/components/ProgressBox.qml389+++ a/converged/components/ProgressBox.qml
390@@ -20,7 +20,7 @@390@@ -20,7 +20,7 @@
391 */391 */
392 392
@@ -396,10 +396,10 @@
396 import QtQuick.Layouts 1.1396 import QtQuick.Layouts 1.1
397 397
398 /*! \brief Progress Box.398 /*! \brief Progress Box.
399diff --git b/checkbox-touch/components/ProgressHeader.qml a/checkbox-touch/components/ProgressHeader.qml399diff --git b/converged/components/ProgressHeader.qml a/converged/components/ProgressHeader.qml
400deleted file mode 100644400deleted file mode 100644
401index a7db263..0000000401index a7db263..0000000
402--- b/checkbox-touch/components/ProgressHeader.qml402--- b/converged/components/ProgressHeader.qml
403+++ /dev/null403+++ /dev/null
404@@ -1,59 +0,0 @@404@@ -1,59 +0,0 @@
405-/*405-/*
@@ -461,10 +461,10 @@
461- }461- }
462- }462- }
463-}463-}
464diff --git b/checkbox-touch/components/QmlConfinedPage.qml a/checkbox-touch/components/QmlConfinedPage.qml464diff --git b/converged/components/QmlConfinedPage.qml a/converged/components/QmlConfinedPage.qml
465index 0c8f773..527525f 100644465index 0c8f773..527525f 100644
466--- b/checkbox-touch/components/QmlConfinedPage.qml466--- b/converged/components/QmlConfinedPage.qml
467+++ a/checkbox-touch/components/QmlConfinedPage.qml467+++ a/converged/components/QmlConfinedPage.qml
468@@ -23,8 +23,8 @@468@@ -23,8 +23,8 @@
469 */469 */
470 470
@@ -520,10 +520,10 @@
520 }520 }
521 521
522 TestPageBody {522 TestPageBody {
523diff --git b/checkbox-touch/components/QmlNativePage.qml a/checkbox-touch/components/QmlNativePage.qml523diff --git b/converged/components/QmlNativePage.qml a/converged/components/QmlNativePage.qml
524index 8928f60..a33a883 100644524index 8928f60..a33a883 100644
525--- b/checkbox-touch/components/QmlNativePage.qml525--- b/converged/components/QmlNativePage.qml
526+++ a/checkbox-touch/components/QmlNativePage.qml526+++ a/converged/components/QmlNativePage.qml
527@@ -23,8 +23,8 @@527@@ -23,8 +23,8 @@
528 */528 */
529 529
@@ -579,10 +579,10 @@
579 }579 }
580 580
581 TestPageBody {581 TestPageBody {
582diff --git b/checkbox-touch/components/ResultsPage.qml a/checkbox-touch/components/ResultsPage.qml582diff --git b/converged/components/ResultsPage.qml a/converged/components/ResultsPage.qml
583index 35fdcd1..ca6d567 100644583index 35fdcd1..ca6d567 100644
584--- b/checkbox-touch/components/ResultsPage.qml584--- b/converged/components/ResultsPage.qml
585+++ a/checkbox-touch/components/ResultsPage.qml585+++ a/converged/components/ResultsPage.qml
586@@ -26,10 +26,11 @@586@@ -26,10 +26,11 @@
587 */587 */
588 588
@@ -652,10 +652,10 @@
652 topMargin: units.gu(3)652 topMargin: units.gu(3)
653 bottomMargin: units.gu(3)653 bottomMargin: units.gu(3)
654 leftMargin: units.gu(1)654 leftMargin: units.gu(1)
655diff --git b/checkbox-touch/components/ResumeSessionPage.qml a/checkbox-touch/components/ResumeSessionPage.qml655diff --git b/converged/components/ResumeSessionPage.qml a/converged/components/ResumeSessionPage.qml
656index cbfbb59..ad57715 100644656index cbfbb59..ad57715 100644
657--- b/checkbox-touch/components/ResumeSessionPage.qml657--- b/converged/components/ResumeSessionPage.qml
658+++ a/checkbox-touch/components/ResumeSessionPage.qml658+++ a/converged/components/ResumeSessionPage.qml
659@@ -26,7 +26,7 @@659@@ -26,7 +26,7 @@
660 */660 */
661 661
@@ -689,10 +689,10 @@
689 topMargin: units.gu(3)689 topMargin: units.gu(3)
690 bottomMargin: units.gu(3)690 bottomMargin: units.gu(3)
691 leftMargin: units.gu(1)691 leftMargin: units.gu(1)
692diff --git b/checkbox-touch/components/SelectionPage.qml a/checkbox-touch/components/SelectionPage.qml692diff --git b/converged/components/SelectionPage.qml a/converged/components/SelectionPage.qml
693index 6df9cb1..fbc2e75 100644693index 6df9cb1..fbc2e75 100644
694--- b/checkbox-touch/components/SelectionPage.qml694--- b/converged/components/SelectionPage.qml
695+++ a/checkbox-touch/components/SelectionPage.qml695+++ a/converged/components/SelectionPage.qml
696@@ -21,7 +21,7 @@696@@ -21,7 +21,7 @@
697 697
698 import QtQuick 2.0698 import QtQuick 2.0
@@ -809,10 +809,10 @@
809 bottomMargin: units.gu(3)809 bottomMargin: units.gu(3)
810 leftMargin: units.gu(1)810 leftMargin: units.gu(1)
811 rightMargin: units.gu(1)811 rightMargin: units.gu(1)
812diff --git b/checkbox-touch/components/TestPageBody.qml a/checkbox-touch/components/TestPageBody.qml812diff --git b/converged/components/TestPageBody.qml a/converged/components/TestPageBody.qml
813index 73832e2..9693dae 100644813index 73832e2..9693dae 100644
814--- b/checkbox-touch/components/TestPageBody.qml814--- b/converged/components/TestPageBody.qml
815+++ a/checkbox-touch/components/TestPageBody.qml815+++ a/converged/components/TestPageBody.qml
816@@ -25,8 +25,8 @@816@@ -25,8 +25,8 @@
817 817
818 import QtQuick 2.0818 import QtQuick 2.0
@@ -836,10 +836,10 @@
836 topMargin: units.gu(3)836 topMargin: units.gu(3)
837 bottomMargin: units.gu(3)837 bottomMargin: units.gu(3)
838 leftMargin: units.gu(1)838 leftMargin: units.gu(1)
839diff --git b/checkbox-touch/components/TestVerificationPage.qml a/checkbox-touch/components/TestVerificationPage.qml839diff --git b/converged/components/TestVerificationPage.qml a/converged/components/TestVerificationPage.qml
840index 2178ffb..ad86d85 100644840index 2178ffb..ad86d85 100644
841--- b/checkbox-touch/components/TestVerificationPage.qml841--- b/converged/components/TestVerificationPage.qml
842+++ a/checkbox-touch/components/TestVerificationPage.qml842+++ a/converged/components/TestVerificationPage.qml
843@@ -26,9 +26,9 @@843@@ -26,9 +26,9 @@
844 */844 */
845 845
@@ -889,10 +889,10 @@
889 }889 }
890 890
891 TestPageBody {891 TestPageBody {
892diff --git b/checkbox-touch/components/UserInteractSummaryPage.qml a/checkbox-touch/components/UserInteractSummaryPage.qml892diff --git b/converged/components/UserInteractSummaryPage.qml a/converged/components/UserInteractSummaryPage.qml
893index 8f3ca06..2dc286d 100644893index 8f3ca06..2dc286d 100644
894--- b/checkbox-touch/components/UserInteractSummaryPage.qml894--- b/converged/components/UserInteractSummaryPage.qml
895+++ a/checkbox-touch/components/UserInteractSummaryPage.qml895+++ a/converged/components/UserInteractSummaryPage.qml
896@@ -26,8 +26,8 @@896@@ -26,8 +26,8 @@
897 */897 */
898 898
@@ -941,10 +941,10 @@
941 }941 }
942 942
943 TestPageBody {943 TestPageBody {
944diff --git b/checkbox-touch/components/WebViewer.qml a/checkbox-touch/components/WebViewer.qml944diff --git b/converged/components/WebViewer.qml a/converged/components/WebViewer.qml
945index 0348919..7b5ef78 100644945index 0348919..7b5ef78 100644
946--- b/checkbox-touch/components/WebViewer.qml946--- b/converged/components/WebViewer.qml
947+++ a/checkbox-touch/components/WebViewer.qml947+++ a/converged/components/WebViewer.qml
948@@ -21,7 +21,7 @@948@@ -21,7 +21,7 @@
949 949
950 import QtQuick 2.0950 import QtQuick 2.0
@@ -954,10 +954,10 @@
954 954
955 955
956 Page {956 Page {
957diff --git b/checkbox-touch/components/WelcomePage.qml a/checkbox-touch/components/WelcomePage.qml957diff --git b/converged/components/WelcomePage.qml a/converged/components/WelcomePage.qml
958index a310e41..cf328d0 100644958index a310e41..cf328d0 100644
959--- b/checkbox-touch/components/WelcomePage.qml959--- b/converged/components/WelcomePage.qml
960+++ a/checkbox-touch/components/WelcomePage.qml960+++ a/converged/components/WelcomePage.qml
961@@ -21,7 +21,7 @@961@@ -21,7 +21,7 @@
962 */962 */
963 963
@@ -1001,10 +1001,10 @@
1001 Label {1001 Label {
1002 id: welcomeText1002 id: welcomeText
1003 1003
1004diff --git b/checkbox-touch/components/actions/AddCommentAction.qml a/checkbox-touch/components/actions/AddCommentAction.qml1004diff --git b/converged/components/actions/AddCommentAction.qml a/converged/components/actions/AddCommentAction.qml
1005index b3977ce..d7daf53 1006441005index b3977ce..d7daf53 100644
1006--- b/checkbox-touch/components/actions/AddCommentAction.qml1006--- b/converged/components/actions/AddCommentAction.qml
1007+++ a/checkbox-touch/components/actions/AddCommentAction.qml1007+++ a/converged/components/actions/AddCommentAction.qml
1008@@ -22,8 +22,8 @@1008@@ -22,8 +22,8 @@
1009 /*! \brief Action component for adding a comment. */1009 /*! \brief Action component for adding a comment. */
1010 1010
@@ -1016,10 +1016,10 @@
1016 1016
1017 Action {1017 Action {
1018 id: addCommentAction1018 id: addCommentAction
1019diff --git b/checkbox-touch/components/actions/SkipAction.qml a/checkbox-touch/components/actions/SkipAction.qml1019diff --git b/converged/components/actions/SkipAction.qml a/converged/components/actions/SkipAction.qml
1020index 124c7dd..712d746 1006441020index 124c7dd..712d746 100644
1021--- b/checkbox-touch/components/actions/SkipAction.qml1021--- b/converged/components/actions/SkipAction.qml
1022+++ a/checkbox-touch/components/actions/SkipAction.qml1022+++ a/converged/components/actions/SkipAction.qml
1023@@ -22,8 +22,8 @@1023@@ -22,8 +22,8 @@
1024 /*! \brief Action component for skipping a test. */1024 /*! \brief Action component for skipping a test. */
1025 1025
@@ -1031,10 +1031,10 @@
10311031
1032 Action {1032 Action {
1033 id: skipAction1033 id: skipAction
1034diff --git b/checkbox-touch/tests/autopilot/checkbox_touch/__init__.py a/checkbox-touch/tests/autopilot/checkbox_touch/__init__.py1034diff --git b/converged/tests/autopilot/checkbox_converged/__init__.py a/converged/tests/autopilot/checkbox_converged/__init__.py
1035index 547ab73..77e5220 1006441035index 547ab73..77e5220 100644
1036--- b/checkbox-touch/tests/autopilot/checkbox_touch/__init__.py1036--- b/converged/tests/autopilot/checkbox_converged/__init__.py
1037+++ a/checkbox-touch/tests/autopilot/checkbox_touch/__init__.py1037+++ a/converged/tests/autopilot/checkbox_converged/__init__.py
1038@@ -87,7 +87,7 @@ class ClickAppTestCase(base.UbuntuUIToolkitAppTestCase):1038@@ -87,7 +87,7 @@ class ClickAppTestCase(base.UbuntuUIToolkitAppTestCase):
1039 self.pointing_device.click_object(continue_btn)1039 self.pointing_device.click_object(continue_btn)
1040 category_page = self.app.wait_select_single(1040 category_page = self.app.wait_select_single(
@@ -1065,11 +1065,11 @@
1065 def _launch_application_from_phablet(self):1065 def _launch_application_from_phablet(self):
1066 # On phablet, we only run the tests against the installed click1066 # On phablet, we only run the tests against the installed click
1067 # package.1067 # package.
1068diff --git b/checkbox-touch/tests/autopilot/checkbox_touch/test_checkbox_touch.py a/checkbox-touch/tests/autopilot/checkbox_touch/test_checkbox_touch.py1068diff --git b/converged/tests/autopilot/checkbox_converged/test_checkbox_converged.py a/converged/tests/autopilot/checkbox_converged/test_checkbox_converged.py
1069index e9fe916..c0bf6a3 1006441069index e9fe916..c0bf6a3 100644
1070--- b/checkbox-touch/tests/autopilot/checkbox_touch/test_checkbox_touch.py1070--- b/converged/tests/autopilot/checkbox_converged/test_checkbox_converged.py
1071+++ a/checkbox-touch/tests/autopilot/checkbox_touch/test_checkbox_touch.py1071+++ a/converged/tests/autopilot/checkbox_converged/test_checkbox_converged.py
1072@@ -19,7 +19,7 @@ class TestCheckboxTouch(checkbox_touch.ClickAppTestCase):1072@@ -19,7 +19,7 @@ class TestCheckboxConverged(checkbox_converged.ClickAppTestCase):
1073 if selectable_object_name is not None:1073 if selectable_object_name is not None:
1074 self.app.wait_select_single(1074 self.app.wait_select_single(
1075 objectName=selectable_object_name, visible=True)1075 objectName=selectable_object_name, visible=True)
@@ -1078,7 +1078,7 @@
1078 dialog = self.app.wait_select_single(objectName='dialog')1078 dialog = self.app.wait_select_single(objectName='dialog')
1079 yes_btn = dialog.select_single(objectName='yesButton')1079 yes_btn = dialog.select_single(objectName='yesButton')
1080 self.pointing_device.click_object(yes_btn)1080 self.pointing_device.click_object(yes_btn)
1081@@ -62,7 +62,7 @@ class TestCheckboxTouch(checkbox_touch.ClickAppTestCase):1081@@ -62,7 +62,7 @@ class TestCheckboxConverged(checkbox_converged.ClickAppTestCase):
1082 self.pointing_device.click_object(continue_btn)1082 self.pointing_device.click_object(continue_btn)
1083 category_page = self.app.wait_select_single(1083 category_page = self.app.wait_select_single(
1084 objectName='categorySelectionPage', visible=True)1084 objectName='categorySelectionPage', visible=True)
@@ -1087,7 +1087,7 @@
1087 category_id = '2015.com.canonical.certification::normal'1087 category_id = '2015.com.canonical.certification::normal'
1088 list_item = category_page.wait_select_single(1088 list_item = category_page.wait_select_single(
1089 objectName='listItem', item_mod_id=category_id)1089 objectName='listItem', item_mod_id=category_id)
1090@@ -299,7 +299,7 @@ class RerunTests(checkbox_touch.ClickAppTestCase):1090@@ -299,7 +299,7 @@ class RerunTests(checkbox_converged.ClickAppTestCase):
1091 self.process_sequence_of_clicks_on_pages(next_steps)1091 self.process_sequence_of_clicks_on_pages(next_steps)
1092 results_page = self.app.wait_select_single(1092 results_page = self.app.wait_select_single(
1093 objectName='resultsPage', visible=True)1093 objectName='resultsPage', visible=True)
@@ -1096,7 +1096,7 @@
1096 # we now should see a re-run screen; let's select the only test1096 # we now should see a re-run screen; let's select the only test
1097 rerun_page = self.app.wait_select_single(1097 rerun_page = self.app.wait_select_single(
1098 objectName='rerunSelectionPage', visible=True)1098 objectName='rerunSelectionPage', visible=True)
1099@@ -313,7 +313,7 @@ class RerunTests(checkbox_touch.ClickAppTestCase):1099@@ -313,7 +313,7 @@ class RerunTests(checkbox_converged.ClickAppTestCase):
1100 self.process_sequence_of_clicks_on_pages(next_steps)1100 self.process_sequence_of_clicks_on_pages(next_steps)
1101 results_page = self.app.wait_select_single(1101 results_page = self.app.wait_select_single(
1102 objectName='resultsPage', visible=True)1102 objectName='resultsPage', visible=True)
@@ -1105,7 +1105,7 @@
1105 # we should see the re-run screen again1105 # we should see the re-run screen again
1106 rerun_page = self.app.wait_select_single(1106 rerun_page = self.app.wait_select_single(
1107 objectName='rerunSelectionPage', visible=True)1107 objectName='rerunSelectionPage', visible=True)
1108@@ -333,7 +333,7 @@ class RerunTests(checkbox_touch.ClickAppTestCase):1108@@ -333,7 +333,7 @@ class RerunTests(checkbox_converged.ClickAppTestCase):
1109 self.process_sequence_of_clicks_on_pages(next_steps)1109 self.process_sequence_of_clicks_on_pages(next_steps)
1110 results_page = self.app.wait_select_single(1110 results_page = self.app.wait_select_single(
1111 objectName='resultsPage', visible=True)1111 objectName='resultsPage', visible=True)
@@ -1114,8 +1114,8 @@
1114 # we now should see a re-run screen; let's select the only test1114 # we now should see a re-run screen; let's select the only test
1115 rerun_page = self.app.wait_select_single(1115 rerun_page = self.app.wait_select_single(
1116 objectName='rerunSelectionPage', visible=True)1116 objectName='rerunSelectionPage', visible=True)
1117--- a/checkbox-touch/components/DialogMgr.qml1117--- a/converged/components/DialogMgr.qml
1118+++ b/checkbox-touch/components/DialogMgr.qml1118+++ b/converged/components/DialogMgr.qml
1119@@ -19,8 +19,8 @@1119@@ -19,8 +19,8 @@
1120 * along with this program. If not, see <http://www.gnu.org/licenses/>.1120 * along with this program. If not, see <http://www.gnu.org/licenses/>.
1121 */1121 */
11221122
=== modified file 'debian/rules'
--- debian/rules 2015-07-07 14:42:13 +0000
+++ debian/rules 2016-09-29 12:09:15 +0000
@@ -2,7 +2,7 @@
2export LANG=2export LANG=
3export LANGUAGE=3export LANGUAGE=
4export http_proxy=http://127.0.0.1:94export http_proxy=http://127.0.0.1:9
5PPA_DISPLACEMENT=checkbox-touch5PPA_DISPLACEMENT=converged
66
7%:7%:
8 dh $@ --sourcedirectory=$(PPA_DISPLACEMENT)8 dh $@ --sourcedirectory=$(PPA_DISPLACEMENT)

Subscribers

People subscribed via source and target branches