[Checkins] SVN: zc.recipe.deployment/trunk/ - fixed test dependencies

Michael Howitz mh at gocept.com
Wed Apr 6 02:49:31 EDT 2011


Log message for revision 121293:
  - fixed test dependencies
  - moved change log into separate file
  

Changed:
  A   zc.recipe.deployment/trunk/CHANGES.txt
  U   zc.recipe.deployment/trunk/README.txt
  U   zc.recipe.deployment/trunk/setup.py

-=-
Copied: zc.recipe.deployment/trunk/CHANGES.txt (from rev 121290, zc.recipe.deployment/trunk/README.txt)
===================================================================
--- zc.recipe.deployment/trunk/CHANGES.txt	                        (rev 0)
+++ zc.recipe.deployment/trunk/CHANGES.txt	2011-04-06 06:49:31 UTC (rev 121293)
@@ -0,0 +1,94 @@
+Changes
+*******
+
+0.8.1 (unreleased)
+==================
+
+Fixed test dependencies.
+
+
+0.8.0 (2010-05-18)
+==================
+
+Features Added
+--------------
+
+Added recipe for updating configuration files that may shared by
+multiple applications.
+
+0.7.1 (2010-03-05)
+==================
+
+Bugs fixed
+----------
+
+- Fixed a serious bug that cause buildouts to fail when using new
+  versions of the deployment recipe with older buildouts.
+
+- Made uninstall more tolerant of directories it's about to delete
+  already being deleted.
+
+0.7.0 (2010-02-01)
+==================
+
+Features Added
+--------------
+
+You can now specify a user for crontab entries that is different than
+a deployment user.
+
+0.6 (2008-02-01)
+================
+
+Features Added
+--------------
+
+Added the ability to specify a name independent of the section name.
+Also, provide a name option for use by recipes.
+
+Important note to recipe authors: Recipes should use the deployment
+name option rather than the deployment name when computing names of
+generated files.
+
+0.5 (Mar 23, 2007)
+==================
+
+Features Added
+--------------
+
+Added recipe for generating crontab files in /etc/cron.d.
+
+0.4 (Mar 22, 2007)
+==================
+
+Features Added
+--------------
+
+- Added setting for the logrotate configuration directories.
+
+Bugs Fixed
+----------
+
+- The documentation gave the wrong name for the crontab-directory option.
+
+0.3 (Feb 14, 2007)
+==================
+
+Features Added
+--------------
+
+- Added a configuration recipe for creating configuration files.
+
+0.2.1 (Feb 13, 2007)
+====================
+
+- Fixed bug in setup file.
+
+0.2 (Feb 7, 2007)
+=================
+
+Bugs Fixed
+----------
+
+- Non-empty log and run directories were deleated in un- and
+  re-install.

Modified: zc.recipe.deployment/trunk/README.txt
===================================================================
--- zc.recipe.deployment/trunk/README.txt	2011-04-06 06:46:23 UTC (rev 121292)
+++ zc.recipe.deployment/trunk/README.txt	2011-04-06 06:49:31 UTC (rev 121293)
@@ -42,92 +42,3 @@
 The etc, log, and run directories are created in such a way that the
 directories are owned by the user specified in the user option and are
 writable by the user and the user's group.
-
-Changes
-*******
-
-0.8.0 (2010-05-18)
-==================
-
-Features Added
---------------
-
-Added recipe for updating configuration files that may shared by
-multiple applications.
-
-0.7.1 (2010-03-05)
-==================
-
-Bugs fixed
-----------
-
-- Fixed a serious bug that cause buildouts to fail when using new
-  versions of the deployment recipe with older buildouts.
-
-- Made uninstall more tolerant of directories it's about to delete
-  already being deleted.
-
-0.7.0 (2010-02-01)
-==================
-
-Features Added
---------------
-
-You can now specify a user for crontab entries that is different than
-a deployment user.
-
-0.6 (2008-02-01)
-================
-
-Features Added
---------------
-
-Added the ability to specify a name independent of the section name.
-Also, provide a name option for use by recipes.
-
-Important note to recipe authors: Recipes should use the deployment
-name option rather than the deployment name when computing names of
-generated files.
-
-0.5 (Mar 23, 2007)
-==================
-
-Features Added
---------------
-
-Added recipe for generating crontab files in /etc/cron.d.
-
-0.4 (Mar 22, 2007)
-==================
-
-Features Added
---------------
-
-- Added setting for the logrotate configuration directories.
-
-Bugs Fixed
-----------
-
-- The documentation gave the wrong name for the crontab-directory option.
-
-0.3 (Feb 14, 2007)
-==================
-
-Features Added
---------------
-
-- Added a configuration recipe for creating configuration files.
-
-0.2.1 (Feb 13, 2007)
-====================
-
-- Fixed bug in setup file.
-
-0.2 (Feb 7, 2007)
-=================
-
-Bugs Fixed
-----------
-
-- Non-empty log and run directories were deleated in un- and
-  re-install.

Modified: zc.recipe.deployment/trunk/setup.py
===================================================================
--- zc.recipe.deployment/trunk/setup.py	2011-04-06 06:46:23 UTC (rev 121292)
+++ zc.recipe.deployment/trunk/setup.py	2011-04-06 06:49:31 UTC (rev 121293)
@@ -32,6 +32,8 @@
     long_description = (
     read('README.txt')
     + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
     'Detailed Documentation\n'
     '**********************\n'
     + '\n' +
@@ -40,9 +42,13 @@
     'Download\n'
     '**********************\n'
     ),
-    
+
     install_requires = ['setuptools'],
-    extras_require = {'test': 'zc.buildout'},
+    extras_require = {
+        'test': [
+            'zc.buildout',
+            'zope.testing',
+            ]},
     entry_points = entry_points,
     package_dir = {'': 'src'},
     packages = find_packages('src'),



More information about the checkins mailing list