[Checkins] SVN: zope.deprecation/trunk/ Format docs like in other Zope packages.

Gediminas Paulauskas menesis at pov.lt
Tue Jun 7 12:18:40 EDT 2011


Log message for revision 121870:
  Format docs like in other Zope packages.
  Remove very old changelog entries that were not released separately.
  

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

-=-
Modified: zope.deprecation/trunk/CHANGES.txt
===================================================================
--- zope.deprecation/trunk/CHANGES.txt	2011-06-07 16:16:17 UTC (rev 121869)
+++ zope.deprecation/trunk/CHANGES.txt	2011-06-07 16:18:40 UTC (rev 121870)
@@ -1,56 +1,27 @@
-``zope.deprecation`` Changelog
-##############################
+=======
+CHANGES
+=======
 
-
-==================
 3.4.1 (unreleased)
-==================
+------------------
 
-Removed import cycle for ``__show__`` by defining it in the
-``zope.deprecation.deprecation`` module.
+- Removed import cycle for ``__show__`` by defining it in the
+  ``zope.deprecation.deprecation`` module.
 
-Added support to bootstrap on Jython.
+- Added support to bootstrap on Jython.
 
-Fix ``zope.deprecation.warn()`` to make the signature identical to
-``warnings.warn()`` and to check for .pyc and .pyo files.
+- Fix ``zope.deprecation.warn()`` to make the signature identical to
+  ``warnings.warn()`` and to check for .pyc and .pyo files.
 
 
-==================
-3.4.0 (2007/07/19)
-==================
+3.4.0 (2007-07-19)
+------------------
 
-Release 3.4 final, corresponding to Zope 3.4.
+- Release 3.4 final, corresponding to Zope 3.4.
 
 
-==================
-3.3.0 (2007/02/18)
-==================
+3.3.0 (2007-02-18)
+------------------
 
-Corresponds to the verison of the ``zope.deprecation`` package shipped as
-part of the Zope 3.3.0 release.
-
-
-====================
-3.2.0.2 (2006/04/15)
-====================
-
-Fix packaging bug:  ``package_dir`` must be a *relative* path.
-
-
-==================
-3.2.0 (2006/01/05)
-==================
-
-Corresponds to the verison of the ``zope.deprecation`` package shipped as part
-of the Zope 3.2.0 release.
-
-Refactored to eliminate dependency on ``zope.proxy``. This was an especially
-bad dependency due to the required C exension in ``zope.proxy``.
-
-
-==================
-3.1.0 (2005/10/03)
-==================
-
-Corresponds to the verison of the ``zope.deprecation`` package shipped as
-part of the Zope 3.1.0 release.
+- Corresponds to the version of the ``zope.deprecation`` package shipped as
+  part of the Zope 3.3.0 release.

Modified: zope.deprecation/trunk/README.txt
===================================================================
--- zope.deprecation/trunk/README.txt	2011-06-07 16:16:17 UTC (rev 121869)
+++ zope.deprecation/trunk/README.txt	2011-06-07 16:18:40 UTC (rev 121870)
@@ -1,8 +1,2 @@
-``zope.deprecation`` Package
-############################
-
-When we started working on Zope 3.1, we noticed that the hardest part of the
-development process was to ensure backward-compatibility and correctly mark
-deprecated modules, classes, functions, methods and properties. This package
-provides a simple function called ``deprecated(names, reason)`` to deprecate
-the previously mentioned Python objects.
+This package provides a simple function called ``deprecated(names, reason)`` to
+mark deprecated modules, classes, functions, methods and properties.

Modified: zope.deprecation/trunk/setup.py
===================================================================
--- zope.deprecation/trunk/setup.py	2011-06-07 16:16:17 UTC (rev 121869)
+++ zope.deprecation/trunk/setup.py	2011-06-07 16:18:40 UTC (rev 121870)
@@ -31,25 +31,23 @@
     version = '3.4.1dev',
     url='http://www.python.org/pypi/'+name,
     license='ZPL 2.1',
-    description='Zope 3 Deprecation Infrastructure',
-    author='Zope Foundation and Contributors',
+    description='Zope Deprecation Infrastructure',
+    author='Zope Corporation and Contributors',
     author_email='zope-dev at zope.org',
     long_description=(
         read('README.txt')
-        + '\n' +
+        + '\n\n' +
+        '.. contents::\n'
+        + '\n\n' +
         read('src', 'zope', 'deprecation', 'README.txt')
-        + '\n' +
+        + '\n\n' +
         read('CHANGES.txt')
-        + '\n' +
-        'Download\n'
-        '########\n'
         ),
-
-      package_dir = {'': 'src'},
-      packages=find_packages('src'),
-      namespace_packages=['zope',],
-      install_requires = 'setuptools',
-      extras_require = dict(test=['zope.testing']),
-      include_package_data = True,
-      zip_safe = False,
-      )
+    package_dir = {'': 'src'},
+    packages=find_packages('src'),
+    namespace_packages=['zope',],
+    install_requires = 'setuptools',
+    extras_require = dict(test=['zope.testing']),
+    include_package_data = True,
+    zip_safe = False,
+    )



More information about the checkins mailing list