Merge lp:~matttbe/ubuntu/quantal/unity/lp1013171 into lp:ubuntu/quantal/unity

Proposed by Matthieu Baerts
Status: Merged
Merged at revision: 720
Proposed branch: lp:~matttbe/ubuntu/quantal/unity/lp1013171
Merge into: lp:ubuntu/quantal/unity
Diff against target: 40 lines (+7/-2)
2 files modified
debian/changelog (+5/-1)
debian/source_unity.py (+2/-1)
To merge this branch: bzr merge lp:~matttbe/ubuntu/quantal/unity/lp1013171
Reviewer Review Type Date Requested Status
Didier Roche-Tolomelli Approve
Review via email: mp+113032@code.launchpad.net

Description of the change

Hello Didier,

This is just a patch to update apport hook for python3.
I set you as reviewer because you're the latest commiter on the main branch and the version is still 'UNRELEASED' but I can add ubuntu-sponsors team if you want ;)

Have a nice day,

Matt

To post a comment you must log in.
Revision history for this message
Didier Roche-Tolomelli (didrocks) wrote :

excellent, pulling and pushing! thanks :)

review: Approve
Revision history for this message
Matthieu Baerts (matttbe) wrote :

4 minutes to merge a simple branch, impressive :)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2012-07-02 11:40:04 +0000
+++ debian/changelog 2012-07-02 13:07:25 +0000
@@ -1,12 +1,16 @@
1unity (5.12-0ubuntu5) UNRELEASED; urgency=low1unity (5.12-0ubuntu5) UNRELEASED; urgency=low
22
3 [ Didier Roche ]
3 * debian/rules, debian/control, debian/unity-autopilot.install:4 * debian/rules, debian/control, debian/unity-autopilot.install:
4 - install new unity-autopilot package, containing autopilot bindings and5 - install new unity-autopilot package, containing autopilot bindings and
5 test for Unity6 test for Unity
6 - use dh_python2 and add some python:Depends dep for automatic python7 - use dh_python2 and add some python:Depends dep for automatic python
7 version detection8 version detection
89
9 -- Didier Roche <didrocks@ubuntu.com> Mon, 02 Jul 2012 13:33:54 +020010 [ Matthieu Baerts (matttbe) ]
11 * Update apport hook for python3 ; thanks to Edward Donovan (LP: #1013171)
12
13 -- Matthieu Baerts (matttbe) <matttbe@gmail.com> Mon, 02 Jul 2012 14:56:18 +0200
1014
11unity (5.12-0ubuntu4) quantal-proposed; urgency=low15unity (5.12-0ubuntu4) quantal-proposed; urgency=low
1216
1317
=== modified file 'debian/source_unity.py'
--- debian/source_unity.py 2012-02-14 12:14:25 +0000
+++ debian/source_unity.py 2012-07-02 13:07:25 +0000
@@ -1,4 +1,5 @@
1import apport.packaging1import apport.packaging
2from apport.hookutils import *
23
3def add_info(report, ui):4def add_info(report, ui):
45
@@ -14,7 +15,7 @@
14 report['Tags'] += " rc-%s" % version15 report['Tags'] += " rc-%s" % version
15 16
16 # the crash is not in the unity code so reassign17 # the crash is not in the unity code so reassign
17 if report.has_key("Stacktrace") and "/usr/lib/indicators" in report["Stacktrace"]:18 if "Stacktrace" in report and "/usr/lib/indicators" in report["Stacktrace"]:
18 for words in report["Stacktrace"].split():19 for words in report["Stacktrace"].split():
19 if words.startswith("/usr/lib/indicators"):20 if words.startswith("/usr/lib/indicators"):
20 report.add_package_info(apport.packaging.get_file_package(words))21 report.add_package_info(apport.packaging.get_file_package(words))

Subscribers

People subscribed via source and target branches