[Checkins] SVN: zope.proxy/trunk/ Updated release info.

Jim Fulton jim at zope.com
Thu Jul 12 15:15:18 EDT 2007


Log message for revision 77784:
  Updated release info.
  

Changed:
  D   zope.proxy/trunk/CHANGES.txt
  U   zope.proxy/trunk/README.txt
  U   zope.proxy/trunk/setup.py

-=-
Deleted: zope.proxy/trunk/CHANGES.txt
===================================================================
--- zope.proxy/trunk/CHANGES.txt	2007-07-12 18:20:56 UTC (rev 77783)
+++ zope.proxy/trunk/CHANGES.txt	2007-07-12 19:15:18 UTC (rev 77784)
@@ -1,27 +0,0 @@
-zope.proxy Package Changelog
-============================
-
-zope.proxy version 3.4.0a1 (2006/12/20)
----------------------------------------
-
-- Alpha release to take snapshot of trunk.
-
-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)
--------------------------------------
-
-- Corresponds to the verison of the zope.proxy package shipped as part of
-  the Zope 3.2.0 release.
-
-
-zope.proxy version 3.0.0 (2004/11/07)
--------------------------------------
-
-- Corresponds to the verison of the zope.proxy package shipped as part of
-  the Zope X3.0.0 release.

Modified: zope.proxy/trunk/README.txt
===================================================================
--- zope.proxy/trunk/README.txt	2007-07-12 18:20:56 UTC (rev 77783)
+++ zope.proxy/trunk/README.txt	2007-07-12 19:15:18 UTC (rev 77784)
@@ -1,43 +1,47 @@
-zope.proxy Package Readme
-=========================
+***************************
+Generic Transparent Proxies
+***************************
 
-Overview
---------
-
-In Zope3, proxies are special objects which serve as mostly-transparent
+Proxies are special objects which serve as mostly-transparent
 wrappers around another object, intervening in the apparent behavior of
 the wrapped object only when necessary to apply the policy (e.g., access
 checking, location brokering, etc.) for which the proxy is responsible.
-Zope 2 uses acquisition wrappers liberally, to impose a policy that
-attribute lookups which failed on the "self" instance could be delegated
-to the "parent" instance.
 
+Editorial note:
+
+   Unfortunately, we don't have separate documentation for zope.proxy
+   at this time.  This is a shame because the are generically useful.
+   We are publishing this release without documentation mainly because
+   it is a dependency of other releases.
+
 Changes
--------
+*******
 
-See CHANGES.txt.
+3.4.0 (2007/07/12)
+==================
 
-Installation
+New Features
 ------------
 
-See INSTALL.txt.
+Added a decorator module that supports declaring interfaces on proxies
+that get blended with the interfaces of the things they proxy.
 
+3.3.0 (2006/12/20)
+==================
 
-Developer Resources
--------------------
+Corresponds to the verison of the zope.proxy package shipped as part of
+the Zope 3.3.0 release.
 
-- Subversion browser:
 
-  http://svn.zope.org/zope.proxy/
+3.2.0 (2006/01/05)
+==================
 
-- Read-only Subversion checkout:
+Corresponds to the verison of the zope.proxy package shipped as part of
+the Zope 3.2.0 release.
 
-  $ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
 
-- Writable Subversion checkout:
+3.0.0 (2004/11/07)
+==================
 
-  $ svn co svn://svn.zope.org/repos/main/zope.proxy/trunk
-
-- 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,
-  for released versions of the package).
+Corresponds to the verison of the zope.proxy package shipped as part of
+the Zope X3.0.0 release.

Modified: zope.proxy/trunk/setup.py
===================================================================
--- zope.proxy/trunk/setup.py	2007-07-12 18:20:56 UTC (rev 77783)
+++ zope.proxy/trunk/setup.py	2007-07-12 19:15:18 UTC (rev 77784)
@@ -20,19 +20,31 @@
 
 from setuptools import setup, Extension
 
-setup(name='zope.proxy',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.proxy',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description=(
+        read('README.txt')
+        + '\n' +
+# Waaa  'Detailed Documentation\n'
+#       '**********************\n'
+#       + '\n' +
+#       + '\n' +
+        'Download\n'
+        '**********************\n'
+        )
+
+open('doc.txt', 'w').write(long_description)
+
+name = 'zope.proxy'
+setup(name=name,
+      version = '3.4.0',
+      url='http://www.python.org/pypi/'+name,
       license='ZPL 2.1',
-      description='Zope Proxies',
+      description='Generic Transpatent Proxies',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="In Zope3, proxies are special objects which serve as "
-                       "mostly-transparent wrappers around another object, "
-                       "intervening in the apparent behavior of the wrapped "
-                       "object only when necessary to apply the policy "
-                       "(e.g., access checking, location brokering, etc.) "
-                       "for which the proxy is responsible.",
+      long_description=long_description,
       
       packages=['zope', 'zope.proxy'],
       package_dir = {'': 'src'},



More information about the Checkins mailing list