Merge lp:~online-accounts/signon/packaging into lp:signon

Proposed by Alberto Mardegan
Status: Merged
Approved by: David Barth
Approved revision: no longer in the source branch.
Merged at revision: 628
Proposed branch: lp:~online-accounts/signon/packaging
Merge into: lp:signon
Diff against target: 363 lines (+94/-61)
14 files modified
README (+0/-1)
README.md (+23/-0)
common-vars.pri (+1/-1)
debian/changelog (+9/-0)
debian/control (+42/-39)
debian/docs (+1/-1)
debian/libsignon-qt-dev.install (+1/-1)
debian/libsignon-qt5-dev.install (+1/-1)
debian/signon-plugin-password.install (+1/-1)
debian/signon-plugins-dev.install (+2/-2)
debian/signond-dev.install (+6/-8)
debian/signond.install (+3/-3)
lib/SignOn/identityimpl.cpp (+1/-1)
lib/plugins/SignOn/uisessiondata.h (+3/-2)
To merge this branch: bzr merge lp:~online-accounts/signon/packaging
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Online Accounts Pending
Review via email: mp+272616@code.launchpad.net

Commit message

New upstream release

- Add a couple of error codes for SignOn UI (network and SSL errors)
- lib: remove unnecessary semicolon after namespace
  Fixes a GCC warning with -Wpedantic.

Description of the change

New upstream release

- Add a couple of error codes for SignOn UI (network and SSL errors)
- lib: remove unnecessary semicolon after namespace
  Fixes a GCC warning with -Wpedantic.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
lp:~online-accounts/signon/packaging updated
628. By Alberto Mardegan

New upstream release

- Add a couple of error codes for SignOn UI (network and SSL errors)
- lib: remove unnecessary semicolon after namespace
  Fixes a GCC warning with -Wpedantic.
 Fixes: #1415492
Approved by: PS Jenkins bot

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== removed file 'README'
--- README 2010-04-01 11:58:48 +0000
+++ README 1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
1
20
=== added file 'README.md'
--- README.md 1970-01-01 00:00:00 +0000
+++ README.md 2015-10-01 10:44:18 +0000
@@ -0,0 +1,23 @@
1SignOn daemon
2=============
3
4The SignOn daemon is a D-Bus service which performs user authentication on
5behalf of its clients. There are currently authentication plugins for OAuth 1.0
6and 2.0, SASL, Digest-MD5, and plain username/password combination.
7
8
9License
10-------
11
12See COPYING file.
13
14
15Build instructions
16------------------
17
18This project depends on Qt 5. To build it, run
19```
20qmake
21make
22make install
23```
024
=== modified file 'common-vars.pri'
--- common-vars.pri 2014-08-25 14:33:29 +0000
+++ common-vars.pri 2015-10-01 10:44:18 +0000
@@ -14,7 +14,7 @@
14# Project version14# Project version
15# remember to update debian/* files if you changes this15# remember to update debian/* files if you changes this
16#-----------------------------------------------------------------------------16#-----------------------------------------------------------------------------
17PROJECT_VERSION = 8.5717PROJECT_VERSION = 8.58
1818
19#-----------------------------------------------------------------------------19#-----------------------------------------------------------------------------
20# Library version20# Library version
2121
=== modified file 'debian/changelog'
--- debian/changelog 2015-06-16 11:34:22 +0000
+++ debian/changelog 2015-10-01 10:44:18 +0000
@@ -1,3 +1,12 @@
1signon (8.58-0ubuntu1) UNRELEASED; urgency=medium
2
3 * New upstream release
4 - Add a couple of error codes for SignOn UI (network and SSL errors)
5 - lib: remove unnecessary semicolon after namespace
6 Fixes a GCC warning with -Wpedantic.
7
8 -- Alberto Mardegan <alberto.mardegan@canonical.com> Mon, 28 Sep 2015 17:49:43 +0300
9
1signon (8.57+15.10.20150616-0ubuntu1) wily; urgency=medium10signon (8.57+15.10.20150616-0ubuntu1) wily; urgency=medium
211
3 [ Alberto Mardegan ]12 [ Alberto Mardegan ]
413
=== modified file 'debian/control'
--- debian/control 2015-02-02 09:45:36 +0000
+++ debian/control 2015-10-01 10:44:18 +0000
@@ -2,8 +2,9 @@
2Section: gnome2Section: gnome
3Priority: optional3Priority: optional
4Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com>4Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com>
5Build-Depends: debhelper (>= 9),5Build-Depends: dbus-test-runner,
6 pkg-config,6 debhelper (>= 9),
7 dh-migrations,
7 doxygen,8 doxygen,
8 graphviz,9 graphviz,
9 libdbus-1-dev,10 libdbus-1-dev,
@@ -12,25 +13,25 @@
12 libqt4-sql-sqlite,13 libqt4-sql-sqlite,
13 libqt5sql5-sqlite,14 libqt5sql5-sqlite,
14 libssl-dev,15 libssl-dev,
16 pkg-config,
15 qt4-dev-tools,17 qt4-dev-tools,
16 qt4-qmake,18 qt4-qmake,
17 qt5-qmake,19 qt5-qmake,
18 qtbase5-dev,20 qtbase5-dev,
19 qtchooser,21 qtchooser,
20 dh-migrations,22Standards-Version: 3.9.5
21 dbus-test-runner,
22Standards-Version: 3.9.4
23Homepage: http://code.google.com/p/accounts-sso/23Homepage: http://code.google.com/p/accounts-sso/
24# If you aren't a member of ~online-accounts but need to upload packaging changes,24# if you don't have have commit access to this branch but would like to upload
25# just go ahead. ~online-accounts will notice and sync up the code again.25# directly to Ubuntu, don't worry: your changes will be merged back into the
26Vcs-Bzr: https://code.launchpad.net/~online-accounts/signon/trunk26# upstream branch
27Vcs-Bzr: lp:signon
2728
28Package: libsignon-qt129Package: libsignon-qt1
29Architecture: any30Architecture: any
30Section: libs31Section: libs
31Priority: optional32Priority: optional
32Depends: ${shlibs:Depends},33Depends: ${misc:Depends},
33 ${misc:Depends},34 ${shlibs:Depends},
34Multi-Arch: same35Multi-Arch: same
35Description: Single Sign On framework36Description: Single Sign On framework
36 Framework to provide credential storage and authentication service.37 Framework to provide credential storage and authentication service.
@@ -39,19 +40,19 @@
39Architecture: any40Architecture: any
40Priority: optional41Priority: optional
41Section: libdevel42Section: libdevel
42Depends: libsignon-qt1 (= ${binary:Version}),43Depends: libqt4-dev (>= 4.5),
44 libsignon-qt1 (= ${binary:Version}),
45 ${misc:Depends},
43 ${shlibs:Depends},46 ${shlibs:Depends},
44 ${misc:Depends},
45 libqt4-dev (>= 4.5),
46Description: Development files for libsignon-qt47Description: Development files for libsignon-qt
47 Headers and static libraries for the libsignon-qt library48 Headers and static libraries for the libsignon-qt library.
4849
49Package: libsignon-qt5-150Package: libsignon-qt5-1
50Architecture: any51Architecture: any
51Section: libs52Section: libs
52Priority: optional53Priority: optional
53Depends: ${shlibs:Depends},54Depends: ${misc:Depends},
54 ${misc:Depends},55 ${shlibs:Depends},
55Multi-Arch: same56Multi-Arch: same
56Description: Single Sign On framework57Description: Single Sign On framework
57 Framework to provide credential storage and authentication service.58 Framework to provide credential storage and authentication service.
@@ -61,9 +62,9 @@
61Priority: optional62Priority: optional
62Section: libdevel63Section: libdevel
63Depends: libsignon-qt5-1 (= ${binary:Version}),64Depends: libsignon-qt5-1 (= ${binary:Version}),
65 qtbase5-dev,
66 ${misc:Depends},
64 ${shlibs:Depends},67 ${shlibs:Depends},
65 ${misc:Depends},
66 qtbase5-dev,
67Description: Development files for libsignon-qt68Description: Development files for libsignon-qt
68 Headers and static libraries for the libsignon-qt library69 Headers and static libraries for the libsignon-qt library
6970
@@ -80,8 +81,8 @@
80Architecture: any81Architecture: any
81Section: libs82Section: libs
82Priority: optional83Priority: optional
83Depends: ${shlibs:Depends},84Depends: ${misc:Depends},
84 ${misc:Depends},85 ${shlibs:Depends},
85Multi-Arch: same86Multi-Arch: same
86Description: Single Sign On framework87Description: Single Sign On framework
87 Framework to provide credential storage and authentication service.88 Framework to provide credential storage and authentication service.
@@ -90,8 +91,8 @@
90Architecture: any91Architecture: any
91Section: libs92Section: libs
92Priority: optional93Priority: optional
93Depends: ${shlibs:Depends},94Depends: ${misc:Depends},
94 ${misc:Depends},95 ${shlibs:Depends},
95Multi-Arch: same96Multi-Arch: same
96Description: Single Sign On framework97Description: Single Sign On framework
97 Framework to provide credential storage and authentication service.98 Framework to provide credential storage and authentication service.
@@ -100,12 +101,14 @@
100Architecture: any101Architecture: any
101Section: gnome102Section: gnome
102Priority: optional103Priority: optional
103Depends: ${shlibs:Depends},104Depends: libqt5sql5-sqlite,
104 ${misc:Depends},105 ${misc:Depends},
105 libqt5sql5-sqlite,106 ${shlibs:Depends},
106Breaks: signon-saslplugin (<< 8.40), signon-plugins107Breaks: signon-plugins,
107Replaces: signon-saslplugin (<< 8.40), signon-plugins108 signon-saslplugin (<< 8.40),
108Recommends: signon-ui109Replaces: signon-plugins,
110 signon-saslplugin (<< 8.40),
111Recommends: signon-ui,
109Description: Single Sign On framework112Description: Single Sign On framework
110 Framework to provide credential storage and authentication service.113 Framework to provide credential storage and authentication service.
111114
@@ -113,12 +116,12 @@
113Architecture: any116Architecture: any
114Priority: optional117Priority: optional
115Section: libdevel118Section: libdevel
116Depends: signond (= ${binary:Version}),119Depends: qtbase5-dev,
120 signond (= ${binary:Version}),
121 ${misc:Depends},
117 ${shlibs:Depends},122 ${shlibs:Depends},
118 ${misc:Depends},123Breaks: signon-saslplugin-dev (<< 8.40),
119 qtbase5-dev,124Replaces: signon-saslplugin-dev (<< 8.40),
120Breaks: signon-saslplugin-dev (<< 8.40)
121Replaces: signon-saslplugin-dev (<< 8.40)
122Description: Development files for Signon client library development125Description: Development files for Signon client library development
123 Common headers and DBUS interfaces definition files for the Signon Framework.126 Common headers and DBUS interfaces definition files for the Signon Framework.
124127
@@ -137,8 +140,8 @@
137Priority: optional140Priority: optional
138Depends: libsignon-plugins-common1 (= ${binary:Version}),141Depends: libsignon-plugins-common1 (= ${binary:Version}),
139 libsignon-qt5-dev,142 libsignon-qt5-dev,
143 ${misc:Depends},
140 ${shlibs:Depends},144 ${shlibs:Depends},
141 ${misc:Depends},
142Description: Development files for Single Sign On plugins145Description: Development files for Single Sign On plugins
143 Headers and static libraries for Single Sign On plugin development.146 Headers and static libraries for Single Sign On plugin development.
144147
@@ -155,11 +158,11 @@
155Architecture: any158Architecture: any
156Section: libs159Section: libs
157Priority: optional160Priority: optional
158Depends: ${shlibs:Depends},161Depends: signond,
159 ${misc:Depends},162 ${misc:Depends},
160 signond,163 ${shlibs:Depends},
161Replaces: signon-passwordplugin164Replaces: signon-passwordplugin,
162Conflicts: signon-passwordplugin165Conflicts: signon-passwordplugin,
163Description: Plain Password plugin for Single Sign On166Description: Plain Password plugin for Single Sign On
164 Password plugin for Single Sign On.167 Password plugin for Single Sign On.
165168
@@ -167,8 +170,8 @@
167Architecture: any170Architecture: any
168Section: libs171Section: libs
169Priority: optional172Priority: optional
170Depends: ${shlibs:Depends},173Depends: signond,
171 ${misc:Depends},174 ${misc:Depends},
172 signond,175 ${shlibs:Depends},
173Description: Test plugin for Single Sign On176Description: Test plugin for Single Sign On
174 Test plugin for Single Sign On.177 Test plugin for Single Sign On.
175178
=== modified file 'debian/docs'
--- debian/docs 2013-01-21 23:11:25 +0000
+++ debian/docs 2015-10-01 10:44:18 +0000
@@ -1,2 +1,2 @@
1README1README.md
2TODO2TODO
33
=== modified file 'debian/libsignon-qt-dev.install'
--- debian/libsignon-qt-dev.install 2014-08-25 10:49:45 +0000
+++ debian/libsignon-qt-dev.install 2015-10-01 10:44:18 +0000
@@ -1,4 +1,4 @@
1usr/include/signon-qt/SignOn/*
1usr/lib/*/cmake/SignOnQt4/2usr/lib/*/cmake/SignOnQt4/
2usr/lib/*/libsignon-qt.so3usr/lib/*/libsignon-qt.so
3usr/lib/*/pkgconfig/libsignon-qt.pc4usr/lib/*/pkgconfig/libsignon-qt.pc
4usr/include/signon-qt/SignOn/*
55
=== modified file 'debian/libsignon-qt5-dev.install'
--- debian/libsignon-qt5-dev.install 2014-08-26 08:23:49 +0000
+++ debian/libsignon-qt5-dev.install 2015-10-01 10:44:18 +0000
@@ -1,4 +1,4 @@
1usr/include/signon-qt5/SignOn/*
1usr/lib/*/cmake/SignOnQt5/2usr/lib/*/cmake/SignOnQt5/
2usr/lib/*/libsignon-qt5.so3usr/lib/*/libsignon-qt5.so
3usr/lib/*/pkgconfig/libsignon-qt5.pc4usr/lib/*/pkgconfig/libsignon-qt5.pc
4usr/include/signon-qt5/SignOn/*
55
=== modified file 'debian/signon-plugin-password.install'
--- debian/signon-plugin-password.install 2014-08-25 10:49:45 +0000
+++ debian/signon-plugin-password.install 2015-10-01 10:44:18 +0000
@@ -1,1 +1,1 @@
1usr/lib/*/signon/libpasswordplugin.so
2\ No newline at end of file1\ No newline at end of file
2usr/lib/*/signon/libpasswordplugin.so
33
=== modified file 'debian/signon-plugins-dev.install'
--- debian/signon-plugins-dev.install 2014-08-26 08:23:49 +0000
+++ debian/signon-plugins-dev.install 2015-10-01 10:44:18 +0000
@@ -1,6 +1,6 @@
1usr/include/signon-plugins/SignOn
2usr/include/signon-plugins/passwordplugin.h
1usr/lib/*/libsignon-plugins.so3usr/lib/*/libsignon-plugins.so
2usr/lib/*/pkgconfig/signon-plugins.pc4usr/lib/*/pkgconfig/signon-plugins.pc
3usr/lib/*/pkgconfig/signon-plugins-common.pc5usr/lib/*/pkgconfig/signon-plugins-common.pc
4usr/include/signon-plugins/SignOn
5usr/include/signon-plugins/passwordplugin.h
6usr/share/doc/signon-plugins-dev/example/*6usr/share/doc/signon-plugins-dev/example/*
77
=== modified file 'debian/signond-dev.install'
--- debian/signond-dev.install 2014-08-25 10:49:45 +0000
+++ debian/signond-dev.install 2015-10-01 10:44:18 +0000
@@ -1,11 +1,9 @@
1usr/include/signon-extension/SignOn/*
2usr/include/signond/*
3usr/lib/*/libsignon-extension.so
4usr/lib/*/libsignon-plugins-common.so
5usr/lib/*/pkgconfig/SignOnExtension.pc
1usr/lib/*/pkgconfig/signond.pc6usr/lib/*/pkgconfig/signond.pc
2usr/lib/*/libsignon-plugins-common.so
3usr/include/signond/*
4usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.AuthService.xml7usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.AuthService.xml
8usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.AuthSession.xml
5usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.Identity.xml9usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.Identity.xml
6usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.SingleSignOn.AuthSession.xml
7
8# extensions
9usr/include/signon-extension/SignOn/*
10usr/lib/*/libsignon-extension.so
11usr/lib/*/pkgconfig/SignOnExtension.pc
1210
=== modified file 'debian/signond.install'
--- debian/signond.install 2013-01-21 23:11:25 +0000
+++ debian/signond.install 2015-10-01 10:44:18 +0000
@@ -1,7 +1,7 @@
1debian/signon-crashdb.conf /etc/apport/crashdb.conf.d/
2debian/source_signon.py usr/share/apport/package-hooks/
3etc/signond.conf
1usr/bin/signond4usr/bin/signond
2usr/bin/signonpluginprocess5usr/bin/signonpluginprocess
3usr/share/dbus-1/services/com.google.code.AccountsSSO.SingleSignOn.service6usr/share/dbus-1/services/com.google.code.AccountsSSO.SingleSignOn.service
4usr/share/dbus-1/services/com.nokia.SingleSignOn.Backup.service7usr/share/dbus-1/services/com.nokia.SingleSignOn.Backup.service
5etc/signond.conf
6debian/signon-crashdb.conf /etc/apport/crashdb.conf.d/
7debian/source_signon.py usr/share/apport/package-hooks/
88
=== modified file 'lib/SignOn/identityimpl.cpp'
--- lib/SignOn/identityimpl.cpp 2013-11-22 14:46:01 +0000
+++ lib/SignOn/identityimpl.cpp 2015-10-01 10:44:18 +0000
@@ -445,7 +445,7 @@
445445
446void IdentityImpl::errorReply(const QDBusError& err)446void IdentityImpl::errorReply(const QDBusError& err)
447{447{
448 TRACE() << err.name();448 TRACE() << err;
449449
450 /* Signon specific errors */450 /* Signon specific errors */
451 if (err.name() == SIGNOND_UNKNOWN_ERR_NAME) {451 if (err.name() == SIGNOND_UNKNOWN_ERR_NAME) {
452452
=== modified file 'lib/plugins/SignOn/uisessiondata.h'
--- lib/plugins/SignOn/uisessiondata.h 2012-04-18 13:06:27 +0000
+++ lib/plugins/SignOn/uisessiondata.h 2015-10-01 10:44:18 +0000
@@ -50,8 +50,9 @@
50 valid. */50 valid. */
51 QUERY_ERROR_REFRESH_FAILED, /**< Refresh failed. */51 QUERY_ERROR_REFRESH_FAILED, /**< Refresh failed. */
52 QUERY_ERROR_FORBIDDEN, /**< Showing ui forbidden by ui policy. */52 QUERY_ERROR_FORBIDDEN, /**< Showing ui forbidden by ui policy. */
53 QUERY_ERROR_FORGOT_PASSWORD /**< User pressed forgot password. */53 QUERY_ERROR_FORGOT_PASSWORD, /**< User pressed forgot password. */
54 //TODO add more errors54 QUERY_ERROR_NETWORK, /**< Network error. */
55 QUERY_ERROR_SSL, /**< SSL error. */
55};56};
5657
57/*!58/*!

Subscribers

No one subscribed via source and target branches