[Checkins] SVN: zope.app.interface/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Tue Mar 12 13:44:43 UTC 2013


Log message for revision 130125:
  Moved to GitHub.

Changed:
  D   zope.app.interface/trunk/CHANGES.txt
  A   zope.app.interface/trunk/MOVED_TO_GITHUB
  D   zope.app.interface/trunk/README.txt
  D   zope.app.interface/trunk/bootstrap.py
  D   zope.app.interface/trunk/buildout.cfg
  D   zope.app.interface/trunk/setup.py
  D   zope.app.interface/trunk/src/

-=-
Deleted: zope.app.interface/trunk/CHANGES.txt
===================================================================
--- zope.app.interface/trunk/CHANGES.txt	2013-03-12 13:44:28 UTC (rev 130124)
+++ zope.app.interface/trunk/CHANGES.txt	2013-03-12 13:44:43 UTC (rev 130125)
@@ -1,44 +0,0 @@
-=======
-CHANGES
-=======
-
-
-3.6.1 (unreleased)
-------------------
-
-- Handle hashing / equality / inequality properly given changes to
-  ``zope.interface`` which are inappropriate for persistent objects.
-
-
-3.6.0 (2010-09-20)
-------------------
-
-- Added test extra to declare test dependency on `zope.testing`.
-
-- Moved ``zope.app.interfaces.queryType`` to `zope.app.content` to inverse
-  dependency, leaving BBB import here.
-
-
-3.5.2 (2010-07-08)
-------------------
-
-- 3.5.1 was a bad release
-
-
-3.5.1 (2010-07-07)
-------------------
-
-- Fixed tests and test tearDown to actually close the DB.
-
-
-3.5.0 (2009-05-21)
-------------------
-
-- Factor out ObjectInterfacesVocabulary into `zope.componentvocabulary`.
-
-- Remove various test dependencies.
-
-3.4.0 (2007-10-24)
-------------------
-
-- Initial release independent of the main Zope tree.

Added: zope.app.interface/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.app.interface/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.app.interface/trunk/MOVED_TO_GITHUB	2013-03-12 13:44:43 UTC (rev 130125)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.app.interface
\ No newline at end of file

Deleted: zope.app.interface/trunk/README.txt
===================================================================
--- zope.app.interface/trunk/README.txt	2013-03-12 13:44:28 UTC (rev 130124)
+++ zope.app.interface/trunk/README.txt	2013-03-12 13:44:43 UTC (rev 130125)
@@ -1,3 +0,0 @@
-This package provides several extensions to Zope interfaces, such as a
-persistent implementation, interface type queries, and a vocabulary of all
-registered interfaces of the system (or of a particular type).

Deleted: zope.app.interface/trunk/bootstrap.py
===================================================================
--- zope.app.interface/trunk/bootstrap.py	2013-03-12 13:44:28 UTC (rev 130124)
+++ zope.app.interface/trunk/bootstrap.py	2013-03-12 13:44:43 UTC (rev 130125)
@@ -1,52 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation 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.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-
-$Id$
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-ez = {}
-exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                     ).read() in ez
-ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-import pkg_resources
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-if sys.platform == 'win32':
-    cmd = '"%s"' % cmd # work around spawn lamosity on windows
-
-ws = pkg_resources.working_set
-assert os.spawnle(
-    os.P_WAIT, sys.executable, sys.executable,
-    '-c', cmd, '-mqNxd', tmpeggs, 'zc.buildout',
-    dict(os.environ,
-         PYTHONPATH=
-         ws.find(pkg_resources.Requirement.parse('setuptools')).location
-         ),
-    ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout')
-import zc.buildout.buildout
-zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
-shutil.rmtree(tmpeggs)

Deleted: zope.app.interface/trunk/buildout.cfg
===================================================================
--- zope.app.interface/trunk/buildout.cfg	2013-03-12 13:44:28 UTC (rev 130124)
+++ zope.app.interface/trunk/buildout.cfg	2013-03-12 13:44:43 UTC (rev 130125)
@@ -1,7 +0,0 @@
-[buildout]
-develop = .
-parts = test
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.app.interface [test]

Deleted: zope.app.interface/trunk/setup.py
===================================================================
--- zope.app.interface/trunk/setup.py	2013-03-12 13:44:28 UTC (rev 130124)
+++ zope.app.interface/trunk/setup.py	2013-03-12 13:44:43 UTC (rev 130125)
@@ -1,63 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation 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.
-#
-##############################################################################
-"""Setup for zope.app.interface package
-
-$Id$
-"""
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(name='zope.app.interface',
-      version='3.6.1dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description='Zope Interface Extensions',
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      keywords = "zope3 interface persistent type",
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://cheeseshop.python.org/pypi/zope.app.interface',
-      license='ZPL 2.1',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      install_requires=[
-          'ZODB3',
-          'setuptools',
-          'zodbcode',
-          'zope.app.content >= 3.5',
-          'zope.componentvocabulary',
-          'zope.security',
-          ],
-      extras_require=dict(test=[
-          'zope.testing',
-          ]),
-      include_package_data = True,
-      zip_safe = False,
-      )



More information about the checkins mailing list