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

Stephen Richter cvs-admin at zope.org
Sat Mar 2 02:12:15 UTC 2013


Log message for revision 129997:
  Moved to GitHub.

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

-=-
Deleted: zope.globalrequest/trunk/CHANGES.txt
===================================================================
--- zope.globalrequest/trunk/CHANGES.txt	2013-03-02 02:12:03 UTC (rev 129996)
+++ zope.globalrequest/trunk/CHANGES.txt	2013-03-02 02:12:14 UTC (rev 129997)
@@ -1,28 +0,0 @@
-Changelog
-=========
-
-1.1 - Unreleased
-------------------
-
-
-1.0 - Released August 7, 2010
------------------------------
-
-* Fix test setup regarding `zope.securitypolicy`.
-  [ldr]
-
-
-1.0a2 - Released January 17, 2009
----------------------------------
-
-* Update documentation to clarify the intentions of this package.  Also see
-  http://thread.gmane.org/gmane.comp.web.zope.devel/18023 for more information.
-  [witsch]
-
-
-1.0a1 - Released January 15, 2009
----------------------------------
-
-* Initial release
-  [witsch]
-

Added: zope.globalrequest/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.globalrequest/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.globalrequest/trunk/MOVED_TO_GITHUB	2013-03-02 02:12:14 UTC (rev 129997)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.globalrequest
\ No newline at end of file

Deleted: zope.globalrequest/trunk/README.txt
===================================================================
--- zope.globalrequest/trunk/README.txt	2013-03-02 02:12:03 UTC (rev 129996)
+++ zope.globalrequest/trunk/README.txt	2013-03-02 02:12:14 UTC (rev 129997)
@@ -1 +0,0 @@
-Please refer to src/zope/globalrequest/README.txt.

Deleted: zope.globalrequest/trunk/bootstrap.py
===================================================================
--- zope.globalrequest/trunk/bootstrap.py	2013-03-02 02:12:03 UTC (rev 129996)
+++ zope.globalrequest/trunk/bootstrap.py	2013-03-02 02:12:14 UTC (rev 129997)
@@ -1,55 +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: bootstrap.py 75593 2007-05-06 21:11:27Z jim $
-"""
-
-import os, shutil, sys, tempfile, urllib2
-
-tmpeggs = tempfile.mkdtemp()
-
-try:
-    import pkg_resources
-except ImportError:
-    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.globalrequest/trunk/buildout.cfg
===================================================================
--- zope.globalrequest/trunk/buildout.cfg	2013-03-02 02:12:03 UTC (rev 129996)
+++ zope.globalrequest/trunk/buildout.cfg	2013-03-02 02:12:14 UTC (rev 129997)
@@ -1,13 +0,0 @@
-[buildout]
-develop = .
-parts = interpreter test
-
-[interpreter]
-recipe = zc.recipe.egg
-eggs = zope.globalrequest
-interpreter = python
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.globalrequest [test]
-defaults = ['-v']

Deleted: zope.globalrequest/trunk/setup.py
===================================================================
--- zope.globalrequest/trunk/setup.py	2013-03-02 02:12:03 UTC (rev 129996)
+++ zope.globalrequest/trunk/setup.py	2013-03-02 02:12:14 UTC (rev 129997)
@@ -1,51 +0,0 @@
-from setuptools import setup, find_packages
-from os.path import join
-
-version = '1.1'
-readme = open(join('src', 'zope', 'globalrequest', 'README.txt')).read()
-history = open('CHANGES.txt').read()
-
-setup(name = 'zope.globalrequest',
-      version = version,
-      description = 'Global way of retrieving the currently active request.',
-      long_description = readme[readme.find('\n\n'):] + '\n' + history,
-      classifiers = [
-        'Development Status :: 3 - Alpha',
-        'Environment :: Web Environment',
-        'Framework :: Plone',
-        'Framework :: Zope2',
-        'Intended Audience :: Developers',
-        'Intended Audience :: System Administrators',
-        'Intended Audience :: Other Audience',
-        'License :: OSI Approved :: Zope Public License',
-        'Operating System :: OS Independent',
-        'Programming Language :: Python',
-        'Topic :: Software Development :: Libraries :: Python Modules',
-      ],
-      keywords = 'zope request global',
-      author = 'Andreas Zeidler',
-      author_email = 'az at zitc.de',
-      url = 'http://pypi.python.org/pypi/zope.globalrequest',
-      license = 'ZPL',
-      packages = find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages = ['zope'],
-      include_package_data = True,
-      platforms = 'Any',
-      zip_safe = False,
-      install_requires = [
-          'setuptools',
-      ],
-      extras_require = dict(
-          test = [
-              'zope.testing',
-              'zope.configuration',
-              'zope.app.publisher',
-              'zope.app.securitypolicy',
-              'zope.app.testing',
-              'zope.app.zcmlfiles',
-              'zope.testbrowser',
-          ],
-      ),
-      entry_points = '',
-)



More information about the checkins mailing list