[Checkins] SVN: zope.proxy/trunk/ Updated to be a buildout and to use Zope 3.3.0 version.

Jim Fulton jim at zope.com
Wed Dec 20 11:24:05 EST 2006


Log message for revision 71622:
  Updated to be a buildout and to use Zope 3.3.0 version.
  Updated release info.
  

Changed:
  _U  zope.proxy/trunk/
  U   zope.proxy/trunk/CHANGES.txt
  D   zope.proxy/trunk/INSTALL.txt
  D   zope.proxy/trunk/MANIFEST.in
  A   zope.proxy/trunk/buildout.cfg
  D   zope.proxy/trunk/develop.py
  D   zope.proxy/trunk/setup.cfg.in
  U   zope.proxy/trunk/setup.py
  _U  zope.proxy/trunk/src/zope/

-=-

Property changes on: zope.proxy/trunk
___________________________________________________________________
Name: svn:ignore
   - bin
build
dist
lib
setup.cfg

   + bin
build
dist
develop-eggs
parts
.installed.cfg

Name: svn:externals
   - workspace svn://svn.zope.org/repos/main/projectsupport/trunk/src/workspace

   + 


Modified: zope.proxy/trunk/CHANGES.txt
===================================================================
--- zope.proxy/trunk/CHANGES.txt	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/CHANGES.txt	2006-12-20 16:24:04 UTC (rev 71622)
@@ -1,6 +1,13 @@
 zope.proxy Package Changelog
 ============================
 
+zope.proxy version 3.3.0 (2006/12/20)
+-------------------------------------
+
+- Corresponds to the verison of the zope.proxy package shipped as part of
+  the Zope 3.3.0 release.
+
+
 zope.proxy version 3.2.0 (2006/01/05)
 -------------------------------------
 

Deleted: zope.proxy/trunk/INSTALL.txt
===================================================================
--- zope.proxy/trunk/INSTALL.txt	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/INSTALL.txt	2006-12-20 16:24:04 UTC (rev 71622)
@@ -1,83 +0,0 @@
-Installing This Package
-=======================
-
-Prerequisites
--------------
-
-The installation steps below assume that you have the cool new 'setuptools'
-package installed in your Python.  Here is where to get it:
-
-  $ wget http://peak.telecommunity.com/dist/ez_setup.py
-  $ /path/to/your/python ez_setup.py # req. write access to 'site-packages'
-
-
-  - Docs for EasyInstall:
-    http://peak.telecommunity.com/DevCenter/EasyInstall
-
-  - Docs for setuptools:
-    http://peak.telecommunity.com/DevCenter/setuptools
-
-  - Docs for eggs:
-    http://peak.telecommunity.com/DevCenter/PythonEggs
-
-
-Installing a Development Checkout
----------------------------------
-
-Check out the package from subversion:
-
-  $ svn co svn+ssh://svn.zope.org/repos/main/zope.proxy/trunk \
-    src/zope.proxy
-  $ cd src/zope.proxy
-
-Install it as a "devlopment egg" (which also installs its "hard"
-dependencies):
-
-  $ /path/to/your/python setup.py devel
-
-The installation of dependency eggs uses the 'setup.cfg' file in
-the checkout.  You can supply '--find-links' on the command line to
-point it at a non-standard package repository.
-
-
-Running the Tests
------------------
-
-To test the package, you will also need the 'zope.testing' package, which
-can't (yet) be automatically installed.  Eventually, you should be able to
-type:
-
-  $ /path/to/your/python setup.py test
-
-and have it install the "testing dependencies."  Today, the workaround
-is to install it manually:
-
-  $ /path/to/easy_install --find-links="...." zope.testing
-
-You can then run the tests (finally) from the checkout directory:
-
-  $ /path/to/your/python test.py
-    Running:
-      .............
-    Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
-
-
-Installing a Source Distribution
---------------------------------
-
-You can also install it from a source distribution:
-
-  $ /path/to/easy_install --find-links="...." -eb src zope.proxy
-  $ cd src/zope.proxy
-  $ /path/to/your/python setup.py devel
-
-
-Installing a Binary Egg
------------------------
-
-Install the package as a "binary egg" (which also installs its "hard"
-dependencies):
-
-  $ /path/to/easy_install --find-links="...." zope.proxy
-
-

Deleted: zope.proxy/trunk/MANIFEST.in
===================================================================
--- zope.proxy/trunk/MANIFEST.in	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/MANIFEST.in	2006-12-20 16:24:04 UTC (rev 71622)
@@ -1 +0,0 @@
-exclude setup.cfg

Added: zope.proxy/trunk/buildout.cfg
===================================================================
--- zope.proxy/trunk/buildout.cfg	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/buildout.cfg	2006-12-20 16:24:04 UTC (rev 71622)
@@ -0,0 +1,7 @@
+[buildout]
+parts = test
+develop = .
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zope.proxy


Property changes on: zope.proxy/trunk/buildout.cfg
___________________________________________________________________
Name: svn:eol-style
   + native

Deleted: zope.proxy/trunk/develop.py
===================================================================
--- zope.proxy/trunk/develop.py	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/develop.py	2006-12-20 16:24:04 UTC (rev 71622)
@@ -1,21 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Workspace configuration wrapper script
-
-$Id$
-"""
-
-import workspace.develop
-
-workspace.develop.main()

Deleted: zope.proxy/trunk/setup.cfg.in
===================================================================
--- zope.proxy/trunk/setup.cfg.in	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/setup.cfg.in	2006-12-20 16:24:04 UTC (rev 71622)
@@ -1,6 +0,0 @@
-[development]
-depends = zope.testing
-
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Modified: zope.proxy/trunk/setup.py
===================================================================
--- zope.proxy/trunk/setup.py	2006-12-20 15:39:39 UTC (rev 71621)
+++ zope.proxy/trunk/setup.py	2006-12-20 16:24:04 UTC (rev 71622)
@@ -24,7 +24,7 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.proxy',
-      version='3.3-dev',
+      version='3.3.0',
       url='http://svn.zope.org/zope.proxy',
       license='ZPL 2.1',
       description='Zope Proxies',
@@ -49,8 +49,7 @@
 
       namespace_packages=['zope',],
       tests_require = ['zope.testing'],
-      install_requires=['zope.interface'],
+      install_requires=['zope.interface', 'setuptools'],
       include_package_data = True,
-
       zip_safe = False,
       )


Property changes on: zope.proxy/trunk/src/zope
___________________________________________________________________
Name: svn:externals
   - proxy svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/proxy

   + proxy svn://svn.zope.org/repos/main/Zope3/tags/3.3.0/src/zope/proxy




More information about the Checkins mailing list