Commit 4fa41202 authored by jim's avatar jim

Renamed the runsetup command to setup.


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70499 62d5b8a3-27da-0310-9561-8e5933582275
parent 521d49b6
......@@ -22,6 +22,14 @@ priorities include:
Change History
**************
Next Release
============
Feature Changes
---------------
Renamed the runsetup command to setup. (The old name still works.)
1.0.0b9 (2006-10-02)
====================
......
......@@ -619,7 +619,7 @@ class Buildout(dict):
for ep in pkg_resources.iter_entry_points('zc.buildout.extension'):
ep.load()(self)
def runsetup(self, args):
def setup(self, args):
setup = args.pop(0)
if os.path.isdir(setup):
setup = os.path.join(setup, 'setup.py')
......@@ -646,6 +646,8 @@ class Buildout(dict):
finally:
os.close(fd)
os.remove(tsetup)
runsetup = setup # backward compat
runsetup_template = """
import sys
......@@ -879,7 +881,7 @@ def main(args=None):
if args:
command = args.pop(0)
if command not in ('install', 'bootstrap', 'runsetup'):
if command not in ('install', 'bootstrap', 'runsetup', 'setup'):
_error('invalid command:', command)
else:
command = 'install'
......
......@@ -9,7 +9,7 @@ package index. If your script uses setuptools, you'll need setuptools
in your Python path, which may be an issue if you haven't installed
setuptools into your Python installation.
The buildout runsetup command is helpful in a situation like this. It
The buildout setup command is helpful in a situation like this. It
can be used to run a setup script and it does so with the setuptools
egg in the Python path and with setuptools already imported. The fact
that setuptools is imported means that you can use setuptools-based
......@@ -35,7 +35,7 @@ We can use the buildout command to generate the hello egg:
>>> cd(sample_buildout)
>>> import os
>>> print system(os.path.join('bin', 'buildout')
... +' runsetup hello -q bdist_egg'),
... +' setup hello -q bdist_egg'),
buildout: Running setup script hello/setup.py
zip_safe flag not set; analyzing archive contents...
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment