[Checkins] SVN: zope.i18nmessageid/trunk/ - Make PyPI the home URL

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Sep 26 11:28:10 EDT 2007


Log message for revision 80111:
  - Make PyPI the home URL
  
  

Changed:
  U   zope.i18nmessageid/trunk/CHANGES.txt
  U   zope.i18nmessageid/trunk/setup.py

-=-
Modified: zope.i18nmessageid/trunk/CHANGES.txt
===================================================================
--- zope.i18nmessageid/trunk/CHANGES.txt	2007-09-26 15:26:45 UTC (rev 80110)
+++ zope.i18nmessageid/trunk/CHANGES.txt	2007-09-26 15:28:10 UTC (rev 80111)
@@ -1,35 +1,40 @@
 zope.i18nmessageid Package Changelog
 ====================================
 
+Version 3.4.3 (2007/9/26)
+-------------------------
+
+- Make PyPI the home URL.
+
 Version 3.4.2 (2007/9/25)
 -------------------------
 
-- move ZopeMessageFactory from zope.app.i18n to this package 
+- Moved the ``ZopeMessageFactory`` from ``zope.app.i18n`` to this package.
 
 
-zope.i18nmessageid version 3.4.0 (2007/07/19)
----------------------------------------------
+Version 3.4.0 (2007/07/19)
+--------------------------
 
 - Remove incorrect dependency.
 
 - Create final release to reflect package status.
 
 
-zope.i18nmessageid version 3.2.0 (2006/01/05)
----------------------------------------------
+Version 3.2.0 (2006/01/05)
+--------------------------
 
-Corresponds to the verison of the zope.i18nmessageid package shipped as
-part of the Zope 3.2.0 release.
+- Corresponds to the verison of the zope.i18nmessageid package shipped as
+  part of the Zope 3.2.0 release.
 
-Implemented 'zope.i18nmessageid.message' as a C extension.
+- Implemented 'zope.i18nmessageid.message' as a C extension.
 
-Deprecated 'zope.i18nmessageid.messageid' APIs ('MessageID',
-'MessageIDFactory') in favor of replacements in 'zope.i18nmessageid.message'
-('Message', 'MessageFactory').  Deprecated items are scheduled for removal
-in Zope 3.3.
+- Deprecated 'zope.i18nmessageid.messageid' APIs ('MessageID',
+  'MessageIDFactory') in favor of replacements in 'zope.i18nmessageid.message'
+  ('Message', 'MessageFactory').  Deprecated items are scheduled for removal
+  in Zope 3.3.
 
-zope.i18nmessageid version 3.0.0 (2004/11/07)
----------------------------------------------
+Version 3.0.0 (2004/11/07)
+--------------------------
 
-Corresponds to the verison of the zope.i18nmessageid package shipped as
-part of the Zope X3.0.0 release.
+- Corresponds to the verison of the zope.i18nmessageid package shipped as
+  part of the Zope X3.0.0 release.

Modified: zope.i18nmessageid/trunk/setup.py
===================================================================
--- zope.i18nmessageid/trunk/setup.py	2007-09-26 15:26:45 UTC (rev 80110)
+++ zope.i18nmessageid/trunk/setup.py	2007-09-26 15:28:10 UTC (rev 80111)
@@ -25,7 +25,7 @@
 
 
 setup(name='zope.i18nmessageid',
-    version = '3.4.2',
+    version = '3.4.3',
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
     description='Zope 3 i18n Message Identifier',
@@ -46,15 +46,14 @@
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
     license='ZPL 2.1',
-    url='http://svn.zope.org/zope.i18nmessageid',
+    url='http://pypi.python.org/pypi/zope.i18nmessageid',
     packages=find_packages('src'),
     package_dir = {'': 'src'},
-
-    ext_modules=[Extension("zope.i18nmessageid._zope_i18nmessageid_message",
-                           [os.path.join('src', 'zope', 'i18nmessageid',
-                                         "_zope_i18nmessageid_message.c")
-                            ]),
-                 ],
+    ext_modules=[
+        Extension("zope.i18nmessageid._zope_i18nmessageid_message",
+                  [os.path.join('src', 'zope', 'i18nmessageid',
+                                "_zope_i18nmessageid_message.c") ]),
+        ],
     namespace_packages=['zope',],
     tests_require = ['zope.testing'],
     install_requires=['setuptools'],



More information about the Checkins mailing list