[Checkins] SVN: zc.zodbrecipes/trunk/ moved to github

Fred Drake cvs-admin at zope.org
Thu Mar 28 20:43:12 UTC 2013


Log message for revision 130179:
  moved to github

Changed:
  A   zc.zodbrecipes/trunk/MOVED_TO_GITHUB
  D   zc.zodbrecipes/trunk/README.txt
  D   zc.zodbrecipes/trunk/buildout.cfg
  D   zc.zodbrecipes/trunk/setup.py
  D   zc.zodbrecipes/trunk/zc/

-=-
Added: zc.zodbrecipes/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.zodbrecipes/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.zodbrecipes/trunk/MOVED_TO_GITHUB	2013-03-28 20:43:11 UTC (rev 130179)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.zodbrecipes

Deleted: zc.zodbrecipes/trunk/README.txt
===================================================================
--- zc.zodbrecipes/trunk/README.txt	2013-03-28 20:42:38 UTC (rev 130178)
+++ zc.zodbrecipes/trunk/README.txt	2013-03-28 20:43:11 UTC (rev 130179)
@@ -1,122 +0,0 @@
-************
-ZODB Recipes
-************
-
-Recipes for working with ZODB.
-
-.. contents::
-
-Changes
-*******
-
-0.6.2 (2012-10-31)
-==================
-
-Bugs Fixed
-----------
-
-- Moved 'zope.testing' requirement from install to test requirement.
-
-0.6.1 (2010-05-25)
-==================
-
-Bugs Fixed
-----------
-
-- Pack scripts were incorrectly generated for storages that weren't
-  named in their storage configurations.
-
-0.6.0 (2009-12-03)
-==================
-
-New Features
-------------
-
-- Generation of a logrotate configuration can now be disabled by
-  providing a logrotate option with a value of "false".
-
-- Added documentation of the eggs option and why it generally
-  shouldn't be used.
-
-- Improved error handling.
-
-Bugs Fixed
-----------
-
-- The eggs option, when used, wasn't handled properly.
-
-
-0.5.0 (2008-11-03)
-==================
-
-New Features
-------------
-
-You can now specify a name option in server parts to have installed
-files use a different name than the section name.
-
-Bugs Fixed
-----------
-
-Pack crontab files weren't removed when parts were removed or renamed.
-
-0.4 (2008-02-18)
-================
-
-New Features
-------------
-
-The server recipe now honors the deployment name option.
-
-0.3.1 (2008-01-03)
-==================
-
-Bugs Fixed
-----------
-
-Shell-scripts using su weren't generated correctly.
-
-0.3 (2008-01-03)
-================
-
-New Features
-------------
-
-- You can now specify an email address in a packing crontab file to
-  control where errors are sent.
-
-- If you install a general ZEO script, using a zdaemon part::
-
-    [zdaemon]
-    recipe = zc.recipe.egg:script
-    eggs = zdaemon
-
-  you can request that shell scripts be generated that use the generic
-  zdaemon script. This can make updating software for deployed systems
-  easier since instance-specific scripts don't depend on paths, like
-  egg names, that are likely to change.
-
-Bugs Fixed
-----------
-
-- ZODB3 and most of its requirements were spurious dependencies of the
-  recipes. This caused ZODB3 to be installed using the Python used to
-  run the buildout, which caused problems in some circumstances.
-
-0.2.1 (2007-04-23)
-==================
-
-Bugs Fixed
-----------
-
-- crontab and logrotate configuration files were being generates incorrectly.
-
-0.2 (2007-04-17)
-================
-
-Added handling of %import directives.
-
-0.1 (2007-04-13)
-================
-
-Initial release.

Deleted: zc.zodbrecipes/trunk/buildout.cfg
===================================================================
--- zc.zodbrecipes/trunk/buildout.cfg	2013-03-28 20:42:38 UTC (rev 130178)
+++ zc.zodbrecipes/trunk/buildout.cfg	2013-03-28 20:43:11 UTC (rev 130179)
@@ -1,28 +0,0 @@
-[buildout]
-parts = test zodb zdaemon server
-develop = .
-find-links = http://download.zope.org/distribution
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.zodbrecipes [test]
-
-[zodb]
-recipe = zc.recipe.egg:script
-eggs = ZODB3
-interpreter = py
-
-[zdaemon]
-recipe = zc.recipe.egg:script
-eggs = zdaemon
-
-[server]
-recipe = zc.zodbrecipes:server
-zeo.conf =
-  <zeo>
-    address 8100
-  </zeo>
-  <filestorage 1>
-     path ${buildout:parts-directory}/Data.fs
-  </filestorage>
-shell-script = true

Deleted: zc.zodbrecipes/trunk/setup.py
===================================================================
--- zc.zodbrecipes/trunk/setup.py	2013-03-28 20:42:38 UTC (rev 130178)
+++ zc.zodbrecipes/trunk/setup.py	2013-03-28 20:43:11 UTC (rev 130179)
@@ -1,52 +0,0 @@
-import os
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-long_description = (
-    read('README.txt')
-    + '\n' +
-    'Detailed Documentation\n'
-    '**********************\n'
-    + '\n' +
-    read('zc', 'zodbrecipes', 'zeo.txt')
-    + '\n' +
-    'Download\n'
-    '**********************\n'
-    )
-
-open('doc.txt', 'w').write(long_description)
-
-name = "zc.zodbrecipes"
-setup(
-    name = name,
-    version='0.6.3dev',
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "ZC Buildout recipes for ZODB",
-    license = "ZPL 2.1",
-    keywords = "zodb buildout",
-    url='http://svn.zope.org/'+name,
-    long_description=long_description,
-
-    packages = find_packages('.'),
-    include_package_data = True,
-    namespace_packages = ['zc'],
-    install_requires = ['zc.buildout', 'setuptools',
-                        'zc.recipe.egg', 'ZConfig >=2.4'],
-    extras_require = dict(test=['zdaemon', 'ZODB3', 'zope.testing',
-                                'zope.proxy']),
-    entry_points = {
-        'zc.buildout': [
-             'server = %s:StorageServer' % name,
-             ]
-        },
-    classifiers = [
-       'Framework :: Buildout',
-       'Intended Audience :: Developers',
-       'License :: OSI Approved :: Zope Public License',
-       'Topic :: Software Development :: Build Tools',
-       'Topic :: Software Development :: Libraries :: Python Modules',
-       ],
-    )



More information about the checkins mailing list