Commit 66f55968 authored by Tres Seaver's avatar Tres Seaver

Initial eggification.

parent 516d2f31
zope.XXX Package Changelog zope.proxy Package Changelog
========================== ============================
zope.XXX version 3.2.1 (2006/03/26) zope.proxy version 3.2.1 (2006/03/26)
----------------------------------- -------------------------------------
- Corresponds to the verison of the zope.XXX package shipped as part of - Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.2.1 release. the Zope 3.2.1 release.
zope.XXX version 3.2.0 (2006/01/05) zope.proxy 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 zope.proxy package shipped as part of
the Zope 3.2.0 release. the Zope 3.2.0 release.
zope.XXX version 3.1.0 (2005/10/03) zope.proxy 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 zope.proxy package shipped as part of
the Zope 3.1.0 release. the Zope 3.1.0 release.
zope.XXX version 3.0.1 (2005/07/27) zope.proxy version 3.0.1 (2005/07/27)
----------------------------------- -------------------------------------
- Corresponds to the verison of the zope.XXX package shipped as part of - Corresponds to the verison of the zope.proxy package shipped as part of
the Zope X3.0.1 release. the Zope X3.0.1 release.
zope.XXX version 3.0.0 (2004/11/07) zope.proxy 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 zope.proxy package shipped as part of
the Zope X3.0.0 release. the Zope X3.0.0 release.
...@@ -26,9 +26,9 @@ Installing a Development Checkout ...@@ -26,9 +26,9 @@ Installing a Development Checkout
Check out the package from subversion: Check out the package from subversion:
$ svn co svn+ssh://svn.zope.org/repos/main/zope.XXX/trunk \ $ svn co svn+ssh://svn.zope.org/repos/main/zope.proxy/trunk \
src/zope.XXX src/zope.proxy
$ cd src/zope.XXX $ cd src/zope.proxy
Install it as a "devlopment egg" (which also installs its "hard" Install it as a "devlopment egg" (which also installs its "hard"
dependencies): dependencies):
...@@ -67,8 +67,8 @@ Installing a Source Distribution ...@@ -67,8 +67,8 @@ Installing a Source Distribution
You can also install it from a source distribution: You can also install it from a source distribution:
$ /path/to/easy_install --find-links="...." -eb src zope.XXX $ /path/to/easy_install --find-links="...." -eb src zope.proxy
$ cd src/zope.XXX $ cd src/zope.proxy
$ /path/to/your/python setup.py devel $ /path/to/your/python setup.py devel
...@@ -78,6 +78,6 @@ Installing a Binary Egg ...@@ -78,6 +78,6 @@ Installing a Binary Egg
Install the package as a "binary egg" (which also installs its "hard" Install the package as a "binary egg" (which also installs its "hard"
dependencies): dependencies):
$ /path/to/easy_install --find-links="...." zope.XXX $ /path/to/easy_install --find-links="...." zope.proxy
zope.XXX Package Readme zope.proxy Package Readme
======================= =========================
Overview Overview
-------- --------
...@@ -22,16 +22,16 @@ Developer Resources ...@@ -22,16 +22,16 @@ Developer Resources
- Subversion browser: - Subversion browser:
http://svn.zope.org/zope.XXX/ http://svn.zope.org/zope.proxy/
- Read-only Subversion checkout: - Read-only Subversion checkout:
$ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk $ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
- Writable Subversion checkout: - Writable Subversion checkout:
$ svn co svn://svn.zope.org/repos/main/zope.XXX/trunk $ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
- Note that the 'src/zope/XXX' package is acutally a 'svn:externals' link - Note that the 'src/zope/proxy' package is acutally a 'svn:externals' link
to the corresponding package in the Zope3 trunk (or to a specific tag, to the corresponding package in the Zope3 trunk (or to a specific tag,
for released versions of the package). for released versions of the package).
[development]
depends = zope.testing
[egg_info] [egg_info]
tag_build = .dev tag_build = .dev
......
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 Zope Corporation and Contributors. # Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved. # All Rights Reserved.
# #
# This software is subject to the provisions of the Zope Public License, # This software is subject to the provisions of the Zope Public License,
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE. # FOR A PARTICULAR PURPOSE.
# #
############################################################################## ##############################################################################
"""Setup for zope.i18nmessageid package """Setup for zope.proxy package
$Id$ $Id$
""" """
...@@ -23,23 +23,23 @@ try: ...@@ -23,23 +23,23 @@ try:
except ImportError, e: except ImportError, e:
from distutils.core import setup, Extension from distutils.core import setup, Extension
setup(name='zope.XXX', setup(name='zope.proxy',
version='1.0', version='1.0',
url='http://svn.zope.org/zope.XXX', url='http://svn.zope.org/zope.proxy',
license='ZPL 2.1', license='ZPL 2.1',
description='XXX', description='Zope Proxies',
author='Zope Corporation and Contributors', author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org', author_email='zope3-dev@zope.org',
long_description='', long_description='',
packages=['zope', 'zope.XXX'], packages=['zope', 'zope.proxy'],
package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')}, package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
## ext_modules=[Extension("zope.XXX._zope_XXX", ext_modules=[Extension("zope.proxy._zope_proxy_proxy",
## [os.path.join('src', 'zope', 'XXX', [os.path.join('src', 'zope', 'proxy',
## "_zope_XXX.c") "_zope_proxy_proxy.c")
## ]), ]),
## ], ],
namespace_packages=['zope',], namespace_packages=['zope',],
tests_require = ['zope.testing'], tests_require = ['zope.testing'],
......
...@@ -28,7 +28,7 @@ from zope.testing import testrunner ...@@ -28,7 +28,7 @@ from zope.testing import testrunner
defaults = [ defaults = [
'--path', src, '--path', src,
'--package', 'zope.i18nmessageid', '--package', 'zope.proxy',
'--tests-pattern', '^tests$', '--tests-pattern', '^tests$',
] ]
......
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