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

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


Log message for revision 130178:
  moved to github

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

-=-
Added: zc.zdaemonrecipe/trunk/MOVED_TO_GITHUB
===================================================================
--- zc.zdaemonrecipe/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zc.zdaemonrecipe/trunk/MOVED_TO_GITHUB	2013-03-28 20:42:38 UTC (rev 130178)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zc.zdaemonrecipe

Deleted: zc.zdaemonrecipe/trunk/README.txt
===================================================================
--- zc.zdaemonrecipe/trunk/README.txt	2013-03-28 17:51:52 UTC (rev 130177)
+++ zc.zdaemonrecipe/trunk/README.txt	2013-03-28 20:42:38 UTC (rev 130178)
@@ -1,24 +0,0 @@
-**************
-zdaemon recipe
-**************
-
-The zdaemon recipe provides support for generating zdaemon-based run
-scripts.
-
-.. contents::
-
-Releases
-********
-
-0.3 (unreleased)
-================
-
-0.2 (2008-09-10)
-================
-
-- Added support for the deployment recipe ``name`` option. 
-
-0.1 (2008-05-01)
-================
-
-Initial release.

Deleted: zc.zdaemonrecipe/trunk/buildout.cfg
===================================================================
--- zc.zdaemonrecipe/trunk/buildout.cfg	2013-03-28 17:51:52 UTC (rev 130177)
+++ zc.zdaemonrecipe/trunk/buildout.cfg	2013-03-28 20:42:38 UTC (rev 130178)
@@ -1,8 +0,0 @@
-[buildout]
-develop = .
-parts = test
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zc.zdaemonrecipe [test]
-

Deleted: zc.zdaemonrecipe/trunk/setup.py
===================================================================
--- zc.zdaemonrecipe/trunk/setup.py	2013-03-28 17:51:52 UTC (rev 130177)
+++ zc.zdaemonrecipe/trunk/setup.py	2013-03-28 20:42:38 UTC (rev 130178)
@@ -1,59 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 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.
-#
-##############################################################################
-name = 'zc.zdaemonrecipe'
-version = '0.3dev'
-
-import os
-from setuptools import setup, find_packages
-
-entry_points = '''
-[zc.buildout]
-default=zc.zdaemonrecipe:Recipe
-'''
-
-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', 'zdaemonrecipe', 'README.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
-        )
-
-open('doc.txt', 'w').write(long_description)
-
-setup(
-    name = name,
-    version = version,
-    author = 'Jim Fulton',
-    author_email = 'jim at zope.com',
-    description = 'ZC Buildout recipe for zdaemon scripts',
-    long_description=long_description,
-    license = 'ZPL 2.1',
-
-    entry_points=entry_points,
-    packages = find_packages('.'),
-    namespace_packages = ['zc'],
-    extras_require = dict(test=['zdaemon', 'zope.testing']),
-    install_requires = ['setuptools',
-                        'zc.buildout', 'zc.recipe.egg',
-                        'ZConfig'],
-    zip_safe = False,
-    )



More information about the checkins mailing list