Skip to content

Commit

Permalink
Release engineering.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Apr 5, 2006
1 parent 82b7c04 commit ebc10c4
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 58 deletions.
37 changes: 16 additions & 21 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
zope.XXX Package Changelog
==========================
RestrictedPython Package Changelog
==================================

zope.XXX version 3.2.1 (2006/03/26)
-----------------------------------
RestrictedPython version 3.2.0 (2006/01/05)
-------------------------------------------

- Corresponds to the verison of the zope.XXX package shipped as part of
the Zope 3.2.1 release.

zope.XXX version 3.2.0 (2006/01/05)
-----------------------------------

- Corresponds to the verison of the zope.XXX package shipped as part of
- Corresponds to the verison of the RestrictedPython package shipped as part of
the Zope 3.2.0 release.

zope.XXX version 3.1.0 (2005/10/03)
-----------------------------------
- No changes from 3.1.0.

RestrictedPython version 3.1.0 (2005/10/03)
-------------------------------------------

- Corresponds to the verison of the zope.XXX package shipped as part of
- Corresponds to the verison of the RestrictedPython package shipped as part of
the Zope 3.1.0 release.

zope.XXX version 3.0.1 (2005/07/27)
-----------------------------------
- Removed unused fossil module, 'SafeMapping'.

- Corresponds to the verison of the zope.XXX package shipped as part of
the Zope X3.0.1 release.
- Replaced use of deprecated 'whrandom' module with 'random' (aliased to
'whrandom' for backward compatibility).

zope.XXX version 3.0.0 (2004/11/07)
-----------------------------------
RestrictedPython version 3.0.0 (2004/11/07)
-------------------------------------------

- Corresponds to the verison of the zope.XXX package shipped as part of
- Corresponds to the verison of the RestrictedPython package shipped as part of
the Zope X3.0.0 release.
12 changes: 6 additions & 6 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Installing a Development Checkout

Check out the package from subversion:

$ svn co svn+ssh://svn.zope.org/repos/main/zope.XXX/trunk \
src/zope.XXX
$ cd src/zope.XXX
$ svn co svn+ssh://svn.zope.org/repos/main/RestrictedPython/trunk \
src/RestrictedPython
$ cd src/RestrictedPython

Install it as a "devlopment egg" (which also installs its "hard"
dependencies):
Expand Down Expand Up @@ -67,8 +67,8 @@ Installing a Source Distribution

You can also install it from a source distribution:

$ /path/to/easy_install --find-links="...." -eb src zope.XXX
$ cd src/zope.XXX
$ /path/to/easy_install --find-links="...." -eb src RestrictedPython
$ cd src/RestrictedPython
$ /path/to/your/python setup.py devel


Expand All @@ -78,6 +78,6 @@ Installing a Binary Egg
Install the package as a "binary egg" (which also installs its "hard"
dependencies):

$ /path/to/easy_install --find-links="...." zope.XXX
$ /path/to/easy_install --find-links="...." RestrictedPython


16 changes: 8 additions & 8 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
zope.XXX Package Readme
=======================
RestrictedPython Package Readme
===============================

Overview
--------

Lorem ipsum delorem.
Restricted execution enviromant, supporting untrusted code / templates.

Changes
-------
Expand All @@ -22,16 +22,16 @@ Developer Resources

- Subversion browser:

http://svn.zope.org/zope.XXX/
http://svn.zope.org/RestrictedPython/

- Read-only Subversion checkout:

$ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
$ svn co svn://svn.zope.org/repos/main/RestrictedPython/trunk

- Writable Subversion checkout:

$ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk
$ svn co svn://svn.zope.org/repos/main/RestrictedPython/trunk

- Note that the 'src/zope/XXX' package is acutally a 'svn:externals' link
to the corresponding package in the Zope3 trunk (or to a specific tag,
- Note that the 'src/RestrictedPython' package is acutally a 'svn:externals'
link to the corresponding package in the Zope3 trunk (or to a specific tag,
for released versions of the package).
2 changes: 2 additions & 0 deletions setup.cfg.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[development]
depends = zope.testing

[egg_info]
tag_build = .dev
Expand Down
21 changes: 7 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
Expand All @@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Setup for zope.i18nmessageid package
"""Setup for RestrictedPython package
$Id$
"""
Expand All @@ -23,27 +23,20 @@
except ImportError, e:
from distutils.core import setup, Extension

setup(name='zope.XXX',
setup(name='RestrictedPython',
version='1.0',
url='http://svn.zope.org/zope.XXX',
url='http://svn.zope.org/RestrictedPython',
license='ZPL 2.1',
description='XXX',
description='Restricted Python executiion handlers',
author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org',
long_description='',

packages=['zope', 'zope.XXX'],
packages=['RestrictedPython'],
package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},

## ext_modules=[Extension("zope.XXX._zope_XXX",
## [os.path.join('src', 'zope', 'XXX',
## "_zope_XXX.c")
## ]),
## ],

namespace_packages=['zope',],
tests_require = ['zope.testing'],
install_requires=['zope.deprecation'],
install_requires=[],
include_package_data = True,

zip_safe = False,
Expand Down
7 changes: 0 additions & 7 deletions src/zope/__init__.py

This file was deleted.

4 changes: 2 additions & 2 deletions test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
Expand All @@ -28,7 +28,7 @@

defaults = [
'--path', src,
'--package', 'zope.i18nmessageid',
'--package', 'RestrictedPython',
'--tests-pattern', '^tests$',
]

Expand Down

0 comments on commit ebc10c4

Please sign in to comment.