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

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


Log message for revision 129999:
  Moved to GitHub.

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

-=-
Deleted: zope.z2release/trunk/CHANGES.txt
===================================================================
--- zope.z2release/trunk/CHANGES.txt	2013-03-02 02:12:18 UTC (rev 129998)
+++ zope.z2release/trunk/CHANGES.txt	2013-03-02 02:12:22 UTC (rev 129999)
@@ -1,81 +0,0 @@
-Changelog
-=========
-
-0.9 - unreleased
-----------------
-
-
-0.8 - 2010-09-09
-----------------
-
-- Do not override existing version pins defined in the ``versions.cfg`` by
-  versions from the extends lines. This refs
-  https://bugs.launchpad.net/zope2/+bug/623428.
-
-0.7 - 2010-07-13
-----------------
-
-- Added support for having an ``extends`` line pointing to another version
-  file and still creating a full index.
-
-0.6 - 2010-07-13
-----------------
-
-- Support packages with underscores in their name.
-
-0.5 - 2010-06-30
-----------------
-
-- Disable the index building for a ZTK release.
-
-0.4 - 2010-06-26
-----------------
-
-- Added support for creating a Zope Toolkit index.
-
-- Update ``package_urls`` to ``release_urls`` as specified in
-  http://wiki.python.org/moin/PyPiXmlRpc.
-
-0.3 - 2010-06-13
-----------------
-
-- Added support for inline comments in the versions section.
-
-- Readme style fixes.
-
-0.2 - 2010-04-05
-----------------
-
-* Avoid hardcoded upper_names list.
-
-0.1.5 - 2009-12-25
-------------------
-
-* sanity check for download_url
-
-* better parameter check
-
-0.1.4 - 2009-08-06
-------------------
-
-* better parameter check
-
-0.1.3 - 2009-04-25
-------------------
-
-* generate a versions.cfg file within the index directory
-
-0.1.2 - 2009-04-25
-------------------
-
-* removed hard-coded Zope 2 version
-
-0.1.1 - 2009-04-25
-------------------
-
-* bahhh...fixed broken package
-
-0.1.0 - 2009-04-24
-------------------
-
-* Initial release

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

Deleted: zope.z2release/trunk/README.txt
===================================================================
--- zope.z2release/trunk/README.txt	2013-03-02 02:12:18 UTC (rev 129998)
+++ zope.z2release/trunk/README.txt	2013-03-02 02:12:22 UTC (rev 129999)
@@ -1,16 +0,0 @@
-Introduction
-============
-
-``zope.z2releases`` is used to generated a PyPI compatible index with
-references to all pinned package versions based on a ``versions.cfg``.
-
-It can handle both a Zope 2 release as well as a Zope Toolkit release.
-
-Usage
-=====
-
-To generate an index, use::
-
-    z2_kgs tags/2.12.1 /srv/Zope2/index/2.12.1
-
-    ztk_kgs tags/1.0a1 /srv/zopetoolkit/index/1.0a1

Deleted: zope.z2release/trunk/bootstrap.py
===================================================================
--- zope.z2release/trunk/bootstrap.py	2013-03-02 02:12:18 UTC (rev 129998)
+++ zope.z2release/trunk/bootstrap.py	2013-03-02 02:12:22 UTC (rev 129999)
@@ -1,121 +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 105417 2009-11-01 15:15:20Z tarek $
-"""
-
-import os, shutil, sys, tempfile, urllib2
-from optparse import OptionParser
-
-tmpeggs = tempfile.mkdtemp()
-
-is_jython = sys.platform.startswith('java')
-
-# parsing arguments
-parser = OptionParser()
-parser.add_option("-v", "--version", dest="version",
-                          help="use a specific zc.buildout version")
-parser.add_option("-d", "--distribute",
-                   action="store_true", dest="distribute", default=False,
-                   help="Use Disribute rather than Setuptools.")
-
-parser.add_option("-c", None, action="store", dest="config_file",
-                   help=("Specify the path to the buildout configuration "
-                         "file to be used."))
-
-options, args = parser.parse_args()
-
-# if -c was provided, we push it back into args for buildout' main function
-if options.config_file is not None:
-    args += ['-c', options.config_file]
-
-if options.version is not None:
-    VERSION = '==%s' % options.version
-else:
-    VERSION = ''
-
-USE_DISTRIBUTE = options.distribute
-args = args + ['bootstrap']
-
-to_reload = False
-try:
-    import pkg_resources
-    if not hasattr(pkg_resources, '_distribute'):
-        to_reload = True
-        raise ImportError
-except ImportError:
-    ez = {}
-    if USE_DISTRIBUTE:
-        exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
-                         ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
-    else:
-        exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                             ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    if to_reload:
-        reload(pkg_resources)
-    else:
-        import pkg_resources
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    def quote (c):
-        return c
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-ws  = pkg_resources.working_set
-
-if USE_DISTRIBUTE:
-    requirement = 'distribute'
-else:
-    requirement = 'setuptools'
-
-if is_jython:
-    import subprocess
-
-    assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
-           quote(tmpeggs), 'zc.buildout' + VERSION],
-           env=dict(os.environ,
-               PYTHONPATH=
-               ws.find(pkg_resources.Requirement.parse(requirement)).location
-               ),
-           ).wait() == 0
-
-else:
-    assert os.spawnle(
-        os.P_WAIT, sys.executable, quote (sys.executable),
-        '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
-        dict(os.environ,
-            PYTHONPATH=
-            ws.find(pkg_resources.Requirement.parse(requirement)).location
-            ),
-        ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout' + VERSION)
-import zc.buildout.buildout
-zc.buildout.buildout.main(args)
-shutil.rmtree(tmpeggs)

Deleted: zope.z2release/trunk/buildout.cfg
===================================================================
--- zope.z2release/trunk/buildout.cfg	2013-03-02 02:12:18 UTC (rev 129998)
+++ zope.z2release/trunk/buildout.cfg	2013-03-02 02:12:22 UTC (rev 129999)
@@ -1,8 +0,0 @@
-[buildout]
-develop = .
-parts = python
-
-[python]
-recipe = zc.recipe.egg
-eggs = zope.z2release
-interpreter = python

Deleted: zope.z2release/trunk/setup.py
===================================================================
--- zope.z2release/trunk/setup.py	2013-03-02 02:12:18 UTC (rev 129998)
+++ zope.z2release/trunk/setup.py	2013-03-02 02:12:22 UTC (rev 129999)
@@ -1,29 +0,0 @@
-from setuptools import setup, find_packages
-
-version = '0.9'
-
-setup(name='zope.z2release',
-      version=version,
-      description="Zope release helper",
-      long_description=open("README.txt").read() + "\n" +
-                       open("CHANGES.txt").read(),
-      classifiers=[
-        "Programming Language :: Python",
-        ],
-      keywords='',
-      author='Zope Foundation',
-      author_email='zope-dev at zope.org',
-      url='http://pypi.python.org/pypi/zope.z2release',
-      license='ZPL',
-      packages=find_packages(exclude=['ez_setup']),
-      namespace_packages=['zope'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          'setuptools',
-      ],
-      entry_points=dict(console_scripts=[
-        'z2_kgs=zope.z2release.cli:main',
-        'ztk_kgs=zope.z2release.ztk:main'
-        ]),
-      )



More information about the checkins mailing list