[Checkins] SVN: zc.relationship/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Fri Mar 22 15:10:19 UTC 2013


Log message for revision 130164:
  Moved to GitHub.

Changed:
  _U  zc.relationship/trunk/
  D   zc.relationship/trunk/CHANGES.txt
  D   zc.relationship/trunk/COPYRIGHT.txt
  D   zc.relationship/trunk/LICENSE.txt
  A   zc.relationship/trunk/MOVED_TO_GITHUB
  D   zc.relationship/trunk/README.txt
  D   zc.relationship/trunk/buildout.cfg
  D   zc.relationship/trunk/setup.py
  D   zc.relationship/trunk/src/

-=-

Property changes on: zc.relationship/trunk
___________________________________________________________________
Deleted: svn:externals
   - bootstrap svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap


Deleted: zc.relationship/trunk/CHANGES.txt
===================================================================
--- zc.relationship/trunk/CHANGES.txt	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/CHANGES.txt	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1 +0,0 @@
-Please see CHANGES.txt in src/zc/relationship.

Deleted: zc.relationship/trunk/COPYRIGHT.txt
===================================================================
--- zc.relationship/trunk/COPYRIGHT.txt	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/COPYRIGHT.txt	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zc.relationship/trunk/LICENSE.txt
===================================================================
--- zc.relationship/trunk/LICENSE.txt	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/LICENSE.txt	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1,44 +0,0 @@
-Zope Public License (ZPL) Version 2.1
-
-A copyright notice accompanies this license document that identifies the
-copyright holders.
-
-This license has been certified as open source. It has also been designated as
-GPL compatible by the Free Software Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions in source code must retain the accompanying copyright
-notice, this list of conditions, and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying copyright
-notice, this list of conditions, and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to endorse or promote
-products derived from this software without prior written permission from the
-copyright holders.
-
-4. The right to distribute this software or to use it for any purpose does not
-give you the right to use Servicemarks (sm) or Trademarks (tm) of the
-copyright
-holders. Use of them is covered by separate agreement with the copyright
-holders.
-
-5. If any files are modified, you must cause the modified files to carry
-prominent notices stating that you changed the files and the date of any
-change.
-
-Disclaimer
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
-OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: zc.relationship/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.relationship/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.relationship/trunk/MOVED_TO_GITHUB	2013-03-22 15:10:18 UTC (rev 130164)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.relationship
\ No newline at end of file

Deleted: zc.relationship/trunk/README.txt
===================================================================
--- zc.relationship/trunk/README.txt	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/README.txt	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1 +0,0 @@
-Zope 3 relationship index.  Precursor to zc.relation.

Deleted: zc.relationship/trunk/buildout.cfg
===================================================================
--- zc.relationship/trunk/buildout.cfg	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/buildout.cfg	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1,16 +0,0 @@
-[buildout]
-develop = .
-parts = test py
-
-find-links = http://download.zope.org/distribution/
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.relationship [test]
-defaults = "--tests-pattern [fn]?tests --exit-with-status".split()
-
-[py]
-recipe = zc.recipe.egg
-eggs = zc.relationship
-       docutils
-interpreter = py

Deleted: zc.relationship/trunk/setup.py
===================================================================
--- zc.relationship/trunk/setup.py	2013-03-22 15:10:13 UTC (rev 130163)
+++ zc.relationship/trunk/setup.py	2013-03-22 15:10:18 UTC (rev 130164)
@@ -1,112 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006-2008 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.
-#
-##############################################################################
-import os
-from setuptools import setup, find_packages
-
-# generic helpers primarily for the long_description
-try:
-    import docutils
-except ImportError:
-    import warnings
-    def validateReST(text):
-        return ''
-else:
-    import docutils.utils
-    import docutils.parsers.rst
-    import StringIO
-    def validateReST(text):
-        doc = docutils.utils.new_document('validator')
-        # our desired settings
-        doc.reporter.halt_level = 5
-        doc.reporter.report_level = 1
-        stream = doc.reporter.stream = StringIO.StringIO()
-        # docutils buglets (?)
-        doc.settings.tab_width = 2
-        doc.settings.pep_references = doc.settings.rfc_references = False
-        doc.settings.trim_footnote_reference_space = None
-        # and we're off...
-        parser = docutils.parsers.rst.Parser()
-        parser.parse(text, doc)
-        return stream.getvalue()
-
-def text(*args, **kwargs):
-    # note: distutils explicitly disallows unicode for setup values :-/
-    # http://docs.python.org/dist/meta-data.html
-    tmp = []
-    for a in args:
-        if a.endswith('.txt'):
-            f = open(os.path.join(*a.split('/')))
-            tmp.append(f.read())
-            f.close()
-            tmp.append('\n\n')
-        else:
-            tmp.append(a)
-    if len(tmp) == 1:
-        res = tmp[0]
-    else:
-        res = ''.join(tmp)
-    out = kwargs.get('out')
-    if out is True:
-        out = 'TEST_THIS_REST_BEFORE_REGISTERING.txt'
-    if out:
-        f = open(out, 'w')
-        f.write(res)
-        f.close()
-        report = validateReST(res)
-        if report:
-            print report
-            raise ValueError('ReST validation error')
-    return res
-# end helpers; below this line should be code custom to this package
-
-setup(
-    name="zc.relationship",
-    version="2.0c1",
-    packages=find_packages('src'),
-    include_package_data=True,
-    package_dir= {'':'src'},
-
-    namespace_packages=['zc'],
-
-    zip_safe=False,
-    author='Gary Poster',
-    author_email='gary at zope.com',
-    description=text("README.txt"),
-    long_description=text(
-        'src/zc/relationship/README.txt',
-        'src/zc/relationship/CHANGES.txt',
-        out=True),
-    license='ZPL 2.1',
-    keywords="zope zope3",
-    install_requires=[
-        'ZODB3 >= 3.8dev',
-        'zope.app.container', # would be nice to remove this
-        'zope.app.intid',
-        'zope.interface',
-        'zope.component',
-        'zope.app.keyreference',
-        'zope.location',
-        'zope.index',
-        'zc.relation',
-
-        'zope.app.testing',
-        'zope.app.component',
-        'zope.testing',
-        'setuptools',
-        ],
-    extras_require=dict(
-        test=[
-            'zope.app.folder',
-            ]),
-    )



More information about the checkins mailing list