[Checkins] SVN: zope.deprecation/trunk/

Jim Fulton jim at zope.com
Sun Feb 18 16:30:40 EST 2007


Log message for revision 72653:
  

Changed:
  _U  zope.deprecation/trunk/
  D   zope.deprecation/trunk/CHANGES.txt
  U   zope.deprecation/trunk/README.txt
  A   zope.deprecation/trunk/buildout.cfg
  U   zope.deprecation/trunk/setup.py
  _U  zope.deprecation/trunk/src/zope/

-=-

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

   + bin
build
dist
lib
develop-eggs
parts


Deleted: zope.deprecation/trunk/CHANGES.txt
===================================================================
--- zope.deprecation/trunk/CHANGES.txt	2007-02-16 20:19:54 UTC (rev 72652)
+++ zope.deprecation/trunk/CHANGES.txt	2007-02-18 21:30:38 UTC (rev 72653)
@@ -1,22 +0,0 @@
-zope.deprecation Package Changelog
-==================================
-
-zope.deprecation version 3.2.0.2 (2006/04/15)
----------------------------------------------
-
-Fix packaging bug:  'package_dir' must be a *relative* path.
-
-zope.deprecation version 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'.
-
-zope.deprecation version 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.

Modified: zope.deprecation/trunk/README.txt
===================================================================
--- zope.deprecation/trunk/README.txt	2007-02-16 20:19:54 UTC (rev 72652)
+++ zope.deprecation/trunk/README.txt	2007-02-18 21:30:38 UTC (rev 72653)
@@ -1,11 +1,42 @@
-zope.deprecation Package Readme
-===============================
+****************
+zope.deprecation
+****************
 
-Overview
---------
-
 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.
+
+Releases
+********
+
+==================
+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.

Added: zope.deprecation/trunk/buildout.cfg
===================================================================
--- zope.deprecation/trunk/buildout.cfg	2007-02-16 20:19:54 UTC (rev 72652)
+++ zope.deprecation/trunk/buildout.cfg	2007-02-18 21:30:38 UTC (rev 72653)
@@ -0,0 +1,9 @@
+[buildout]
+parts = test
+develop = .
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zope.deprecation
+
+


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

Modified: zope.deprecation/trunk/setup.py
===================================================================
--- zope.deprecation/trunk/setup.py	2007-02-16 20:19:54 UTC (rev 72652)
+++ zope.deprecation/trunk/setup.py	2007-02-18 21:30:38 UTC (rev 72653)
@@ -12,32 +12,41 @@
 #
 ##############################################################################
 """Setup for zope.deprecation package
-
-$Id$
 """
 
 import os
-
 from setuptools import setup, find_packages
 
-setup(name='zope.deprecation',
-      version='3.3dev',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      url='http://svn.zope.org/zope.deprecation',
-      license='ZPL 2.1',
-      description='Zope 3 Deprecation Infrastructure',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="This package provides a simple function called "
-                       "'deprecated(names, reason)', which Zope3 uses to "
-                       "mark APIs and components which will be removed in "
-                       "future releases.",
+name = 'zope.deprecation'
+setup(
+    name=name,
+    version='3.3.0',
+    url='http://www.python.org/pypi/'+name,
+    license='ZPL 2.1',
+    description='Zope 3 Deprecation Infrastructure',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    long_description=(
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'zope', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
       
       package_dir = {'': 'src'},
       packages=find_packages('src'),
       namespace_packages=['zope',],
+      install_requires = 'setuptools',
 
-      tests_require = ['zope.testing'],
+      extras_require = dict(test=['zope.testing']),
       include_package_data = True,
       zip_safe = False,
       )


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

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




More information about the Checkins mailing list