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
1=== modified file 'MANIFEST.in'
2--- MANIFEST.in 2009-10-21 21:43:07 +0000
3+++ MANIFEST.in 2010-08-23 20:22:44 +0000
4@@ -3,3 +3,4 @@
5 recursive-include src-py *
6 recursive-include src-js *
7 include ez_setup.py
8+include distribute_setup.py
9
10=== modified file 'Makefile'
11--- Makefile 2010-04-26 17:13:13 +0000
12+++ Makefile 2010-08-23 20:22:44 +0000
13@@ -46,6 +46,7 @@
14
15 $(SHHH) $(PYTHON) -S bootstrap.py \
16 --distribute \
17+ --version=1.5.0 \
18 --setup-source=distribute_setup.py \
19 --download-base=download-cache/dist --eggs=eggs
20
21
22=== modified file 'setup.py'
23--- setup.py 2010-03-16 00:48:52 +0000
24+++ setup.py 2010-08-23 20:22:44 +0000
25@@ -3,10 +3,9 @@
26 import distribute_setup
27 distribute_setup.use_setuptools()
28
29-import sys
30-from setuptools import setup, find_packages
31+from setuptools import setup
32
33-__version__ = '0.9.2DEV'
34+__version__ = '1.5DEV'
35
36
37 setup(

Subscribers

People subscribed via source and target branches