Merge lp:~ken-vandine/biometryd/sync_yakkety_to_trunk into lp:biometryd

Proposed by Ken VanDine
Status: Merged
Merged at revision: 40
Proposed branch: lp:~ken-vandine/biometryd/sync_yakkety_to_trunk
Merge into: lp:biometryd
Diff against target: 129 lines (+38/-15)
5 files modified
debian/changelog (+19/-0)
debian/control (+4/-4)
debian/rules (+1/-1)
src/biometry/qml/Biometryd/fingerprint_reader.h (+9/-9)
tests/CMakeLists.txt (+5/-1)
To merge this branch: bzr merge lp:~ken-vandine/biometryd/sync_yakkety_to_trunk
Reviewer Review Type Date Requested Status
Ubuntu Phablet Team Pending
Review via email: mp+306513@code.launchpad.net

Commit message

Sync changes that have already landed in yakkety to trunk

Description of the change

Sync changes that have already landed in yakkety to trunk

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
1=== modified file 'debian/changelog'
2--- debian/changelog 2016-06-28 06:20:19 +0000
3+++ debian/changelog 2016-09-22 16:58:43 +0000
4@@ -1,3 +1,22 @@
5+biometryd (0.0.1+16.10.20160628-0ubuntu4) yakkety; urgency=medium
6+
7+ * Skip qml test on powerpc, segfaults. LP: #1606927
8+
9+ -- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 18 Aug 2016 15:44:55 +0100
10+
11+biometryd (0.0.1+16.10.20160628-0ubuntu3) yakkety; urgency=medium
12+
13+ * Cast enum to int, to use in another enum. Fixes FTBFS with gcc6.
14+ * Rebuild for boost soname change.
15+
16+ -- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 18 Aug 2016 11:13:07 +0100
17+
18+biometryd (0.0.1+16.10.20160628-0ubuntu2) yakkety; urgency=medium
19+
20+ * No-change rebuild for boost soname change.
21+
22+ -- Matthias Klose <doko@ubuntu.com> Thu, 04 Aug 2016 08:11:16 +0000
23+
24 biometryd (0.0.1+16.10.20160628-0ubuntu1) yakkety; urgency=medium
25
26 * Add an initial snapcraft.yaml setup for biometryd.
27
28=== modified file 'debian/control'
29--- debian/control 2016-05-11 20:58:11 +0000
30+++ debian/control 2016-09-22 16:58:43 +0000
31@@ -37,7 +37,7 @@
32 # upstream branch
33 Vcs-Bzr: lp:biometryd
34
35-Package: libbiometryd0
36+Package: libbiometryd1
37 Architecture: any
38 Multi-Arch: same
39 Pre-Depends: ${misc:Pre-Depends},
40@@ -56,7 +56,7 @@
41 Architecture: any
42 Multi-Arch: same
43 Pre-Depends: ${misc:Pre-Depends},
44-Depends: libbiometryd0 (= ${binary:Version}),
45+Depends: libbiometryd1 (= ${binary:Version}),
46 ${misc:Depends},
47 Description: biometryd mediates/multiplexes to biometric devices - runtime library
48 biometryd mediates and multiplexes access to biometric devices present on the system,
49@@ -69,7 +69,7 @@
50 Package: biometryd-bin
51 Section: devel
52 Architecture: any
53-Depends: libbiometryd0 (= ${binary:Version}),
54+Depends: libbiometryd1 (= ${binary:Version}),
55 ${misc:Depends},
56 Description: biometryd mediates/multiplexes to biometric devices - daemon/helper binaries
57 biometryd mediates and multiplexes access to biometric devices present on the system,
58@@ -81,7 +81,7 @@
59 Package: qml-module-biometryd
60 Section: devel
61 Architecture: any
62-Depends: libbiometryd0 (= ${binary:Version}),
63+Depends: libbiometryd1 (= ${binary:Version}),
64 ${misc:Depends},
65 Description: biometryd mediates/multiplexes to biometric devices - QML bindings
66 biometryd mediates and multiplexes access to biometric devices present on the system,
67
68=== modified file 'debian/rules'
69--- debian/rules 2016-05-02 06:16:01 +0000
70+++ debian/rules 2016-09-22 16:58:43 +0000
71@@ -24,7 +24,7 @@
72 dh $@ --fail-missing
73
74 override_dh_auto_configure:
75- dh_auto_configure -- -DBIOMETRYD_VERSION_MAJOR=$(major) -DBIOMETRYD_VERSION_MINOR=$(minor) -DBIOMETRYD_VERSION_PATCH=$(patch)
76+ dh_auto_configure -- -DBIOMETRYD_VERSION_MAJOR=$(major) -DBIOMETRYD_VERSION_MINOR=$(minor) -DBIOMETRYD_VERSION_PATCH=$(patch) -DDEB_TARGET_ARCH=$(DEB_TARGET_ARCH)
77
78 override_dh_auto_clean:
79 /bin/sh $(CURDIR)/debian/gen-debian-files.sh $(CURDIR)/debian
80
81=== modified file 'src/biometry/qml/Biometryd/fingerprint_reader.h'
82--- src/biometry/qml/Biometryd/fingerprint_reader.h 2016-05-04 14:06:05 +0000
83+++ src/biometry/qml/Biometryd/fingerprint_reader.h 2016-09-22 16:58:43 +0000
84@@ -44,15 +44,15 @@
85 /// @brief Direction enumerates all known direction hints.
86 enum class Direction
87 {
88- NotAvailable = biometry::devices::FingerprintReader::Direction::not_available,
89- SouthWest = biometry::devices::FingerprintReader::Direction::south_west,
90- South = biometry::devices::FingerprintReader::Direction::south,
91- SouthEast = biometry::devices::FingerprintReader::Direction::south_east,
92- NorthWest = biometry::devices::FingerprintReader::Direction::north_west,
93- North = biometry::devices::FingerprintReader::Direction::north,
94- NorthEast = biometry::devices::FingerprintReader::Direction::north_east,
95- East = biometry::devices::FingerprintReader::Direction::east,
96- West = biometry::devices::FingerprintReader::Direction::west
97+ NotAvailable = int(biometry::devices::FingerprintReader::Direction::not_available),
98+ SouthWest = int(biometry::devices::FingerprintReader::Direction::south_west),
99+ South = int(biometry::devices::FingerprintReader::Direction::south),
100+ SouthEast = int(biometry::devices::FingerprintReader::Direction::south_east),
101+ NorthWest = int(biometry::devices::FingerprintReader::Direction::north_west),
102+ North = int(biometry::devices::FingerprintReader::Direction::north),
103+ NorthEast = int(biometry::devices::FingerprintReader::Direction::north_east),
104+ East = int(biometry::devices::FingerprintReader::Direction::east),
105+ West = int(biometry::devices::FingerprintReader::Direction::west)
106 };
107
108 /// @brief FingerprintReader initializes a new instance with the given parent.
109
110=== modified file 'tests/CMakeLists.txt'
111--- tests/CMakeLists.txt 2016-06-21 09:52:26 +0000
112+++ tests/CMakeLists.txt 2016-09-22 16:58:43 +0000
113@@ -75,6 +75,8 @@
114 BIOMETRYD_ADD_TEST(test_cmds_run cmds/test_run.cpp)
115 BIOMETRYD_ADD_TEST(test_cmds_test cmds/test_test.cpp)
116
117+if ("DEB_TARGET_ARCH" STREQUAL "powerpc")
118+else()
119 add_executable(test_qml_plugin test_qml_plugin.cpp)
120 qt5_use_modules(test_qml_plugin Core Qml Quick QuickTest)
121 add_test(test_qml_plugin test_qml_plugin)
122@@ -84,4 +86,6 @@
123 foreach (QML_FILE ${BIOMETRYD_QML_TEST_FILES})
124 message(INFO ${QML_FILE})
125 configure_file(${QML_FILE} ${QML_FILE} COPYONLY)
126-endforeach(QML_FILE)
127+ endforeach(QML_FILE)
128+endif()
129+

Subscribers

People subscribed via source and target branches