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)
----------------
- 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]
* Renamed from slapos.tool.rebootstrap 2.4 [Łukasz Nowak]
include README.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.
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:
special.parts.directory/partname/bin/partname
......@@ -18,7 +18,7 @@ python in:
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
sys.executable used to run buildout is different then executable provided in
......@@ -38,7 +38,7 @@ Example profile and invocation
::
[buildout]
extensions = slapos.tool.rebootstrap
extensions = slapos.rebootstrap
parts =
realrun
......
[egg_info]
tag_build = .dev
tag_svn_revision = 1
from setuptools import setup, find_packages
version = '2.4'
name = "slapos.tool.rebootstrap"
version = '0.1'
name = "slapos.rebootstrap"
setup(
name=name,
......@@ -24,8 +24,7 @@ setup(
license='ZPL 2.1',
include_package_data=True,
namespace_packages=['slapos'],
packages=find_packages('src'),
package_dir={'': 'src'},
packages=find_packages(),
zip_safe=True,
install_requires=[
'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