[Checkins] SVN: keas.kmi/tags/0.3.1/ Release keas.kmi 0.3.1.

Marius Gedminas marius at pov.lt
Thu Sep 11 15:17:25 EDT 2008


Log message for revision 91067:
  Release keas.kmi 0.3.1.
  
  

Changed:
  A   keas.kmi/tags/0.3.1/
  D   keas.kmi/tags/0.3.1/CHANGES.txt
  A   keas.kmi/tags/0.3.1/CHANGES.txt
  D   keas.kmi/tags/0.3.1/setup.py
  A   keas.kmi/tags/0.3.1/setup.py

-=-
Copied: keas.kmi/tags/0.3.1 (from rev 91063, keas.kmi/trunk)

Deleted: keas.kmi/tags/0.3.1/CHANGES.txt
===================================================================
--- keas.kmi/trunk/CHANGES.txt	2008-09-11 18:18:58 UTC (rev 91063)
+++ keas.kmi/tags/0.3.1/CHANGES.txt	2008-09-11 19:17:24 UTC (rev 91067)
@@ -1,40 +0,0 @@
-=======
-CHANGES
-=======
-
-0.3.1 (unreleased)
-------------------
-
-
-0.3.0 (2008-09-04)
-------------------
-
-- A simple KeyHolder utility is available in keas.kmi.keyholder.
-
-
-0.2.0 (2008-09-04)
-------------------
-
-- Sample server shows how to enable SSL
-
-- Front page now shows the number of stored keys instead of a
-  ComponentLookupError message.
-
-- Command-line client for testing a remote Key Management Server
-
-- Bugfix: LocalKeyManagementFacility was broken (AttributeError: 'RESTClient'
-  object has no attribute 'POST')
-
-
-0.1.0 (2008-09-03)
-------------------
-
-- Initial Release
-
-  * Key Generation Service
-
-  * Encryption Service (Master and Local)
-
-  * REST API for key communication between encryption services
-
-  * Encrypted Persistent Storage

Copied: keas.kmi/tags/0.3.1/CHANGES.txt (from rev 91066, keas.kmi/trunk/CHANGES.txt)
===================================================================
--- keas.kmi/tags/0.3.1/CHANGES.txt	                        (rev 0)
+++ keas.kmi/tags/0.3.1/CHANGES.txt	2008-09-11 19:17:24 UTC (rev 91067)
@@ -0,0 +1,42 @@
+=======
+CHANGES
+=======
+
+0.3.1 (2008-09-11)
+------------------
+
+- Relax M2Crypto version requirements to 0.18 or newer.
+
+
+0.3.0 (2008-09-04)
+------------------
+
+- A simple KeyHolder utility is available in keas.kmi.keyholder.
+
+
+0.2.0 (2008-09-04)
+------------------
+
+- Sample server shows how to enable SSL
+
+- Front page now shows the number of stored keys instead of a
+  ComponentLookupError message.
+
+- Command-line client for testing a remote Key Management Server
+
+- Bugfix: LocalKeyManagementFacility was broken (AttributeError: 'RESTClient'
+  object has no attribute 'POST')
+
+
+0.1.0 (2008-09-03)
+------------------
+
+- Initial Release
+
+  * Key Generation Service
+
+  * Encryption Service (Master and Local)
+
+  * REST API for key communication between encryption services
+
+  * Encrypted Persistent Storage

Deleted: keas.kmi/tags/0.3.1/setup.py
===================================================================
--- keas.kmi/trunk/setup.py	2008-09-11 18:18:58 UTC (rev 91063)
+++ keas.kmi/tags/0.3.1/setup.py	2008-09-11 19:17:24 UTC (rev 91067)
@@ -1,78 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2008 Zope Foundation 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.
-#
-##############################################################################
-"""
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup (
-    name='keas.kmi',
-    version='0.3.1dev',
-    author = "Stephan Richter and the Zope Community",
-    author_email = "zope-dev at zope.org",
-    description = "A Key Management Infrastructure",
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('src', 'keas', 'kmi', 'README.txt')
-        + '\n\n' +
-        read('src', 'keas', 'kmi', 'persistent.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license = "ZPL 2.1",
-    keywords = "zope3 security key management infrastructure nist 800-57",
-    classifiers = [
-        'Development Status :: 4 - Beta',
-        'Environment :: Web Environment',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Natural Language :: English',
-        'Operating System :: OS Independent',
-        'Topic :: Internet :: WWW/HTTP',
-        'Framework :: Zope3'],
-    url = 'http://pypi.python.org/pypi/keas.kmi',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['keas'],
-    extras_require = dict(
-        test = [
-            'zope.testing',
-            'zope.app.testing',
-            ],
-        ),
-    install_requires = [
-        'M2Crypto==0.18',
-        'setuptools',
-        'z3c.rest',
-        'zope.component',
-        'zope.interface',
-        'zope.schema',
-        'ZODB3',
-        ],
-    zip_safe = False,
-    entry_points = """
-    [console_scripts]
-    testclient = keas.kmi.testclient:main
-
-    [paste.app_factory]
-    main = keas.kmi.wsgi:application_factory
-    """,
-)

Copied: keas.kmi/tags/0.3.1/setup.py (from rev 91066, keas.kmi/trunk/setup.py)
===================================================================
--- keas.kmi/tags/0.3.1/setup.py	                        (rev 0)
+++ keas.kmi/tags/0.3.1/setup.py	2008-09-11 19:17:24 UTC (rev 91067)
@@ -0,0 +1,78 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Foundation 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.
+#
+##############################################################################
+"""
+$Id$
+"""
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup (
+    name='keas.kmi',
+    version='0.3.1',
+    author = "Stephan Richter and the Zope Community",
+    author_email = "zope-dev at zope.org",
+    description = "A Key Management Infrastructure",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('src', 'keas', 'kmi', 'README.txt')
+        + '\n\n' +
+        read('src', 'keas', 'kmi', 'persistent.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license = "ZPL 2.1",
+    keywords = "zope3 security key management infrastructure nist 800-57",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
+    url = 'http://pypi.python.org/pypi/keas.kmi',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['keas'],
+    extras_require = dict(
+        test = [
+            'zope.testing',
+            'zope.app.testing',
+            ],
+        ),
+    install_requires = [
+        'M2Crypto>=0.18',
+        'setuptools',
+        'z3c.rest',
+        'zope.component',
+        'zope.interface',
+        'zope.schema',
+        'ZODB3',
+        ],
+    zip_safe = False,
+    entry_points = """
+    [console_scripts]
+    testclient = keas.kmi.testclient:main
+
+    [paste.app_factory]
+    main = keas.kmi.wsgi:application_factory
+    """,
+)



More information about the Checkins mailing list