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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
9b9162c1
Commit
9b9162c1
authored
Aug 20, 2010
by
Gary Poster
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revise docs
parent
3c7de5a2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
14 deletions
+17
-14
CHANGES.txt
CHANGES.txt
+2
-2
SYSTEM_PYTHON_HELP.txt
SYSTEM_PYTHON_HELP.txt
+14
-11
setup.py
setup.py
+1
-1
No files found.
CHANGES.txt
View file @
9b9162c1
Change History
Change History
**************
**************
1.5.0
b3
(unreleased)
1.5.0 (unreleased)
==================
==
==================
New features:
New features:
...
...
SYSTEM_PYTHON_HELP.txt
View file @
9b9162c1
...
@@ -28,8 +28,8 @@ Working with a System Python
...
@@ -28,8 +28,8 @@ Working with a System Python
============================
============================
While there are a number of new features available in zc.buildout 1.5,
While there are a number of new features available in zc.buildout 1.5,
the biggest is that Buildout itself
attempts to support usage with a system
the biggest is that Buildout itself
supports usage with a system Python.
Python.
This can work if you follow a couple of simple rules.
This can work if you follow a couple of simple rules.
1. Use the new bootstrap.py (available from
1. Use the new bootstrap.py (available from
svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/bootstrap.py).
svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/bootstrap.py).
...
@@ -38,10 +38,11 @@ Python. This can work if you follow a couple of simple rules.
...
@@ -38,10 +38,11 @@ Python. This can work if you follow a couple of simple rules.
and higher. Specifically, they should use
and higher. Specifically, they should use
``zc.buildout.easy_install.sitepackage_safe_scripts`` to generate
``zc.buildout.easy_install.sitepackage_safe_scripts`` to generate
their scripts, if any, rather than ``zc.buildout.easy_install.scripts``.
their scripts, if any, rather than ``zc.buildout.easy_install.scripts``.
See the Recipes_ section below for more details on recipes that are
See the `Recipes That Support a System Python`_ section below for more
available as of this writing, and `Updating Recipes`_ for
details on recipes that are available as of this writing, and
instructions on how to update a recipe. Note that you should generally
`Updating Recipes to Support a System Python`_ for instructions on
only need to update recipes that generate scripts.
how to update a recipe. Note that you should generally only need to
update recipes that generate scripts.
It's important to note that recipes not upgraded for zc.buildout 1.5.0
It's important to note that recipes not upgraded for zc.buildout 1.5.0
should continue to work--just not with a system Python.
should continue to work--just not with a system Python.
...
@@ -59,8 +60,8 @@ zc.buildout code for this feature has been tested by many users already.
...
@@ -59,8 +60,8 @@ zc.buildout code for this feature has been tested by many users already.
Moreover, it has automated tests to exercise the problems that have been
Moreover, it has automated tests to exercise the problems that have been
encountered and fixed.
encountered and fixed.
Recipes
Recipes
That Support a System Python
=======
=======
=============================
zc.recipe.egg continues to generate old-style scripts that are not safe
zc.recipe.egg continues to generate old-style scripts that are not safe
for use with a system Python. This was done for backwards
for use with a system Python. This was done for backwards
...
@@ -79,7 +80,8 @@ Python.
...
@@ -79,7 +80,8 @@ Python.
This is the only updated recipe as of this writing. Others should be
This is the only updated recipe as of this writing. Others should be
updated soon: see their change documents for details, or see `Updating
updated soon: see their change documents for details, or see `Updating
Recipes`_ for instructions on how to update recipes yourself.
Recipes to Support a System Python`_ for instructions on how to update
recipes yourself.
Templates for creating Python scripts with the z3c.recipe.filetemplate
Templates for creating Python scripts with the z3c.recipe.filetemplate
recipe can be easily changed to support a system Python. Use
recipe can be easily changed to support a system Python. Use
...
@@ -99,8 +101,8 @@ Buildout configuration section labeled "scripts".
...
@@ -99,8 +101,8 @@ Buildout configuration section labeled "scripts".
sys.path.insert(0, ${scripts:parts-directory|path-repr})
sys.path.insert(0, ${scripts:parts-directory|path-repr})
import site
import site
Updating Recipes
Updating Recipes
to Support a System Python
================
================
===========================
You should generally only need to update recipes that generate scripts.
You should generally only need to update recipes that generate scripts.
These recipes need to change from using ``zc.buildout.easy_install.scripts``
These recipes need to change from using ``zc.buildout.easy_install.scripts``
...
@@ -146,6 +148,7 @@ this.
...
@@ -146,6 +148,7 @@ this.
::
::
self.options = options
b_options = buildout['buildout']
b_options = buildout['buildout']
options['parts-directory'] = os.path.join(
options['parts-directory'] = os.path.join(
b_options['parts-directory'], self.name)
b_options['parts-directory'], self.name)
...
...
setup.py
View file @
9b9162c1
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#
#
##############################################################################
##############################################################################
name
=
"zc.buildout"
name
=
"zc.buildout"
version
=
"1.5.0
dev
"
version
=
"1.5.0"
import
os
import
os
from
setuptools
import
setup
from
setuptools
import
setup
...
...
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