[Checkins] SVN: zc.zodbwsgi/trunk/ zc.zodbwsgi was moved to github a while ago and has new commits there

Marius Gedminas cvs-admin at zope.org
Wed Mar 13 15:06:35 UTC 2013


Log message for revision 130130:
  zc.zodbwsgi was moved to github a while ago and has new commits there

Changed:
  A   zc.zodbwsgi/trunk/MOVED_TO_GITHUB
  D   zc.zodbwsgi/trunk/README.txt
  D   zc.zodbwsgi/trunk/buildout.cfg
  D   zc.zodbwsgi/trunk/setup.py
  D   zc.zodbwsgi/trunk/src/

-=-
Added: zc.zodbwsgi/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.zodbwsgi/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.zodbwsgi/trunk/MOVED_TO_GITHUB	2013-03-13 15:06:35 UTC (rev 130130)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.zodbwsgi

Deleted: zc.zodbwsgi/trunk/README.txt
===================================================================
--- zc.zodbwsgi/trunk/README.txt	2013-03-13 15:03:41 UTC (rev 130129)
+++ zc.zodbwsgi/trunk/README.txt	2013-03-13 15:06:35 UTC (rev 130130)
@@ -1 +0,0 @@
-See src/zc/zodbwsgi/README.txt

Deleted: zc.zodbwsgi/trunk/buildout.cfg
===================================================================
--- zc.zodbwsgi/trunk/buildout.cfg	2013-03-13 15:03:41 UTC (rev 130129)
+++ zc.zodbwsgi/trunk/buildout.cfg	2013-03-13 15:06:35 UTC (rev 130130)
@@ -1,12 +0,0 @@
-[buildout]
-develop = .
-parts = test py
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.zodbwsgi [test]
-
-[py]
-recipe = zc.recipe.egg
-eggs = ${test:eggs}
-interpreter = py

Deleted: zc.zodbwsgi/trunk/setup.py
===================================================================
--- zc.zodbwsgi/trunk/setup.py	2013-03-13 15:03:41 UTC (rev 130129)
+++ zc.zodbwsgi/trunk/setup.py	2013-03-13 15:06:35 UTC (rev 130130)
@@ -1,50 +0,0 @@
-##############################################################################
-#
-# Copyright (c) Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-name, version = 'zc.zodbwsgi', '0'
-
-install_requires = ['setuptools', 'repoze.retry', 'ZConfig', 'ZODB3']
-extras_require = dict(
-    test=['zope.testing', 'manuel', 'PasteDeploy', 'webtest'])
-
-entry_points = """
-[paste.filter_app_factory]
-main = zc.zodbwsgi:Factory
-"""
-
-from setuptools import setup
-import os
-
-long_description = open(
-    os.path.join(*(['src'] + name.split('.') + ['README.txt']))
-    ).read()
-
-setup(
-    author = 'Jim Fulton',
-    author_email = 'jim at zope.com',
-    license = 'ZPL 2.1',
-
-    name = name, version = version,
-    long_description=long_description,
-    description = long_description.strip().split('\n')[0],
-    packages = [name.split('.')[0], name],
-    namespace_packages = [name.split('.')[0]],
-    package_dir = {'': 'src'},
-    install_requires = install_requires,
-    zip_safe = False,
-    entry_points=entry_points,
-    package_data = {name: ['*.txt', '*.test', '*.html']},
-    extras_require = extras_require,
-    tests_require = extras_require['test'],
-    test_suite = name+'.tests.test_suite',
-    )



More information about the checkins mailing list