[Checkins] SVN: keas.unit/trunk/ Moved to GitHub.

Stephen Richter cvs-admin at zope.org
Wed Mar 6 14:55:15 UTC 2013


Log message for revision 130049:
  Moved to GitHub.

Changed:
  D   keas.unit/trunk/CHANGES.txt
  A   keas.unit/trunk/MOVED_TO_GITHUB
  D   keas.unit/trunk/bootstrap.py
  D   keas.unit/trunk/buildout.cfg
  D   keas.unit/trunk/setup.py
  D   keas.unit/trunk/src/

-=-
Deleted: keas.unit/trunk/CHANGES.txt
===================================================================
--- keas.unit/trunk/CHANGES.txt	2013-03-06 14:55:09 UTC (rev 130048)
+++ keas.unit/trunk/CHANGES.txt	2013-03-06 14:55:14 UTC (rev 130049)
@@ -1,13 +0,0 @@
-=======
-CHANGES
-=======
-
-1.1.0 (unreleased)
-------------------
-
-- ...
-
-1.0.0 (2009-07-26)
-------------------
-
-- Initial release.

Added: keas.unit/trunk/MOVED_TO_GITHUB
===================================================================
--- keas.unit/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ keas.unit/trunk/MOVED_TO_GITHUB	2013-03-06 14:55:14 UTC (rev 130049)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/keas.unit
\ No newline at end of file

Deleted: keas.unit/trunk/bootstrap.py
===================================================================
--- keas.unit/trunk/bootstrap.py	2013-03-06 14:55:09 UTC (rev 130048)
+++ keas.unit/trunk/bootstrap.py	2013-03-06 14:55:14 UTC (rev 130049)
@@ -1,52 +0,0 @@
-##############################################################################
-#
-# 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.
-#
-##############################################################################
-"""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: keas.unit/trunk/buildout.cfg
===================================================================
--- keas.unit/trunk/buildout.cfg	2013-03-06 14:55:09 UTC (rev 130048)
+++ keas.unit/trunk/buildout.cfg	2013-03-06 14:55:14 UTC (rev 130049)
@@ -1,18 +0,0 @@
-[buildout]
-develop = .
-parts = test coverage-test coverage-report
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = keas.unit [test]
-
-[coverage-test]
-recipe = zc.recipe.testrunner
-eggs = keas.unit [test]
-defaults = ['--coverage', '../../coverage']
-
-[coverage-report]
-recipe = zc.recipe.egg
-eggs = z3c.coverage
-scripts = coverage=coverage-report
-arguments = ('coverage', 'coverage/report')

Deleted: keas.unit/trunk/setup.py
===================================================================
--- keas.unit/trunk/setup.py	2013-03-06 14:55:09 UTC (rev 130048)
+++ keas.unit/trunk/setup.py	2013-03-06 14:55:14 UTC (rev 130049)
@@ -1,62 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 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.
-#
-##############################################################################
-"""
-$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='keas.unit',
-    version='1.1.0dev',
-    author = "Stephan Richter and the Zope Community",
-    author_email = "zope-dev at zope.org",
-    description = "A simple wrapper around the 'units' shell command",
-    long_description=(
-        read('src', 'keas', 'unit', 'README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license = "ZPL 2.1",
-    keywords = "zope3 security key management infrastructure nist 800-57",
-    classifiers = [
-        'Development Status :: 4 - Beta',
-        '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/keas.unit',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['keas'],
-    extras_require = dict(
-        test = [
-            'zope.testing',
-            ],
-        ),
-    install_requires = [
-        'setuptools',
-        'zope.interface',
-        'zope.schema',
-        ],
-    zip_safe = False,
-    )



More information about the checkins mailing list