[Checkins] SVN: zc.recipe.filestorage/trunk/ Updated to reflct current buildout recipe api.

Jim Fulton jim at zope.com
Sun Jan 7 13:07:55 EST 2007


Log message for revision 71784:
  Updated to reflct current buildout recipe api.
  I really need to redo the test.
  

Changed:
  U   zc.recipe.filestorage/trunk/README.txt
  U   zc.recipe.filestorage/trunk/setup.py
  U   zc.recipe.filestorage/trunk/zc/recipe/filestorage/__init__.py

-=-
Modified: zc.recipe.filestorage/trunk/README.txt
===================================================================
--- zc.recipe.filestorage/trunk/README.txt	2007-01-07 18:07:52 UTC (rev 71783)
+++ zc.recipe.filestorage/trunk/README.txt	2007-01-07 18:07:54 UTC (rev 71784)
@@ -37,6 +37,7 @@
     </zodb>
 
     >>> recipe.install()
+    ()
 
     >>> import tempfile
     >>> d = tempfile.mkdtemp()
@@ -61,6 +62,7 @@
     </zodb>
 
     >>> recipe.install()
+    ()
 
     >>> import os
     >>> os.listdir(d)

Modified: zc.recipe.filestorage/trunk/setup.py
===================================================================
--- zc.recipe.filestorage/trunk/setup.py	2007-01-07 18:07:52 UTC (rev 71783)
+++ zc.recipe.filestorage/trunk/setup.py	2007-01-07 18:07:54 UTC (rev 71784)
@@ -3,7 +3,7 @@
 name = "zc.recipe.filestorage"
 setup(
     name = name,
-    version = "1.0a1",
+    version = "1.0a5",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for defining a file-storage",

Modified: zc.recipe.filestorage/trunk/zc/recipe/filestorage/__init__.py
===================================================================
--- zc.recipe.filestorage/trunk/zc/recipe/filestorage/__init__.py	2007-01-07 18:07:52 UTC (rev 71783)
+++ zc.recipe.filestorage/trunk/zc/recipe/filestorage/__init__.py	2007-01-07 18:07:54 UTC (rev 71784)
@@ -39,7 +39,11 @@
             part = os.path.dirname(self.options['path'])
             if not os.path.exists(part):
                 os.mkdir(part)
+        return ()
 
+    def update(self):
+        pass
+
 template = """\
 <zodb>
   <filestorage>



More information about the Checkins mailing list