Merge lp:~groldster/ubuntu/maverick/python-support/merge-from-sid-1.0.9 into lp:ubuntu/maverick/python-support

Proposed by Mikhail Turov
Status: Merged
Merge reported by: Sebastien Bacher
Merged at revision: not available
Proposed branch: lp:~groldster/ubuntu/maverick/python-support/merge-from-sid-1.0.9
Merge into: lp:ubuntu/maverick/python-support
Diff against target: 68 lines (+25/-5)
3 files modified
debhelper/dh_pysupport (+3/-3)
debian/changelog (+17/-0)
update-python-modules (+5/-2)
To merge this branch: bzr merge lp:~groldster/ubuntu/maverick/python-support/merge-from-sid-1.0.9
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+30382@code.launchpad.net

Description of the change

1.0.9 merge from debian

To post a comment you must log in.
Revision history for this message
Sebastien Bacher (seb128) wrote :

changing to merged since the new version is in maverick now

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debhelper/dh_pysupport'
2--- debhelper/dh_pysupport 2010-05-14 12:40:10 +0000
3+++ debhelper/dh_pysupport 2010-07-20 10:54:41 +0000
4@@ -327,9 +327,9 @@
5 }, $tmp;
6
7 # 5) Generate remaining dependencies
8- foreach (@allversions) {
9- if ($need_verdep{$_}) {
10- addsubstvar($package, "python:Depends", "python$_");
11+ foreach my $version (@allversions) {
12+ if ($need_verdep{$version}) {
13+ addsubstvar($package, "python:Depends", "python$version");
14 }
15 }
16 if (not $have_pydep) {
17
18=== modified file 'debian/changelog'
19--- debian/changelog 2010-05-22 22:23:00 +0000
20+++ debian/changelog 2010-07-20 10:54:41 +0000
21@@ -1,3 +1,20 @@
22+python-support (1.0.9ubuntu1) lucid; urgency=low
23+
24+ * Merge with Debian
25+
26+ -- Mikhail Turov <groldster@gmail.com> Tue, 20 Jul 2010 11:41:19 +0100
27+
28+python-support (1.0.9) unstable; urgency=low
29+
30+ * dh_pysupport: generates correct dependencies if multiple packages need
31+ pythonX.Y (closes: #576517, thanks to Jakub Wilk for the patch)
32+ * update-python-modules:
33+ - remove /usr/lib/pymodules files symlinked to /usr/share/pyshared that
34+ no longer belong to any python-support based package
35+ - doesn't raise string exceptions anymore (closes: #585332)
36+
37+ -- Piotr Ożarowski <piotr@debian.org> Sun, 27 Jun 2010 15:12:52 +0200
38+
39 python-support (1.0.8ubuntu2) maverick; urgency=low
40
41 * Drop leftover .bzr*.
42
43=== added file 'tests/testparseversions.pyc'
44Binary files tests/testparseversions.pyc 1970-01-01 00:00:00 +0000 and tests/testparseversions.pyc 2010-07-20 10:54:41 +0000 differ
45=== modified file 'update-python-modules'
46--- update-python-modules 2010-05-14 12:40:10 +0000
47+++ update-python-modules 2010-07-20 10:54:41 +0000
48@@ -235,7 +235,7 @@
49 elif os.path.isdir(path):
50 self[name] = SharedDirList (path)
51 else:
52- raise "[Internal Error] I don't know what to do with this path: %s"%path
53+ raise Exception("[Internal Error] I don't know what to do with this path: %s"%path)
54 return dict.__getitem__(self, name)
55
56
57@@ -316,7 +316,10 @@
58 removed = True
59 break
60 else:
61- warning("WARNING: %s is linked but does not belong to any package."%srcfile)
62+ # Remove files provided by packages that do not use python-support anymore
63+ debug("remove "+abspath)
64+ os.remove(abspath)
65+ removed = True
66 if removed:
67 # Do not go further, the file was removed
68 continue

Subscribers

People subscribed via source and target branches

to all changes: