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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapos.buildout
Commits
9fc656e4
Commit
9fc656e4
authored
Sep 05, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated release information
parent
3e90ec6e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
63 additions
and
6 deletions
+63
-6
README.txt
README.txt
+19
-0
setup.py
setup.py
+1
-1
zc.recipe.egg_/README.txt
zc.recipe.egg_/README.txt
+21
-0
zc.recipe.egg_/setup.py
zc.recipe.egg_/setup.py
+2
-2
zc.recipe.testrunner/README.txt
zc.recipe.testrunner/README.txt
+17
-0
zc.recipe.testrunner/setup.py
zc.recipe.testrunner/setup.py
+3
-3
No files found.
README.txt
View file @
9fc656e4
...
...
@@ -192,8 +192,19 @@ Change History
1.0.0b3
-------
- Added a help option (-h, --help)
- Increased the default level of verbosity.
- Buildouts now automatically update themselves to new versions of
zc.buildout and setuptools.
- Added Windows support.
- Added a recipe API for generating user errors.
- No-longer generate a py_zc.buildout script.
- Fixed some bugs in variable substitutions.
The characters "-", "." and " ", weren't allowed in section or
...
...
@@ -206,6 +217,14 @@ Change History
- Now require a recipe option (and therefore a section) for every part.
- Expanded the easy_install module API to:
- Allow extra paths to be provided
- Specify explicit entry points
- Specify entry-point arguments
1.0.0b2
-------
...
...
setup.py
View file @
9fc656e4
...
...
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name
=
"zc.buildout"
setup
(
name
=
name
,
version
=
"1.0.0b
2
"
,
version
=
"1.0.0b
3
"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"System for managing development buildouts"
,
...
...
zc.recipe.egg_/README.txt
View file @
9fc656e4
...
...
@@ -63,6 +63,27 @@ Change History
Added a new recipe for building custom eggs from source distributions,
specifying custom distutils build_ext options.
1.0.0a3
-------
- Added Windows support.
- Now-longer implicitly generate "py_" scripts for each egg. You can
now generate a script for launching a Python interpreter or for
running scripts based on the eggs defined for an egg part.
- You can now specify custom entry points for packages that don't
declare their entry points.
- You can now specify extra-paths to be included in generated scripts.
1.0.0a2
-------
Added a custom recipe for building custom eggs using custom distrutils
build_ext arguments.
1.0.0a1
-------
...
...
zc.recipe.egg_/setup.py
View file @
9fc656e4
...
...
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name
=
"zc.recipe.egg"
setup
(
name
=
name
,
version
=
"1.0.0a
2
"
,
version
=
"1.0.0a
3
"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"Recipe for installing Python package distributions as eggs"
,
...
...
@@ -16,7 +16,7 @@ setup(
include_package_data
=
True
,
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
,
'zc.recipe'
],
install_requires
=
[
'zc.buildout'
,
'setuptools'
],
install_requires
=
[
'zc.buildout
>=1.1.0b3
'
,
'setuptools'
],
tests_require
=
[
'zope.testing'
],
test_suite
=
name
+
'.tests.test_suite'
,
entry_points
=
{
'zc.buildout'
:
[
'default = %s:Egg'
%
name
,
...
...
zc.recipe.testrunner/README.txt
View file @
9fc656e4
...
...
@@ -24,3 +24,20 @@ To do
- Support specifying testrunner defaults (e.g. verbosity, test file
patterns, etc.)
Change History
==============
1.0.0a2
-------
Now provide a extra-paths option for including extra paths in test
scripts. This is useful when eggs depend on Python packages not
packaged as eggs.
1.0.0a1
-------
Initial public version
zc.recipe.testrunner/setup.py
View file @
9fc656e4
...
...
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name
=
"zc.recipe.testrunner"
setup
(
name
=
name
,
version
=
"1.0.0a
1
"
,
version
=
"1.0.0a
2
"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"ZC Buildout recipe for creating test runners"
,
...
...
@@ -16,8 +16,8 @@ setup(
include_package_data
=
True
,
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
,
'zc.recipe'
],
install_requires
=
[
'zc.buildout'
,
'zope.testing'
,
'setuptools'
,
'zc.recipe.egg'
,
install_requires
=
[
'zc.buildout
>=1.1.0b3
'
,
'zope.testing'
,
'setuptools'
,
'zc.recipe.egg
>=1.1.0a3
'
,
],
test_suite
=
name
+
'.tests.test_suite'
,
entry_points
=
{
'zc.buildout'
:
[
'default = %s:TestRunner'
%
name
]},
...
...
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