Merge lp:~mardy/signon-keyring-extension/lp1172710 into lp:signon-keyring-extension

Proposed by Alberto Mardegan
Status: Rejected
Rejected by: Ken VanDine
Proposed branch: lp:~mardy/signon-keyring-extension/lp1172710
Merge into: lp:signon-keyring-extension
Diff against target: 55 lines (+13/-2)
4 files modified
common-vars.pri (+1/-1)
debian/changelog (+8/-0)
debian/control (+1/-0)
src/secrets-storage.cpp (+3/-1)
To merge this branch: bzr merge lp:~mardy/signon-keyring-extension/lp1172710
Reviewer Review Type Date Requested Status
Ken VanDine Disapprove
PS Jenkins bot (community) continuous-integration Needs Fixing
Review via email: mp+161097@code.launchpad.net

Commit message

* Remove record when signond asks to remove the data for all authentication
  methods (LP: #1172710)
* Build with Qt5 by default

Description of the change

* Remove record when signond asks to remove the data for all authentication
  methods (LP: #1172710)
* Build with Qt5 by default

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
Ken VanDine (ken-vandine) wrote :

Looks good

review: Approve
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: Needs Fixing (continuous-integration)
Revision history for this message
Ken VanDine (ken-vandine) wrote :

This has lagged too long and now has conflicts. The autolanding failure was due to parts of the stack pulling in qt4 deps, which has since been resolved. I've cleaned up the conflicts and resubmitted at https://code.launchpad.net/~ken-vandine/signon-keyring-extension/0.5.1/+merge/167074

review: Disapprove

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'common-vars.pri'
2--- common-vars.pri 2012-08-14 13:27:04 +0000
3+++ common-vars.pri 2013-04-26 11:34:28 +0000
4@@ -14,7 +14,7 @@
5 # Project version
6 # remember to update debian/* files if you changes this
7 #-----------------------------------------------------------------------------
8-PROJECT_VERSION = 0.4
9+PROJECT_VERSION = 0.5
10
11 # End of File
12
13
14=== modified file 'debian/changelog'
15--- debian/changelog 2012-12-06 05:01:02 +0000
16+++ debian/changelog 2013-04-26 11:34:28 +0000
17@@ -1,3 +1,11 @@
18+signon-keyring-extension (0.5-0ubuntu1) UNRELEASED; urgency=low
19+
20+ * Remove record when signond asks to remove the data for all authentication
21+ methods (LP: #1172710)
22+ * Build with Qt5 by default
23+
24+ -- Alberto Mardegan <alberto.mardegan@canonical.com> Fri, 26 Apr 2013 14:28:04 +0300
25+
26 signon-keyring-extension (0.4daily12.12.06-0ubuntu1) raring; urgency=low
27
28 * Automatic snapshot from revision 22
29
30=== modified file 'debian/control'
31--- debian/control 2012-11-21 18:52:27 +0000
32+++ debian/control 2013-04-26 11:34:28 +0000
33@@ -4,6 +4,7 @@
34 Build-Depends: debhelper (>= 9),
35 libgnome-keyring-dev,
36 pkg-config,
37+ qt5-default,
38 signond-dev,
39 Standards-Version: 3.9.3
40 Section: gnome
41
42=== modified file 'src/secrets-storage.cpp'
43--- src/secrets-storage.cpp 2012-11-06 10:41:11 +0000
44+++ src/secrets-storage.cpp 2013-04-26 11:34:28 +0000
45@@ -147,7 +147,9 @@
46
47 bool SecretsStorage::removeData(quint32 id, quint32 method)
48 {
49- return removeSecrets(Data, id, method, IdField | MethodField | TypeField);
50+ return (method != 0) ?
51+ removeSecrets(Data, id, method, IdField | MethodField | TypeField) :
52+ removeCredentials(id);
53 }
54
55 bool SecretsStorage::storeSecret(SignonSecretType type,

Subscribers

People subscribed via source and target branches