Merge lp:~alecu/unity-scope-click/merge-trunk6 into lp:unity-scope-click/devel

Proposed by Alejandro J. Cura
Status: Merged
Approved by: dobey
Approved revision: 358
Merged at revision: 359
Proposed branch: lp:~alecu/unity-scope-click/merge-trunk6
Merge into: lp:unity-scope-click/devel
Diff against target: 90 lines (+44/-2)
4 files modified
debian/changelog (+33/-0)
debian/control (+3/-0)
debian/rules (+6/-0)
libclickscope/click/interface.cpp (+2/-2)
To merge this branch: bzr merge lp:~alecu/unity-scope-click/merge-trunk6
Reviewer Review Type Date Requested Status
dobey (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+227857@code.launchpad.net

Commit message

Merge tip of trunk

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
dobey (dobey) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2014-07-14 18:38:55 +0000
+++ debian/changelog 2014-07-23 04:11:49 +0000
@@ -1,3 +1,36 @@
1unity-scope-click (0.1+14.10.20140722-0ubuntu1) utopic; urgency=low
2
3 [ Alejandro J. Cura ]
4 * Explicitly select g++ version 4.9 for ABI stability
5
6 -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 22 Jul 2014 18:00:13 +0000
7
8unity-scope-click (0.1+14.10.20140718.1-0ubuntu1) utopic; urgency=medium
9
10 [ Alejandro J. Cura (alecu) ]
11 * New upstream release.
12 - Use departments db to provide departments for installed apps.
13 - Populate departments database from the store scope.
14 - A tool for initialization or update of the departments db.
15 - New binary package unity-scope-click-init-departments and data package
16 - Provide default departments db and an upstart job that copies it to
17 user's home directory.
18 - Check for already purchased apps in search results in the store scope.
19 (LP: #1340430)
20 - Fix search button on previews for scopes. (LP: #1333831)
21 - Show the price in search results for apps that have prices.
22 - Updated the translation template. (LP: #1342924)
23 - Use package_appid name format in dconf keys for the 6 core apps.
24 - Added build dependency on libpay1-dev.
25 - Added dependency on pay-service, libsqlite3-0 and
26 unity-scope-click-departmentsdb.
27 - Dropped dependency on sqlite3.
28
29 [ Ubuntu daily release ]
30 * New rebuild forced
31
32 -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 18 Jul 2014 19:06:30 +0000
33
1unity-scope-click (0.1+14.10.20140714-0ubuntu1) utopic; urgency=medium34unity-scope-click (0.1+14.10.20140714-0ubuntu1) utopic; urgency=medium
235
3 [ Alejandro J. Cura (alecu) ]36 [ Alejandro J. Cura (alecu) ]
437
=== modified file 'debian/control'
--- debian/control 2014-07-17 23:15:30 +0000
+++ debian/control 2014-07-23 04:11:49 +0000
@@ -1,9 +1,12 @@
1Source: unity-scope-click1Source: unity-scope-click
2Section: x112Section: x11
3Priority: optional3Priority: optional
4# g++-4.9: since we use c++11 features, explicitly select a g++ version
5# to protect from ABI breaks in libstdc++
4Build-Depends: cmake (>= 2.8.10),6Build-Depends: cmake (>= 2.8.10),
5 debhelper (>= 9),7 debhelper (>= 9),
6 dh-translations,8 dh-translations,
9 g++-4.9,
7 google-mock,10 google-mock,
8 intltool,11 intltool,
9 libboost-locale-dev,12 libboost-locale-dev,
1013
=== modified file 'debian/rules'
--- debian/rules 2014-04-04 16:40:49 +0000
+++ debian/rules 2014-07-23 04:11:49 +0000
@@ -1,4 +1,10 @@
1#!/usr/bin/make -f1#!/usr/bin/make -f
2include /usr/share/dpkg/default.mk
3
4# Explicitly selecting a G{CC,++}-version here to avoid accidental
5# ABI breaks introduced by toolchain updates.
6export CC=$(DEB_HOST_GNU_TYPE)-gcc-4.9
7export CXX=$(DEB_HOST_GNU_TYPE)-g++-4.9
28
3DH_CMAKE_BUILD_DIR=obj-${DEB_BUILD_GNU_TYPE}9DH_CMAKE_BUILD_DIR=obj-${DEB_BUILD_GNU_TYPE}
410
511
=== modified file 'libclickscope/click/interface.cpp'
--- libclickscope/click/interface.cpp 2014-07-21 12:41:31 +0000
+++ libclickscope/click/interface.cpp 2014-07-23 04:11:49 +0000
@@ -494,11 +494,11 @@
494 callback(package_names, InterfaceError::NoError);494 callback(package_names, InterfaceError::NoError);
495 } catch (...) {495 } catch (...) {
496 qWarning() << "Can't parse 'click list' output: " << QString::fromStdString(stdout_data);496 qWarning() << "Can't parse 'click list' output: " << QString::fromStdString(stdout_data);
497 callback({}, InterfaceError::ParseError);497 callback(PackageSet(), InterfaceError::ParseError);
498 }498 }
499 } else {499 } else {
500 qWarning() << "Error" << code << "running 'click list': " << QString::fromStdString(stderr_data);500 qWarning() << "Error" << code << "running 'click list': " << QString::fromStdString(stderr_data);
501 callback({}, InterfaceError::CallError);501 callback(PackageSet(), InterfaceError::CallError);
502 }502 }
503 });503 });
504}504}

Subscribers

People subscribed via source and target branches

to all changes: