summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Korostelev <nadako@gmail.com>2009-03-12 02:46:14 +0000
committerDan Korostelev <nadako@gmail.com>2009-03-12 02:46:14 +0000
commit2bc8272e6f3a766a9678d88e16207055d4c83bf9 (patch)
tree5b25e69d9fb30bbbaf5dcbda9f073235995ae188
parenta6e5f1ca120358bf764e5d5881ebb89ce0736389 (diff)
downloadzope-i18nmessageid-2bc8272e6f3a766a9678d88e16207055d4c83bf9.tar.gz
Changed package's mailing list address to zope-dev at zope.org
Reformatted change log to common formatting style. Update package description and docs a little. Remove old .cfg files for zpkg.
-rw-r--r--CHANGES.txt40
-rw-r--r--README.txt6
-rw-r--r--buildout.cfg14
-rw-r--r--setup.py6
-rw-r--r--src/zope/i18nmessageid/DEPENDENCIES.cfg1
-rw-r--r--src/zope/i18nmessageid/SETUP.cfg3
6 files changed, 34 insertions, 36 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4a895d6..e01d96f 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,32 +1,40 @@
-zope.i18nmessageid Package Changelog
-====================================
+=======
+CHANGES
+=======
-Version 3.5.0 (unreleased)
---------------------------
+3.5.0 (unreleased)
+------------------
- Added support to bootstrap on Jython.
-Version 3.4.3 (2007/9/26)
--------------------------
+- Changed package's mailing list address from zope3-dev at zope.org to
+ zope-dev at zope.org, because zope3-dev is now retired.
+
+- Reformatted change log to common formatting style.
+
+- Update package description and docs a little.
+
+- Remove old .cfg files for zpkg.
+
+3.4.3 (2007-09-26)
+------------------
- Make PyPI the home URL.
-Version 3.4.2 (2007/9/25)
--------------------------
+3.4.2 (2007-09-25)
+------------------
- Moved the ``ZopeMessageFactory`` from ``zope.app.i18n`` to this package.
-
-Version 3.4.0 (2007/07/19)
---------------------------
+3.4.0 (2007-07-19)
+------------------
- Remove incorrect dependency.
- Create final release to reflect package status.
-
-Version 3.2.0 (2006/01/05)
---------------------------
+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.
@@ -38,8 +46,8 @@ Version 3.2.0 (2006/01/05)
('Message', 'MessageFactory'). Deprecated items are scheduled for removal
in Zope 3.3.
-Version 3.0.0 (2004/11/07)
---------------------------
+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.
diff --git a/README.txt b/README.txt
index 26dfee9..278c069 100644
--- a/README.txt
+++ b/README.txt
@@ -1,9 +1,3 @@
-zope.i18nmessageid Package Readme
-=================================
-
-Overview
---------
-
To translate any text, we must be able to discover the source domain
of the text. A source domain is an identifier that identifies a
project that produces program source strings. Source strings occur as
diff --git a/buildout.cfg b/buildout.cfg
index 0213d0e..70de7bf 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -1,14 +1,12 @@
[buildout]
develop = .
-parts = interpreter test
-
-find-links = http://download.zope.org/distribution/
-
-[interpreter]
-recipe = zc.recipe.egg
-interpreter = py
-eggs = zope.i18nmessageid
+parts = test python
[test]
recipe = zc.recipe.testrunner
eggs = zope.i18nmessageid
+
+[python]
+recipe = zc.recipe.egg
+eggs = zope.i18nmessageid
+interpreter = python
diff --git a/setup.py b/setup.py
index 4e634d9..d8e1ee7 100644
--- a/setup.py
+++ b/setup.py
@@ -27,10 +27,12 @@ def read(*rnames):
setup(name='zope.i18nmessageid',
version = '3.5.0dev',
author='Zope Corporation and Contributors',
- author_email='zope3-dev@zope.org',
- description='Zope 3 i18n Message Identifier',
+ author_email='zope-dev@zope.org',
+ description='Message Identifiers for internationalization',
long_description=(
read('README.txt')
+ + '\n\n.. contents::\n\n' +
+ read('src', 'zope', 'i18nmessageid', 'messages.txt')
+ '\n\n' +
read('CHANGES.txt')
),
diff --git a/src/zope/i18nmessageid/DEPENDENCIES.cfg b/src/zope/i18nmessageid/DEPENDENCIES.cfg
deleted file mode 100644
index ea3a37f..0000000
--- a/src/zope/i18nmessageid/DEPENDENCIES.cfg
+++ /dev/null
@@ -1 +0,0 @@
-zope.testing
diff --git a/src/zope/i18nmessageid/SETUP.cfg b/src/zope/i18nmessageid/SETUP.cfg
deleted file mode 100644
index c2a31ad..0000000
--- a/src/zope/i18nmessageid/SETUP.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-<extension _zope_i18nmessageid_message>
- source _zope_i18nmessageid_message.c
-</extension>