Author: jpotts
Date: Tue Mar 8 20:02:16 2011
New Revision: 1079507
URL: http://svn.apache.org/viewvc?rev=1079507&view=rev
Log:
Minor release cleanup issues for cmislib CMIS-312
Removed:
chemistry/cmislib/trunk/DISCLAIMER
chemistry/cmislib/trunk/src/cmislib.egg-info/DISCLAIMER
Modified:
chemistry/cmislib/trunk/README.txt
chemistry/cmislib/trunk/setup.py
chemistry/cmislib/trunk/src/cmislib.egg-info/PKG-INFO
chemistry/cmislib/trunk/src/cmislib.egg-info/SOURCES.txt
chemistry/cmislib/trunk/src/cmislib/net.py
chemistry/cmislib/trunk/src/doc/src/devguide.rst
chemistry/cmislib/trunk/src/doc/src/tests.rst
Modified: chemistry/cmislib/trunk/README.txt
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/README.txt?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/README.txt (original)
+++ chemistry/cmislib/trunk/README.txt Tue Mar 8 20:02:16 2011
@@ -11,7 +11,7 @@ http://www.oasis-open.org/committees/cmi
SOURCE
-The source code for this project lives at
http://incubator.apache.org/chemistry/
+The source code for this project lives at http://chemistry.apache.org/
TESTS
Modified: chemistry/cmislib/trunk/setup.py
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/setup.py?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/setup.py (original)
+++ chemistry/cmislib/trunk/setup.py Tue Mar 8 20:02:16 2011
@@ -26,12 +26,12 @@ def read(fname):
setup(
name = "cmislib",
- description = 'Apache Chemistry (Incubating) CMIS client library for
Python',
+ description = 'Apache Chemistry CMIS client library for Python',
version = version,
author = 'Apache Chemistry Project',
- author_email = '[email protected]',
+ author_email = '[email protected]',
license = 'Apache License (2.0)',
- url = 'http://incubator.apache.org/chemistry/',
+ url = 'http://chemistry.apache.org/',
package_dir = {'':'src'},
packages = find_packages('src', exclude=['tests']),
#include_package_data = True,
Modified: chemistry/cmislib/trunk/src/cmislib.egg-info/PKG-INFO
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/src/cmislib.egg-info/PKG-INFO?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/src/cmislib.egg-info/PKG-INFO (original)
+++ chemistry/cmislib/trunk/src/cmislib.egg-info/PKG-INFO Tue Mar 8 20:02:16
2011
@@ -1,10 +1,10 @@
Metadata-Version: 1.0
Name: cmislib
Version: 0.5
-Summary: Apache Chemistry (Incubating) CMIS client library for Python
-Home-page: http://incubator.apache.org/chemistry/
+Summary: Apache Chemistry CMIS client library for Python
+Home-page: http://chemistry.apache.org/
Author: Apache Chemistry Project
-Author-email: [email protected]
+Author-email: [email protected]
License: Apache License (2.0)
Description: ABOUT
@@ -19,7 +19,7 @@ Description: ABOUT
SOURCE
- The source code for this project lives at
http://incubator.apache.org/chemistry/
+ The source code for this project lives at http://chemistry.apache.org/
TESTS
Modified: chemistry/cmislib/trunk/src/cmislib.egg-info/SOURCES.txt
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/src/cmislib.egg-info/SOURCES.txt?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/src/cmislib.egg-info/SOURCES.txt (original)
+++ chemistry/cmislib/trunk/src/cmislib.egg-info/SOURCES.txt Tue Mar 8
20:02:16 2011
@@ -1,4 +1,3 @@
-DISCLAIMER
KEYS
LICENSE.txt
MANIFEST.in
@@ -13,7 +12,6 @@ src/cmislib/exceptions.py
src/cmislib/messages.py
src/cmislib/model.py
src/cmislib/net.py
-src/cmislib.egg-info/DISCLAIMER
src/cmislib.egg-info/LICENSE.txt
src/cmislib.egg-info/NOTICE.txt
src/cmislib.egg-info/PKG-INFO
Modified: chemistry/cmislib/trunk/src/cmislib/net.py
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/src/cmislib/net.py?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/src/cmislib/net.py (original)
+++ chemistry/cmislib/trunk/src/cmislib/net.py Tue Mar 8 20:02:16 2011
@@ -100,7 +100,7 @@ class RESTService(object):
"""
def __init__(self):
- self.user_agent = 'cmislib/%s +http://code.google.com/p/cmislib/'
+ self.user_agent = 'cmislib/%s +http://chemistry.apache.org/'
def get(self,
url,
Modified: chemistry/cmislib/trunk/src/doc/src/devguide.rst
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/src/doc/src/devguide.rst?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/src/doc/src/devguide.rst (original)
+++ chemistry/cmislib/trunk/src/doc/src/devguide.rst Tue Mar 8 20:02:16 2011
@@ -52,11 +52,11 @@ Checklist:
#. Setuptools build
* python setup.py bdist sdist
- #. Upload egg and tar to Google Code downloads
- #. Make new downloads featured, old downloads deprecated
- #. Pypi update
- * python setup.py upload
+ * Use release script to sign files
+ #. Copy files to Apache, start vote
+ #. If vote passes, copy files to Apache dist
+ #. Upload files to Pypi
#. Tag the release in Subversion
#. Check the `cheesecake <http://pycheesecake.org/>`_ score
* python cheesecake_index --name=cmislib
Modified: chemistry/cmislib/trunk/src/doc/src/tests.rst
URL:
http://svn.apache.org/viewvc/chemistry/cmislib/trunk/src/doc/src/tests.rst?rev=1079507&r1=1079506&r2=1079507&view=diff
==============================================================================
--- chemistry/cmislib/trunk/src/doc/src/tests.rst (original)
+++ chemistry/cmislib/trunk/src/doc/src/tests.rst Tue Mar 8 20:02:16 2011
@@ -40,4 +40,4 @@ If everything goes well, you should see:
OK
.. note::
- Until the CMIS specification is ratified, and depending on the
implementation of the CMIS provider, you may see errors or failures instead of
'OK'. See the `Known Issues
<http://code.google.com/p/cmislib/wiki/KnownIssues>`_ page on the cmislib wiki
for a list of known test failures by CMIS provider.
+ Depending on the implementation of the CMIS provider, you may see errors or
failures instead of 'OK'.