Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
4e61cb51
Commit
4e61cb51
authored
Oct 02, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed the runsetup command to setup.
parent
90eefec9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
CHANGES.txt
CHANGES.txt
+8
-0
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+4
-2
src/zc/buildout/runsetup.txt
src/zc/buildout/runsetup.txt
+2
-2
No files found.
CHANGES.txt
View file @
4e61cb51
...
...
@@ -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)
====================
...
...
src/zc/buildout/buildout.py
View file @
4e61cb51
...
...
@@ -619,7 +619,7 @@ class Buildout(dict):
for
ep
in
pkg_resources
.
iter_entry_points
(
'zc.buildout.extension'
):
ep
.
load
()(
self
)
def
run
setup
(
self
,
args
):
def
setup
(
self
,
args
):
setup
=
args
.
pop
(
0
)
if
os
.
path
.
isdir
(
setup
):
setup
=
os
.
path
.
join
(
setup
,
'setup.py'
)
...
...
@@ -647,6 +647,8 @@ class Buildout(dict):
os
.
close
(
fd
)
os
.
remove
(
tsetup
)
runsetup
=
setup
# backward compat
runsetup_template
=
"""
import sys
sys.path.insert(0, %(setuptools)r)
...
...
@@ -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'
...
...
src/zc/buildout/runsetup.txt
View file @
4e61cb51
...
...
@@ -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
run
setup 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')
... +'
run
setup hello -q bdist_egg'),
... +' setup hello -q bdist_egg'),
buildout: Running setup script hello/setup.py
zip_safe flag not set; analyzing archive contents...
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment