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

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

Description of the change

Hello Didier,

Here is another patch to update apport hook for python3.
Again I set you as reviewer because you're the latest commiter on the main branch and the version is still set as '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 :

Looks good, same, pulling and pushing :)

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 2012-06-29 07:50:37 +0000
+++ debian/changelog 2012-07-02 15:33:32 +0000
@@ -1,11 +1,15 @@
1compiz (1:0.9.8+bzr3249-0ubuntu3) UNRELEASED; urgency=low1compiz (1:0.9.8+bzr3249-0ubuntu3) UNRELEASED; urgency=low
22
3 [ Didier Roche ]
3 * debian/patches/ubuntu-config.patch:4 * debian/patches/ubuntu-config.patch:
4 - refresh with latest trunk5 - refresh with latest trunk
5 * debian/*docs:6 * debian/*docs:
6 - remove the TODO copy now removed upstream7 - remove the TODO copy now removed upstream
78
8 -- Didier Roche <didrocks@ubuntu.com> Fri, 29 Jun 2012 09:23:25 +02009 [ Matthieu Baerts (matttbe) ]
10 * Update apport hook for python3 ; thanks to Edward Donovan (LP: #1013171)
11
12 -- Matthieu Baerts (matttbe) <matttbe@gmail.com> Mon, 02 Jul 2012 17:24:40 +0200
913
10compiz (1:0.9.8+bzr3249-0ubuntu2) quantal; urgency=low14compiz (1:0.9.8+bzr3249-0ubuntu2) quantal; urgency=low
1115
1216
=== modified file 'debian/source_compiz.py'
--- debian/source_compiz.py 2012-06-19 11:22:48 +0000
+++ debian/source_compiz.py 2012-07-02 15:33:32 +0000
@@ -1,9 +1,10 @@
1import apport.packaging1import apport.packaging
2from apport.hookutils import *
23
3def add_info(report, ui):4def add_info(report, ui):
45
5 # if it's a stacktrace, report it directly against the right component6 # if it's a stacktrace, report it directly against the right component
6 if report.has_key("Stacktrace"):7 if "Stacktrace" in report:
7 for external_component in ("/usr/lib/libnux", "/usr/lib/compiz/libunityshell", "/usr/lib/libunity"):8 for external_component in ("/usr/lib/libnux", "/usr/lib/compiz/libunityshell", "/usr/lib/libunity"):
8 for words in report["Stacktrace"].split():9 for words in report["Stacktrace"].split():
9 if words.startswith(external_component):10 if words.startswith(external_component):

Subscribers

People subscribed via source and target branches