zope.broken-3.6.0/bootstrap.py0000644000000000000000000000337011142371134016301 0ustar rootroot00000000000000############################################################################## # # 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: bootstrap.py 73528 2007-03-25 07:03:34Z dobe $ """ 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) zope.broken-3.6.0/buildout.cfg0000644000000000000000000000003011142371134016210 0ustar rootroot00000000000000[buildout] develop = . zope.broken-3.6.0/CHANGES.txt0000644000000000000000000000056011321737170015526 0ustar rootroot00000000000000Changelog ========= 3.6.0 (2010-01-09) ------------------ - The IBroken interface has been merged into the ZODB3 distribution. Import the interface from there, while providing a copy for backwards compatibility with older versions of the ZODB3. 3.5.0 (2009-02-04) ------------------ - Created ``zope.broken`` to hold depended upon bits of ``zope.app.broken``. zope.broken-3.6.0/PKG-INFO0000644000000000000000000000315711322370562015016 0ustar rootroot00000000000000Metadata-Version: 1.0 Name: zope.broken Version: 3.6.0 Summary: Zope Broken Object Interfaces Home-page: http://pypi.python.org/pypi/zope.broken Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: Overview ======== This package is obsolete and its functionality has been merged into the ZODB3 distribution itself. If you use version 3.10 or later of ZODB3, please change your imports of the IBroken interface to a direct:: from ZODB.interfaces import IBroken You can use this package with older versions of the ZODB3, which didn't have the IBroken interface yet. Changelog ========= 3.6.0 (2010-01-09) ------------------ - The IBroken interface has been merged into the ZODB3 distribution. Import the interface from there, while providing a copy for backwards compatibility with older versions of the ZODB3. 3.5.0 (2009-02-04) ------------------ - Created ``zope.broken`` to hold depended upon bits of ``zope.app.broken``. Keywords: zope3 broken Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Programming Language :: Python Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Topic :: Internet :: WWW/HTTP Classifier: Framework :: Zope3 zope.broken-3.6.0/README.txt0000644000000000000000000000056311321737036015417 0ustar rootroot00000000000000Overview ======== This package is obsolete and its functionality has been merged into the ZODB3 distribution itself. If you use version 3.10 or later of ZODB3, please change your imports of the IBroken interface to a direct:: from ZODB.interfaces import IBroken You can use this package with older versions of the ZODB3, which didn't have the IBroken interface yet. zope.broken-3.6.0/setup.cfg0000644000000000000000000000007311322370562015534 0ustar rootroot00000000000000[egg_info] tag_build = tag_date = 0 tag_svn_revision = 0 zope.broken-3.6.0/setup.py0000644000000000000000000000372711321737170015437 0ustar rootroot00000000000000############################################################################## # # Copyright (c) 2009 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.broken package $Id: setup.py 96059 2009-02-04 08:09:40Z wosc $ """ 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.broken', version = '3.6.0', author='Zope Corporation and Contributors', author_email='zope-dev@zope.org', description='Zope Broken Object Interfaces', long_description=( read('README.txt') + '\n\n' + read('CHANGES.txt') ), keywords = "zope3 broken", 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://pypi.python.org/pypi/zope.broken', license='ZPL 2.1', packages=find_packages('src'), package_dir = {'': 'src'}, namespace_packages=['zope'], install_requires=['setuptools', 'zope.interface', ], include_package_data = True, zip_safe = False, ) zope.broken-3.6.0/src/zope/__init__.py0000644000000000000000000000031111142371134017557 0ustar rootroot00000000000000# this is a namespace package try: import pkg_resources pkg_resources.declare_namespace(__name__) except ImportError: import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) zope.broken-3.6.0/src/zope/broken/__init__.py0000644000000000000000000000004111142371134021037 0ustar rootroot00000000000000# Make this directory a package. zope.broken-3.6.0/src/zope/broken/interfaces.py0000644000000000000000000000167111321737036021443 0ustar rootroot00000000000000############################################################################## # # Copyright (c) 2007 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. # ############################################################################## """zope.broken interfaces. $Id: interfaces.py 72735 2007-02-21 05:02:33Z baijum $ """ __docformat__ = "reStructuredText" import zope.interface try: from ZODB.interfaces import IBroken except ImportError: class IBroken(zope.interface.Interface): """Marker interface for broken objects """ zope.broken-3.6.0/src/zope.broken.egg-info/dependency_links.txt0000644000000000000000000000000111322370562024476 0ustar rootroot00000000000000 zope.broken-3.6.0/src/zope.broken.egg-info/namespace_packages.txt0000644000000000000000000000000511322370562024756 0ustar rootroot00000000000000zope zope.broken-3.6.0/src/zope.broken.egg-info/not-zip-safe0000644000000000000000000000000111321737204022655 0ustar rootroot00000000000000 zope.broken-3.6.0/src/zope.broken.egg-info/PKG-INFO0000644000000000000000000000315711322370562021533 0ustar rootroot00000000000000Metadata-Version: 1.0 Name: zope.broken Version: 3.6.0 Summary: Zope Broken Object Interfaces Home-page: http://pypi.python.org/pypi/zope.broken Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 Description: Overview ======== This package is obsolete and its functionality has been merged into the ZODB3 distribution itself. If you use version 3.10 or later of ZODB3, please change your imports of the IBroken interface to a direct:: from ZODB.interfaces import IBroken You can use this package with older versions of the ZODB3, which didn't have the IBroken interface yet. Changelog ========= 3.6.0 (2010-01-09) ------------------ - The IBroken interface has been merged into the ZODB3 distribution. Import the interface from there, while providing a copy for backwards compatibility with older versions of the ZODB3. 3.5.0 (2009-02-04) ------------------ - Created ``zope.broken`` to hold depended upon bits of ``zope.app.broken``. Keywords: zope3 broken Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Web Environment Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Programming Language :: Python Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Topic :: Internet :: WWW/HTTP Classifier: Framework :: Zope3 zope.broken-3.6.0/src/zope.broken.egg-info/requires.txt0000644000000000000000000000003111322370562023022 0ustar rootroot00000000000000setuptools zope.interfacezope.broken-3.6.0/src/zope.broken.egg-info/SOURCES.txt0000644000000000000000000000064011322370562022314 0ustar rootroot00000000000000CHANGES.txt README.txt bootstrap.py buildout.cfg setup.py src/zope/__init__.py src/zope.broken.egg-info/PKG-INFO src/zope.broken.egg-info/SOURCES.txt src/zope.broken.egg-info/dependency_links.txt src/zope.broken.egg-info/namespace_packages.txt src/zope.broken.egg-info/not-zip-safe src/zope.broken.egg-info/requires.txt src/zope.broken.egg-info/top_level.txt src/zope/broken/__init__.py src/zope/broken/interfaces.pyzope.broken-3.6.0/src/zope.broken.egg-info/top_level.txt0000644000000000000000000000000511322370562023155 0ustar rootroot00000000000000zope