[Checkins] SVN: zope.size/tags/3.4.1/ Tag 3.4.1

Dan Korostelev nadako at gmail.com
Tue Feb 10 05:55:22 EST 2009


Log message for revision 96376:
  Tag 3.4.1

Changed:
  A   zope.size/tags/3.4.1/
  D   zope.size/tags/3.4.1/CHANGES.txt
  A   zope.size/tags/3.4.1/CHANGES.txt
  D   zope.size/tags/3.4.1/README.txt
  A   zope.size/tags/3.4.1/README.txt
  D   zope.size/tags/3.4.1/buildout.cfg
  A   zope.size/tags/3.4.1/buildout.cfg
  D   zope.size/tags/3.4.1/setup.py
  A   zope.size/tags/3.4.1/setup.py

-=-
Deleted: zope.size/tags/3.4.1/CHANGES.txt
===================================================================
--- zope.size/trunk/CHANGES.txt	2009-02-10 09:56:34 UTC (rev 96373)
+++ zope.size/tags/3.4.1/CHANGES.txt	2009-02-10 10:55:21 UTC (rev 96376)
@@ -1,16 +0,0 @@
-=======
-CHANGES
-=======
-
-3.4.1dev (unreleased)
----------------------
-
-- Added support to bootstrap on Jython.
-
-- Added docstrings
-
-3.4.0 (2006-09-29)
-------------------
-
-- First release as a separate egg
-

Copied: zope.size/tags/3.4.1/CHANGES.txt (from rev 96375, zope.size/trunk/CHANGES.txt)
===================================================================
--- zope.size/tags/3.4.1/CHANGES.txt	                        (rev 0)
+++ zope.size/tags/3.4.1/CHANGES.txt	2009-02-10 10:55:21 UTC (rev 96376)
@@ -0,0 +1,19 @@
+=======
+CHANGES
+=======
+
+3.4.1 (2009-09-10)
+------------------
+
+- Added support to bootstrap on Jython.
+
+- Added docstrings
+
+- Beautify package's README and include CHANGES into the description.
+
+- Changed package's url to PyPI instead of Subversion.
+
+3.4.0 (2006-09-29)
+------------------
+
+- First release as a separate egg

Deleted: zope.size/tags/3.4.1/README.txt
===================================================================
--- zope.size/trunk/README.txt	2009-02-10 09:56:34 UTC (rev 96373)
+++ zope.size/tags/3.4.1/README.txt	2009-02-10 10:55:21 UTC (rev 96376)
@@ -1,7 +0,0 @@
-zope.size Package Readme
-========================
-
-Overview
---------
-
-Interfaces and adapters that give the size of an object.

Copied: zope.size/tags/3.4.1/README.txt (from rev 96375, zope.size/trunk/README.txt)
===================================================================
--- zope.size/tags/3.4.1/README.txt	                        (rev 0)
+++ zope.size/tags/3.4.1/README.txt	2009-02-10 10:55:21 UTC (rev 96376)
@@ -0,0 +1,6 @@
+This package provides a definition of simple interface that allows to
+retrieve the size of the object for displaying and for sorting.
+
+The default adapter is also provided. It expects objects to have the ``getSize``
+method that returns size in bytes, however, it won't crash if an object doesn't
+have one and will show size as ``not available`` instead.

Deleted: zope.size/tags/3.4.1/buildout.cfg
===================================================================
--- zope.size/trunk/buildout.cfg	2009-02-10 09:56:34 UTC (rev 96373)
+++ zope.size/tags/3.4.1/buildout.cfg	2009-02-10 10:55:21 UTC (rev 96376)
@@ -1,9 +0,0 @@
-[buildout]
-develop = .
-parts = test
-
-find-links = http://download.zope.org/distribution/
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.size

Copied: zope.size/tags/3.4.1/buildout.cfg (from rev 96374, zope.size/trunk/buildout.cfg)
===================================================================
--- zope.size/tags/3.4.1/buildout.cfg	                        (rev 0)
+++ zope.size/tags/3.4.1/buildout.cfg	2009-02-10 10:55:21 UTC (rev 96376)
@@ -0,0 +1,7 @@
+[buildout]
+develop = .
+parts = test
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zope.size

Deleted: zope.size/tags/3.4.1/setup.py
===================================================================
--- zope.size/trunk/setup.py	2009-02-10 09:56:34 UTC (rev 96373)
+++ zope.size/tags/3.4.1/setup.py	2009-02-10 10:55:21 UTC (rev 96376)
@@ -1,41 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 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.
-#
-##############################################################################
-"""Setup for zope.size package
-
-$Id$
-"""
-
-import os
-
-from setuptools import setup, find_packages
-
-setup(name='zope.size',
-      version = '3.4.1dev',
-      url='http://svn.zope.org/zope.size',
-      license='ZPL 2.1',
-      description='Zope size',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      long_description="Interfaces and adapters that give the size of an object.",
-
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope'],
-      tests_require = [],
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'zope.i18nmessageid'],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.size/tags/3.4.1/setup.py (from rev 96375, zope.size/trunk/setup.py)
===================================================================
--- zope.size/tags/3.4.1/setup.py	                        (rev 0)
+++ zope.size/tags/3.4.1/setup.py	2009-02-10 10:55:21 UTC (rev 96376)
@@ -0,0 +1,43 @@
+##############################################################################
+#
+# Copyright (c) 2006 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.
+#
+##############################################################################
+"""Setup for zope.size package
+
+$Id$
+"""
+
+import os
+
+from setuptools import setup, find_packages
+
+setup(name='zope.size',
+      version = '3.4.1',
+      url='http://pypi.python.org/pypi/zope.size',
+      license='ZPL 2.1',
+      description='Interfaces and simple adapter that give the size of an object',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      long_description=\
+          open('README.txt').read() + \
+          '\n\n' + \
+          open('CHANGES.txt').read(),
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope'],
+      tests_require = [],
+      install_requires=['setuptools',
+                        'zope.interface',
+                        'zope.i18nmessageid'],
+      include_package_data = True,
+      zip_safe = False,
+      )



More information about the Checkins mailing list