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
=== modified file 'debian/changelog'
--- debian/changelog 2016-06-28 06:20:19 +0000
+++ debian/changelog 2016-09-22 16:58:43 +0000
@@ -1,3 +1,22 @@
1biometryd (0.0.1+16.10.20160628-0ubuntu4) yakkety; urgency=medium
2
3 * Skip qml test on powerpc, segfaults. LP: #1606927
4
5 -- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 18 Aug 2016 15:44:55 +0100
6
7biometryd (0.0.1+16.10.20160628-0ubuntu3) yakkety; urgency=medium
8
9 * Cast enum to int, to use in another enum. Fixes FTBFS with gcc6.
10 * Rebuild for boost soname change.
11
12 -- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 18 Aug 2016 11:13:07 +0100
13
14biometryd (0.0.1+16.10.20160628-0ubuntu2) yakkety; urgency=medium
15
16 * No-change rebuild for boost soname change.
17
18 -- Matthias Klose <doko@ubuntu.com> Thu, 04 Aug 2016 08:11:16 +0000
19
1biometryd (0.0.1+16.10.20160628-0ubuntu1) yakkety; urgency=medium20biometryd (0.0.1+16.10.20160628-0ubuntu1) yakkety; urgency=medium
221
3 * Add an initial snapcraft.yaml setup for biometryd.22 * Add an initial snapcraft.yaml setup for biometryd.
423
=== modified file 'debian/control'
--- debian/control 2016-05-11 20:58:11 +0000
+++ debian/control 2016-09-22 16:58:43 +0000
@@ -37,7 +37,7 @@
37# upstream branch37# upstream branch
38Vcs-Bzr: lp:biometryd38Vcs-Bzr: lp:biometryd
3939
40Package: libbiometryd040Package: libbiometryd1
41Architecture: any41Architecture: any
42Multi-Arch: same42Multi-Arch: same
43Pre-Depends: ${misc:Pre-Depends},43Pre-Depends: ${misc:Pre-Depends},
@@ -56,7 +56,7 @@
56Architecture: any56Architecture: any
57Multi-Arch: same57Multi-Arch: same
58Pre-Depends: ${misc:Pre-Depends},58Pre-Depends: ${misc:Pre-Depends},
59Depends: libbiometryd0 (= ${binary:Version}),59Depends: libbiometryd1 (= ${binary:Version}),
60 ${misc:Depends},60 ${misc:Depends},
61Description: biometryd mediates/multiplexes to biometric devices - runtime library 61Description: biometryd mediates/multiplexes to biometric devices - runtime library
62 biometryd mediates and multiplexes access to biometric devices present on the system,62 biometryd mediates and multiplexes access to biometric devices present on the system,
@@ -69,7 +69,7 @@
69Package: biometryd-bin69Package: biometryd-bin
70Section: devel70Section: devel
71Architecture: any71Architecture: any
72Depends: libbiometryd0 (= ${binary:Version}),72Depends: libbiometryd1 (= ${binary:Version}),
73 ${misc:Depends},73 ${misc:Depends},
74Description: biometryd mediates/multiplexes to biometric devices - daemon/helper binaries74Description: biometryd mediates/multiplexes to biometric devices - daemon/helper binaries
75 biometryd mediates and multiplexes access to biometric devices present on the system,75 biometryd mediates and multiplexes access to biometric devices present on the system,
@@ -81,7 +81,7 @@
81Package: qml-module-biometryd81Package: qml-module-biometryd
82Section: devel82Section: devel
83Architecture: any83Architecture: any
84Depends: libbiometryd0 (= ${binary:Version}),84Depends: libbiometryd1 (= ${binary:Version}),
85 ${misc:Depends},85 ${misc:Depends},
86Description: biometryd mediates/multiplexes to biometric devices - QML bindings86Description: biometryd mediates/multiplexes to biometric devices - QML bindings
87 biometryd mediates and multiplexes access to biometric devices present on the system,87 biometryd mediates and multiplexes access to biometric devices present on the system,
8888
=== modified file 'debian/rules'
--- debian/rules 2016-05-02 06:16:01 +0000
+++ debian/rules 2016-09-22 16:58:43 +0000
@@ -24,7 +24,7 @@
24 dh $@ --fail-missing24 dh $@ --fail-missing
2525
26override_dh_auto_configure:26override_dh_auto_configure:
27 dh_auto_configure -- -DBIOMETRYD_VERSION_MAJOR=$(major) -DBIOMETRYD_VERSION_MINOR=$(minor) -DBIOMETRYD_VERSION_PATCH=$(patch)27 dh_auto_configure -- -DBIOMETRYD_VERSION_MAJOR=$(major) -DBIOMETRYD_VERSION_MINOR=$(minor) -DBIOMETRYD_VERSION_PATCH=$(patch) -DDEB_TARGET_ARCH=$(DEB_TARGET_ARCH)
2828
29override_dh_auto_clean:29override_dh_auto_clean:
30 /bin/sh $(CURDIR)/debian/gen-debian-files.sh $(CURDIR)/debian30 /bin/sh $(CURDIR)/debian/gen-debian-files.sh $(CURDIR)/debian
3131
=== modified file 'src/biometry/qml/Biometryd/fingerprint_reader.h'
--- src/biometry/qml/Biometryd/fingerprint_reader.h 2016-05-04 14:06:05 +0000
+++ src/biometry/qml/Biometryd/fingerprint_reader.h 2016-09-22 16:58:43 +0000
@@ -44,15 +44,15 @@
44 /// @brief Direction enumerates all known direction hints.44 /// @brief Direction enumerates all known direction hints.
45 enum class Direction45 enum class Direction
46 {46 {
47 NotAvailable = biometry::devices::FingerprintReader::Direction::not_available,47 NotAvailable = int(biometry::devices::FingerprintReader::Direction::not_available),
48 SouthWest = biometry::devices::FingerprintReader::Direction::south_west,48 SouthWest = int(biometry::devices::FingerprintReader::Direction::south_west),
49 South = biometry::devices::FingerprintReader::Direction::south,49 South = int(biometry::devices::FingerprintReader::Direction::south),
50 SouthEast = biometry::devices::FingerprintReader::Direction::south_east,50 SouthEast = int(biometry::devices::FingerprintReader::Direction::south_east),
51 NorthWest = biometry::devices::FingerprintReader::Direction::north_west,51 NorthWest = int(biometry::devices::FingerprintReader::Direction::north_west),
52 North = biometry::devices::FingerprintReader::Direction::north,52 North = int(biometry::devices::FingerprintReader::Direction::north),
53 NorthEast = biometry::devices::FingerprintReader::Direction::north_east,53 NorthEast = int(biometry::devices::FingerprintReader::Direction::north_east),
54 East = biometry::devices::FingerprintReader::Direction::east,54 East = int(biometry::devices::FingerprintReader::Direction::east),
55 West = biometry::devices::FingerprintReader::Direction::west55 West = int(biometry::devices::FingerprintReader::Direction::west)
56 };56 };
5757
58 /// @brief FingerprintReader initializes a new instance with the given parent.58 /// @brief FingerprintReader initializes a new instance with the given parent.
5959
=== modified file 'tests/CMakeLists.txt'
--- tests/CMakeLists.txt 2016-06-21 09:52:26 +0000
+++ tests/CMakeLists.txt 2016-09-22 16:58:43 +0000
@@ -75,6 +75,8 @@
75BIOMETRYD_ADD_TEST(test_cmds_run cmds/test_run.cpp)75BIOMETRYD_ADD_TEST(test_cmds_run cmds/test_run.cpp)
76BIOMETRYD_ADD_TEST(test_cmds_test cmds/test_test.cpp)76BIOMETRYD_ADD_TEST(test_cmds_test cmds/test_test.cpp)
7777
78if ("DEB_TARGET_ARCH" STREQUAL "powerpc")
79else()
78add_executable(test_qml_plugin test_qml_plugin.cpp)80add_executable(test_qml_plugin test_qml_plugin.cpp)
79qt5_use_modules(test_qml_plugin Core Qml Quick QuickTest)81qt5_use_modules(test_qml_plugin Core Qml Quick QuickTest)
80add_test(test_qml_plugin test_qml_plugin)82add_test(test_qml_plugin test_qml_plugin)
@@ -84,4 +86,6 @@
84foreach (QML_FILE ${BIOMETRYD_QML_TEST_FILES})86foreach (QML_FILE ${BIOMETRYD_QML_TEST_FILES})
85 message(INFO ${QML_FILE})87 message(INFO ${QML_FILE})
86 configure_file(${QML_FILE} ${QML_FILE} COPYONLY)88 configure_file(${QML_FILE} ${QML_FILE} COPYONLY)
87endforeach(QML_FILE)89 endforeach(QML_FILE)
90endif()
91

Subscribers

People subscribed via source and target branches