Merge lp:~xnox/ubuntu/lucid/distribute/sync-to-sid-2 into lp:~xnox/ubuntu/lucid/distribute/lucid-snapshot

Proposed by Dimitri John Ledkov
Status: Work in progress
Proposed branch: lp:~xnox/ubuntu/lucid/distribute/sync-to-sid-2
Merge into: lp:~xnox/ubuntu/lucid/distribute/lucid-snapshot
Prerequisite: lp:~xnox/debian/sid/distribute/sid-snapshot
Diff against target: 105 lines (+26/-28)
4 files modified
debian/changelog (+19/-10)
debian/control (+2/-2)
debian/python-distribute.substvars (+0/-4)
debian/rules (+5/-12)
To merge this branch: bzr merge lp:~xnox/ubuntu/lucid/distribute/sync-to-sid-2
To post a comment you must log in.

Unmerged revisions

11. By Barry Warsaw

* Merge from Debian Unstable. Remaining Ubuntu changes:
  - Build only for Python 2.6, since 2.5 and earlier is not supported on
    Lucid.
  - Remove old setuptools.egg-info directories so that we can transition
    to symlinks.
  - When writing the debian/python-setuptools.substvars, only include
    variable substitutions for building Python 2.6.

10. By Barry Warsaw

Remove another reference to Python 2.5

9. By Barry Warsaw

Stop building for Python 2.5 as per discussion with ScottK.

8. By Barry Warsaw

changelog

7. By Barry Warsaw

* Merge with sid's new upstream version.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2010-01-20 10:35:24 +0000
+++ debian/changelog 2010-01-20 10:35:24 +0000
@@ -1,4 +1,22 @@
1<<<<<<< TREE1distribute (0.6.10-1ubuntu1) lucid; urgency=low
2
3 * Merge from Debian Unstable. Remaining Ubuntu changes:
4 - Build only for Python 2.6, since 2.5 and earlier is not supported on
5 Lucid.
6 - Remove old setuptools.egg-info directories so that we can transition
7 to symlinks.
8 - When writing the debian/python-setuptools.substvars, only include
9 variable substitutions for building Python 2.6.
10
11 -- Barry Warsaw <barry@canonical.com> Thu, 14 Jan 2010 16:55:50 -0500
12
13distribute (0.6.10-1) unstable; urgency=low
14
15 * New upstream version.
16 * Stop building for python2.4. Closes: #557000.
17
18 -- Matthias Klose <doko@debian.org> Mon, 28 Dec 2009 23:52:40 +0100
19
2distribute (0.6.8-1ubuntu2) lucid; urgency=low20distribute (0.6.8-1ubuntu2) lucid; urgency=low
321
4 * python-setuptools.preinst (lp: #490731):22 * python-setuptools.preinst (lp: #490731):
@@ -12,15 +30,6 @@
1230
13 -- Matthias Klose <doko@ubuntu.com> Thu, 12 Nov 2009 02:17:43 +010031 -- Matthias Klose <doko@ubuntu.com> Thu, 12 Nov 2009 02:17:43 +0100
1432
15=======
16distribute (0.6.10-1) unstable; urgency=low
17
18 * New upstream version.
19 * Stop building for python2.4. Closes: #557000.
20
21 -- Matthias Klose <doko@debian.org> Mon, 28 Dec 2009 23:52:40 +0100
22
23>>>>>>> MERGE-SOURCE
24distribute (0.6.8-1) unstable; urgency=low33distribute (0.6.8-1) unstable; urgency=low
2534
26 * New upstream version.35 * New upstream version.
2736
=== modified file 'debian/control'
--- debian/control 2010-01-20 10:35:24 +0000
+++ debian/control 2010-01-20 10:35:24 +0000
@@ -4,9 +4,9 @@
4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Matthias Klose <doko@debian.org>5XSBC-Original-Maintainer: Matthias Klose <doko@debian.org>
6#Build-Depends-Indep: python-all-dev, python2.5-dev, python2.6-dev, python3-all-dev, python-central (>= 0.6.11), python-sphinx6#Build-Depends-Indep: python-all-dev, python2.5-dev, python2.6-dev, python3-all-dev, python-central (>= 0.6.11), python-sphinx
7Build-Depends-Indep: python2.5-dev, python-all-dev, python-central (>= 0.6.11), python-sphinx7Build-Depends-Indep: python-all-dev, python-central (>= 0.6.11), python-sphinx
8Build-Depends: debhelper (>= 5.0.37.1)8Build-Depends: debhelper (>= 5.0.37.1)
9XS-Python-Version: 2.5, 2.69XS-Python-Version: 2.6
10Standards-Version: 3.8.310Standards-Version: 3.8.3
11Homepage: http://packages.python.org/distribute11Homepage: http://packages.python.org/distribute
1212
1313
=== modified file 'debian/python-distribute.substvars'
--- debian/python-distribute.substvars 2010-01-20 10:35:24 +0000
+++ debian/python-distribute.substvars 2010-01-20 10:35:24 +0000
@@ -1,6 +1,2 @@
1<<<<<<< TREE
2python:Versions=2.4, 2.4, 2.5, 2.6, 2.5, 2.6
3=======
4python:Versions=2.4, 2.5, 2.5, 2.6, 2.61python:Versions=2.4, 2.5, 2.5, 2.6, 2.6
5>>>>>>> MERGE-SOURCE
6python:Provides=python2.4-distribute, python2.5-distribute2python:Provides=python2.4-distribute, python2.5-distribute
73
=== modified file 'debian/rules'
--- debian/rules 2010-01-20 10:35:24 +0000
+++ debian/rules 2010-01-20 10:35:24 +0000
@@ -19,15 +19,8 @@
19# setuptools doesn't handle translated messages19# setuptools doesn't handle translated messages
20export LC_ALL=C20export LC_ALL=C
2121
22PYVERS := 2.3 2.5 $(shell pyversions -vr debian/control)22PYVERS := $(shell pyversions -vr debian/control)
23<<<<<<< TREE23XPYVERS := 2.6
24XPYVERS := 2.6 2.5
25PYVERS := 2.4 2.5
26PYVERS := 2.6
27=======
28XPYVERS := 2.6 2.5
29PYVERS := 2.5
30>>>>>>> MERGE-SOURCE
31PYVER := $(shell python -c 'import sys; print sys.version[:3]')24PYVER := $(shell python -c 'import sys; print sys.version[:3]')
32SETUPTOOLSVER=0.6c1125SETUPTOOLSVER=0.6c11
33export XPYVERS26export XPYVERS
@@ -166,9 +159,9 @@
166159
167 cat $(d_setp).substvars160 cat $(d_setp).substvars
168 ( \161 ( \
169 echo 'python:Versions=2.5, 2.6'; \162 echo 'python:Versions=2.6'; \
170 echo 'python:Provides=python2.5-setuptools, python2.6-setuptools'; \163 echo 'python:Provides=python2.6-setuptools'; \
171 echo 'python:Depends=python (>= 2.5), python (<< 2.7), python-central (>= 0.6.11)'; \164 echo 'python:Depends=python (>= 2.6), python (<< 2.7), python-central (>= 0.6.11)'; \
172 ) > $(d_setp).substvars165 ) > $(d_setp).substvars
173 cat $(d_setp).substvars166 cat $(d_setp).substvars
174# cp $(d_setp).substvars $(d_dist).substvars167# cp $(d_setp).substvars $(d_dist).substvars

Subscribers

People subscribed via source and target branches

to all changes: