[Repoze-checkins] r1006 - repoze.plone/branches/3.1.1
Chris McDonough
chrism at agendaless.com
Thu May 8 22:13:27 EDT 2008
Author: Chris McDonough <chrism at agendaless.com>
Date: Thu May 8 22:13:27 2008
New Revision: 1006
Log:
- Get rid of dependency_links and add setup.cfg that contains
default index path.
Added:
repoze.plone/branches/3.1.1/setup.cfg (contents, props changed)
Modified:
repoze.plone/branches/3.1.1/CHANGES.txt
repoze.plone/branches/3.1.1/TODO.txt
repoze.plone/branches/3.1.1/setup.py
Modified: repoze.plone/branches/3.1.1/CHANGES.txt
==============================================================================
--- repoze.plone/branches/3.1.1/CHANGES.txt (original)
+++ repoze.plone/branches/3.1.1/CHANGES.txt Thu May 8 22:13:27 2008
@@ -1,4 +1,11 @@
-Unreleased
+3.1.1 (2008-05-08)
+
+ - Get rid of dependency_links and add setup.cfg that contains
+ default index path.
+
+3.1.1.0 (2008-05-08)
+
+ - Fork 3.1.1 version.
- Bump ez_setup.py version.
Modified: repoze.plone/branches/3.1.1/TODO.txt
==============================================================================
--- repoze.plone/branches/3.1.1/TODO.txt (original)
+++ repoze.plone/branches/3.1.1/TODO.txt Thu May 8 22:13:27 2008
@@ -1,3 +1,2 @@
- Figure out how to avoid byte-compilation of Python Scripts.
-- Why does javascript get printed to my console at runtime?
Added: repoze.plone/branches/3.1.1/setup.cfg
==============================================================================
--- (empty file)
+++ repoze.plone/branches/3.1.1/setup.cfg Thu May 8 22:13:27 2008
@@ -0,0 +1,2 @@
+[easy_install]
+http://dist.repoze.org/plone/3.1.1/simple
Modified: repoze.plone/branches/3.1.1/setup.py
==============================================================================
--- repoze.plone/branches/3.1.1/setup.py (original)
+++ repoze.plone/branches/3.1.1/setup.py Thu May 8 22:13:27 2008
@@ -12,7 +12,7 @@
#
##############################################################################
-__version__ = '3.1.1.0'
+__version__ = '3.1.1.1'
from ez_setup import use_setuptools
use_setuptools()
@@ -25,9 +25,9 @@
README = open(os.path.join(here, 'README.txt')).read()
REQTS = (
- 'repoze.zope2 >= 0.3.7',
- 'cmflib == 2.1.1.1',
- 'ploneproducts == 3.1.1',
+ 'repoze.zope2',
+ 'cmflib',
+ 'ploneproducts',
'archetypes.kss==1.4',
'borg.localrole==2.0.0',
'five.customerize==0.2',
@@ -71,7 +71,7 @@
setup(name='repoze.plone',
version=__version__,
- description=('A metapackage that allows installation of Plone 3.1'
+ description=('A metapackage that allows installation of Plone 3.1.1'
'within a repoze environment'),
long_description=README,
classifiers=[
@@ -87,7 +87,6 @@
keywords='web application server wsgi zope plone',
author="Agendaless Consulting",
author_email="reopze-dev at lists.repoze.org",
- dependency_links=['http://dist.repoze.org/plone/3.1.1'],
url="http://www.repoze.org",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
More information about the Repoze-checkins
mailing list