Commit d7956dca authored by Łukasz Nowak's avatar Łukasz Nowak

Rename from slapos.tool.rebootstrap to slapos.rebootstrap.

parent 90ccf8ca
*pyc
build
dist
slapos.rebootstrap.egg-info
2.4 (unreleased) 0.1 (unreleased)
---------------- ================
2.3 (2011-03-18) * Renamed from slapos.tool.rebootstrap 2.4 [Łukasz Nowak]
----------------
- support case when rebootstrap parts directory already exists, to support
failed previous run [Łukasz Nowak]
2.2 (2011-01-24)
----------------
- support extensions in rebootstrap phase [Łukasz Nowak]
- rename to slapos.tool.reboostrap from slapos.rebootstrap [Łukasz Nowak]
2.1 (2010-12-02)
----------------
- use reboostrap.version prefix for generated files and directories instead
of suffix [Łukasz Nowak]
2.0 (2010-12-01)
----------------
- build python in "separated" environment to avoid reinstalling it in place,
backward incompatible with <=1.0 [Łukasz Nowak]
1.0 (2010-11-29)
----------------
- make possible to have newline in rebootstrap section [Łukasz Nowak]
0.4 (2010-11-04)
----------------
- re-run buildout while required part installation, to have all dependencies
installed correctly [Łukasz Nowak]
0.3 (2010-10-27)
----------------
- replace process while restarting buildout to have this process exit codes
and issues, as otherwise false positive exit code 0 might appear
[Łukasz Nowak]
0.2.1 (2010-10-15)
------------------
- fix documentation formatting
- fix documentation typos [Łukasz Nowak]
0.2 (unreleased)
-------------------
- Tested the egg. [Łukasz Nowak]
0.1 (2010-10-11)
----------------
- Initial version. [Łukasz Nowak]
include README.txt include README.txt
include CHANGES.txt include CHANGES.txt
include src/slapos/tool/rebootstrap/*.txt include slapos/rebootstrap/*.txt
...@@ -8,7 +8,7 @@ provided by buildout shall be used to *execute* this buildout itself. ...@@ -8,7 +8,7 @@ provided by buildout shall be used to *execute* this buildout itself.
Usage Usage
----- -----
Part to build python is required. By convention slapos.tool.rebootstrap will try to Part to build python is required. By convention slapos.rebootstrap will try to
find python executable in: find python executable in:
special.parts.directory/partname/bin/partname special.parts.directory/partname/bin/partname
...@@ -18,7 +18,7 @@ python in: ...@@ -18,7 +18,7 @@ python in:
special.parts.directory/partname/python-path special.parts.directory/partname/python-path
Add slapos.tool.rebootstrap to extensions and set rebooter-section to above section. Add slapos.rebootstrap to extensions and set rebooter-section to above section.
Use whatever python to bootstrap and run buildout. If reboot will detect that Use whatever python to bootstrap and run buildout. If reboot will detect that
sys.executable used to run buildout is different then executable provided in sys.executable used to run buildout is different then executable provided in
...@@ -38,7 +38,7 @@ Example profile and invocation ...@@ -38,7 +38,7 @@ Example profile and invocation
:: ::
[buildout] [buildout]
extensions = slapos.tool.rebootstrap extensions = slapos.rebootstrap
parts = parts =
realrun realrun
......
[egg_info]
tag_build = .dev
tag_svn_revision = 1
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '2.4' version = '0.1'
name = "slapos.tool.rebootstrap" name = "slapos.rebootstrap"
setup( setup(
name=name, name=name,
...@@ -24,8 +24,7 @@ setup( ...@@ -24,8 +24,7 @@ setup(
license='ZPL 2.1', license='ZPL 2.1',
include_package_data=True, include_package_data=True,
namespace_packages=['slapos'], namespace_packages=['slapos'],
packages=find_packages('src'), packages=find_packages(),
package_dir={'': 'src'},
zip_safe=True, zip_safe=True,
install_requires=[ install_requires=[
'setuptools', 'setuptools',
......
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
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