[Checkins] SVN: zc.metarecipe/trunk/ zc.metarecipe was moved to github a while ago and has new commits there

Marius Gedminas cvs-admin at zope.org
Wed Mar 13 15:07:49 UTC 2013


Log message for revision 130131:
  zc.metarecipe was moved to github a while ago and has new commits there

Changed:
  A   zc.metarecipe/trunk/MOVED_TO_GITHUB
  D   zc.metarecipe/trunk/buildout.cfg
  D   zc.metarecipe/trunk/setup.py
  D   zc.metarecipe/trunk/src/

-=-
Added: zc.metarecipe/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.metarecipe/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.metarecipe/trunk/MOVED_TO_GITHUB	2013-03-13 15:07:49 UTC (rev 130131)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.metarecipe

Deleted: zc.metarecipe/trunk/buildout.cfg
===================================================================
--- zc.metarecipe/trunk/buildout.cfg	2013-03-13 15:06:35 UTC (rev 130130)
+++ zc.metarecipe/trunk/buildout.cfg	2013-03-13 15:07:49 UTC (rev 130131)
@@ -1,12 +0,0 @@
-[buildout]
-develop = .
-parts = test py
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.metarecipe [test]
-
-[py]
-recipe = zc.recipe.egg
-eggs = ${test:eggs}
-interpreter = py

Deleted: zc.metarecipe/trunk/setup.py
===================================================================
--- zc.metarecipe/trunk/setup.py	2013-03-13 15:06:35 UTC (rev 130130)
+++ zc.metarecipe/trunk/setup.py	2013-03-13 15:07:49 UTC (rev 130131)
@@ -1,53 +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.
-#
-##############################################################################
-name, version = 'zc.metarecipe', '0'
-
-install_requires = ['setuptools']
-extras_require = dict(test=['zope.testing', 'manuel'])
-
-entry_points = """
-"""
-
-from setuptools import setup
-
-# copy README to root.
-import os
-here = os.path.dirname(__file__)
-with open(
-    os.path.join(here, *(['src'] + name.split('.') + ['README.txt']))
-    ) as inp:
-    with open(os.path.join(here, 'README.txt'), 'w') as outp:
-        outp.write(inp.read())
-
-setup(
-    author = 'Jim Fulton',
-    author_email = 'jim at zope.com',
-    license = 'ZPL 2.1',
-
-    name = name, version = version,
-    long_description=open('README.txt').read(),
-    description = open('README.txt').read().strip().split('\n')[0],
-    packages = [name.split('.')[0], name],
-    namespace_packages = [name.split('.')[0]],
-    package_dir = {'': 'src'},
-    install_requires = install_requires,
-    zip_safe = False,
-    entry_points=entry_points,
-    package_data = {name: ['*.txt', '*.test', '*.html']},
-    extras_require = extras_require,
-    tests_require = extras_require['test'],
-    test_suite = name+'.tests.test_suite',
-    )
-
-os.remove(os.path.join(here, 'README.txt'))



More information about the checkins mailing list