[Checkins] SVN: zc.customdoctests/trunk/ Moved to github

Stephen Richter cvs-admin at zope.org
Thu Feb 21 22:03:49 UTC 2013


Log message for revision 129597:
  Moved to github

Changed:
  D   zc.customdoctests/trunk/CHANGES.txt
  D   zc.customdoctests/trunk/MANIFEST.in
  A   zc.customdoctests/trunk/MOVED_TO_GITHUB
  D   zc.customdoctests/trunk/README.txt
  D   zc.customdoctests/trunk/buildout.cfg
  D   zc.customdoctests/trunk/setup.py
  D   zc.customdoctests/trunk/src/
  D   zc.customdoctests/trunk/tox.ini

-=-
Deleted: zc.customdoctests/trunk/CHANGES.txt
===================================================================
--- zc.customdoctests/trunk/CHANGES.txt	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/CHANGES.txt	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,27 +0,0 @@
-Changelog
-=========
-
-1.0.2 (unreleased)
-------------------
-
-- Nothing changed yet.
-
-
-1.0.1 (2013-02-14)
-------------------
-
-- Fixed ReStructuredText errors on the PyPI page.
-
-
-1.0.0 (2013-02-13)
-------------------
-
-- Added Python 3.3 support.
-
-- Cleanup `setup.py`, add `tox.ini` and manifest.
-
-
-0.1.0 (2011-05-19)
-------------------
-
-- Initial release

Deleted: zc.customdoctests/trunk/MANIFEST.in
===================================================================
--- zc.customdoctests/trunk/MANIFEST.in	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/MANIFEST.in	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,9 +0,0 @@
-include *.rst
-include *.txt
-include tox.ini
-include bootstrap.py
-include buildout.cfg
-
-recursive-include src *
-
-global-exclude *.pyc

Added: zc.customdoctests/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.customdoctests/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.customdoctests/trunk/MOVED_TO_GITHUB	2013-02-21 22:03:48 UTC (rev 129597)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.customdoctests

Deleted: zc.customdoctests/trunk/README.txt
===================================================================
--- zc.customdoctests/trunk/README.txt	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/README.txt	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,19 +0,0 @@
-=====================================================
-zc.customdoctests -- Use doctest with other languages
-=====================================================
-
-doctest (and recently manuel) provide hooks for using custom doctest
-parsers.  `zc.customdoctests` helps to leverage this to support other
-languages, such as JavaScript::
-
-    js> function double (x) {
-    ...     return x*2;
-    ... }
-    js> double(2)
-    4
-
-And with `manuel <http://pypi.python.org/pypi/manuel>`_, it
-facilitates doctests that mix multiple languages, such as Python,
-JavaScript, and sh.
-
-.. contents::

Deleted: zc.customdoctests/trunk/buildout.cfg
===================================================================
--- zc.customdoctests/trunk/buildout.cfg	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/buildout.cfg	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,17 +0,0 @@
-[buildout]
-develop = .
-parts = test test3 py
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.customdoctests [test,js]
-
-[test3]
-# python-spidermonkey does not run on Python 3 yet.
-recipe = zc.recipe.testrunner
-eggs = zc.customdoctests [test]
-
-[py]
-recipe = zc.recipe.egg
-eggs = ${test:eggs}
-interpreter = py

Deleted: zc.customdoctests/trunk/setup.py
===================================================================
--- zc.customdoctests/trunk/setup.py	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/setup.py	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,74 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 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.
-#
-##############################################################################
-import os
-from setuptools import setup, find_packages
-
-here = os.path.dirname(__file__)
-
-def read(filename):
-    with open(os.path.join(here, filename)) as f:
-        return f.read()
-
-
-install_requires = ['setuptools']
-
-extras_require = dict(
-    test=['zope.testing', 'manuel'],
-    js=['python-spidermonkey'],
-)
-
-setup(
-    name='zc.customdoctests',
-    version='1.0.2.dev0',
-    url='http://pypi.python.org/pypi/zc.customdoctests',
-    license='ZPL 2.1',
-    description=read('README.txt').splitlines(False)[0],
-    author='Jim Fulton',
-    author_email='jim at zope.com',
-    classifiers=[
-        'Development Status :: 4 - Beta',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Programming Language :: Python :: 2',
-        'Programming Language :: Python :: 2.6',
-        'Programming Language :: Python :: 2.7',
-        'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.3',
-        'Programming Language :: Python :: Implementation :: CPython',
-        'Natural Language :: English',
-        'Operating System :: OS Independent',
-        'Topic :: Software Development',
-    ],
-    long_description=''.join([
-        read('README.txt'),
-        '\n\n'
-        'Detailed documentation\n'
-        '======================\n\n',
-        read('src/zc/customdoctests/README.txt'),
-        '\n\n',
-        read('src/zc/customdoctests/spidermonkey.txt'),
-        '\n\n',
-        read('CHANGES.txt'),
-    ]),
-    packages=find_packages('src'),
-    package_dir={'': 'src'},
-    namespace_packages=['zc',],
-    install_requires=install_requires,
-    package_data={'zc.customdoctests': ['*.txt']},
-    extras_require=extras_require,
-    tests_require=extras_require['test'],
-    test_suite='zc.customdoctests.tests.test_suite',
-    zip_safe=False,
-)

Deleted: zc.customdoctests/trunk/tox.ini
===================================================================
--- zc.customdoctests/trunk/tox.ini	2013-02-21 21:46:42 UTC (rev 129596)
+++ zc.customdoctests/trunk/tox.ini	2013-02-21 22:03:48 UTC (rev 129597)
@@ -1,26 +0,0 @@
-[tox]
-envlist = py26,py27,py33
-
-[testenv]
-commands =
-    python setup.py test -q
-# without explicit deps, setup.py test will download a bunch of eggs into $PWD
-deps =
-     manuel
-     zope.testrunner
-     zope.testing
-
-[testenv:coverage]
-basepython =
-    python2.7
-commands =
-#   The installed version messes up nose's test discovery / coverage reporting
-#   So, we uninstall that from the environment, and then install the editable
-#   version, before running nosetests.
-    pip uninstall -y zc.customdoctests
-    pip install -e .
-    nosetests --with-xunit --with-xcoverage
-deps =
-    nose
-    coverage
-    nosexcover



More information about the checkins mailing list