[Checkins] SVN: zc.copy/trunk/ switch to eggs

Gary Poster gary at zope.com
Wed Jul 4 16:37:46 EDT 2007


Log message for revision 77433:
  switch to eggs

Changed:
  _U  zc.copy/trunk/
  A   zc.copy/trunk/CHANGES.txt
  U   zc.copy/trunk/buildout.cfg
  U   zc.copy/trunk/setup.py
  A   zc.copy/trunk/src/zc/copy/CHANGES.txt
  U   zc.copy/trunk/src/zc/copy/README.txt

-=-

Property changes on: zc.copy/trunk
___________________________________________________________________
Name: svn:ignore
   - develop-eggs
bin
parts
.installed.cfg

   + develop-eggs
bin
parts
.installed.cfg
build
dist
eggs


Added: zc.copy/trunk/CHANGES.txt
===================================================================
--- zc.copy/trunk/CHANGES.txt	                        (rev 0)
+++ zc.copy/trunk/CHANGES.txt	2007-07-04 20:37:45 UTC (rev 77433)
@@ -0,0 +1 @@
+Please see CHANGES.txt in the package.


Property changes on: zc.copy/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.copy/trunk/buildout.cfg
===================================================================
--- zc.copy/trunk/buildout.cfg	2007-07-04 20:20:50 UTC (rev 77432)
+++ zc.copy/trunk/buildout.cfg	2007-07-04 20:37:45 UTC (rev 77433)
@@ -1,15 +1,16 @@
 [buildout]
 develop = .
-parts = zope3 test
+parts = py test
 
 find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zc.copy
-extra-paths = parts/zope3/src
+defaults = "--tests-pattern [fn]?tests --exit-with-status".split()
 
-[zope3]
-recipe = zc.recipe.zope3checkout
-url = svn://svn.zope.org/repos/main/Zope3/branches/3.3
+[py]
+recipe = zc.recipe.egg
+eggs = zc.copy
+interpreter = py
 

Modified: zc.copy/trunk/setup.py
===================================================================
--- zc.copy/trunk/setup.py	2007-07-04 20:20:50 UTC (rev 77432)
+++ zc.copy/trunk/setup.py	2007-07-04 20:37:45 UTC (rev 77433)
@@ -2,8 +2,19 @@
 
 setup(
     name="zc.copy",
-    version="1.0",
-    install_requires=[],
+    version="1.1b",
+    install_requires=[
+        'setuptools',
+        'ZODB3',
+        'zope.component',
+        'zope.interface',
+        'zope.event',
+        'zope.lifecycleevent',
+        'zope.copypastemove',
+        'zope.app.container',
+        'zope.location',
+        'zope.testing',
+        ],
 #    dependency_links=['http://download.zope.org/distribution/',],
     packages=find_packages('src'),
     include_package_data=True,
@@ -15,7 +26,9 @@
     author='Zope Project',
     author_email='zope3-dev at zope.org',
     description=open("README.txt").read(),
-    long_description=open("src/zc/copy/README.txt").read(),
+    long_description=
+        open("src/zc/copy/CHANGES.txt").read() + '\n\n' +
+        open("src/zc/copy/README.txt").read(),
     license='ZPL 2.1',
     keywords="zope zope3",
     )

Added: zc.copy/trunk/src/zc/copy/CHANGES.txt
===================================================================
--- zc.copy/trunk/src/zc/copy/CHANGES.txt	                        (rev 0)
+++ zc.copy/trunk/src/zc/copy/CHANGES.txt	2007-07-04 20:37:45 UTC (rev 77433)
@@ -0,0 +1,23 @@
+=======
+Changes
+=======
+
+1.1
+===
+
+(series for Zope 3.4 and above)
+
+1.1b
+----
+
+- Converted to eggs
+
+1.0
+===
+
+(series for Zope 3.3; no dependencies on Zope eggs)
+
+1.0
+---
+
+Initial non-dev release


Property changes on: zc.copy/trunk/src/zc/copy/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zc.copy/trunk/src/zc/copy/README.txt
===================================================================
--- zc.copy/trunk/src/zc/copy/README.txt	2007-07-04 20:20:50 UTC (rev 77432)
+++ zc.copy/trunk/src/zc/copy/README.txt	2007-07-04 20:37:45 UTC (rev 77433)
@@ -1,3 +1,7 @@
+=======
+zc.copy
+=======
+
 The copier module has two main components: a generic replacement for
 zope.location.pickling.locationCopy called zc.copy.copy, and a
 replacement for zope.copypastemove.ObjectCopier that uses the new copy



More information about the Checkins mailing list