Merge lp:~rockstar/lazr-js/launchpad-friendly into lp:lazr-js

Proposed by Paul Hummer
Status: Merged
Merged at revision: 180
Proposed branch: lp:~rockstar/lazr-js/launchpad-friendly
Merge into: lp:lazr-js
Diff against target: 37 lines (+4/-3)
3 files modified
MANIFEST.in (+1/-0)
Makefile (+1/-0)
setup.py (+2/-3)
To merge this branch: bzr merge lp:~rockstar/lazr-js/launchpad-friendly
Reviewer Review Type Date Requested Status
Sidnei da Silva (community) Approve
Review via email: mp+33442@code.launchpad.net

Description of the change

This branch makes some changes that make building everything a little more launchpad friendly. Basically, when we make an sdist out of lazr-js, we need to have distribute_setup.py available because launchpad doesn't use distribute.

I also cleaned up some unused imports in setup.py and bumped the version 1.5DEV so that we have some space between 1.0 and the old and busted 0.9.2 that we apparently were calling trunk.

To post a comment you must log in.
192. By Paul Hummer

Use the released distribute

Revision history for this message
Sidnei da Silva (sidnei) wrote :

Looks good, +1.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'MANIFEST.in'
--- MANIFEST.in 2009-10-21 21:43:07 +0000
+++ MANIFEST.in 2010-08-23 20:22:44 +0000
@@ -3,3 +3,4 @@
3recursive-include src-py *3recursive-include src-py *
4recursive-include src-js *4recursive-include src-js *
5include ez_setup.py5include ez_setup.py
6include distribute_setup.py
67
=== modified file 'Makefile'
--- Makefile 2010-04-26 17:13:13 +0000
+++ Makefile 2010-08-23 20:22:44 +0000
@@ -46,6 +46,7 @@
4646
47 $(SHHH) $(PYTHON) -S bootstrap.py \47 $(SHHH) $(PYTHON) -S bootstrap.py \
48 --distribute \48 --distribute \
49 --version=1.5.0 \
49 --setup-source=distribute_setup.py \50 --setup-source=distribute_setup.py \
50 --download-base=download-cache/dist --eggs=eggs51 --download-base=download-cache/dist --eggs=eggs
5152
5253
=== modified file 'setup.py'
--- setup.py 2010-03-16 00:48:52 +0000
+++ setup.py 2010-08-23 20:22:44 +0000
@@ -3,10 +3,9 @@
3import distribute_setup3import distribute_setup
4distribute_setup.use_setuptools()4distribute_setup.use_setuptools()
55
6import sys6from setuptools import setup
7from setuptools import setup, find_packages
87
9__version__ = '0.9.2DEV'8__version__ = '1.5DEV'
109
1110
12setup(11setup(

Subscribers

People subscribed via source and target branches