[Repoze-checkins] r1015 - repoze.plone/trunk

Chris McDonough chrism at agendaless.com
Thu May 8 23:46:19 EDT 2008


Author: Chris McDonough <chrism at agendaless.com>
Date: Thu May  8 23:46:19 2008
New Revision: 1015

Log:
Turn trunk into 3.0.6 branch.


Added:
   repoze.plone/trunk/setup.cfg   (contents, props changed)
Modified:
   repoze.plone/trunk/CHANGES.txt
   repoze.plone/trunk/TODO.txt
   repoze.plone/trunk/setup.py

Modified: repoze.plone/trunk/CHANGES.txt
==============================================================================
--- repoze.plone/trunk/CHANGES.txt	(original)
+++ repoze.plone/trunk/CHANGES.txt	Thu May  8 23:46:19 2008
@@ -1,4 +1,7 @@
-Unreleased
+3.0.6 (2008-05-08)
+
+  - Fork for 3.0.6 branch; remove dependency-links, add setup.cfg that
+    specifies a default index URL, remove versions from dependencies.
 
   - Bump ez_setup.py version.
 

Modified: repoze.plone/trunk/TODO.txt
==============================================================================
--- repoze.plone/trunk/TODO.txt	(original)
+++ repoze.plone/trunk/TODO.txt	Thu May  8 23:46:19 2008
@@ -1,3 +1 @@
 - Figure out how to avoid byte-compilation of Python Scripts.
-
-- Why does javascript get printed to my console at runtime?

Added: repoze.plone/trunk/setup.cfg
==============================================================================
--- (empty file)
+++ repoze.plone/trunk/setup.cfg	Thu May  8 23:46:19 2008
@@ -0,0 +1,2 @@
+[easy_install]
+index_url = http://dist.repoze.org/plone/3.0.6/simple

Modified: repoze.plone/trunk/setup.py
==============================================================================
--- repoze.plone/trunk/setup.py	(original)
+++ repoze.plone/trunk/setup.py	Thu May  8 23:46:19 2008
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-__version__ = '0.2.8'
+__version__ = '3.0.6.0'
 
 from ez_setup import use_setuptools
 use_setuptools()
@@ -26,7 +26,7 @@
 
 setup(name='repoze.plone',
       version=__version__,
-      description=('A metapackage that allows installation of Plone 3'
+      description=('A metapackage that allows installation of Plone 3.0.6'
                    'within a repoze environment'),
       long_description=README,
       classifiers=[
@@ -42,17 +42,16 @@
       keywords='web application server wsgi zope plone',
       author="Agendaless Consulting",
       author_email="reopze-dev at lists.repoze.org",
-      dependency_links=['http://dist.repoze.org'],
       url="http://www.repoze.org",
       license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
       packages=find_packages(),
       include_package_data=True,
       zip_safe=False,
       install_requires=[
-             'repoze.zope2 >= 0.3.1',
-             'cmflib >= 2.1.1.0',
-             'ploneproducts >= 3.0.6.0',
-             'plonelibs >= 3.0.6.0',
+             'repoze.zope2',
+             'cmflib',
+             'ploneproducts',
+             'plonelibs',
              ],
       entry_points = """\
       [repoze.project]


More information about the Repoze-checkins mailing list