Commit 72b20414 authored by Hanno Schlichting's avatar Hanno Schlichting

Removed the bin folder, as we don't use the create_lib_python script. Beware SVN will annoy you!

parent 4371f969
import os
import shutil
def create_lib_python(options, buildout):
if os.path.exists(options['dst-dir']):
shutil.rmtree(options['dst-dir'])
shutil.copytree(options['src-dir'], options['dst-dir'])
for pathname in options['skip-names'].split():
path = os.path.join(options['dst-dir'], pathname)
if os.path.exists(path):
if os.path.isdir(path):
shutil.rmtree(path)
else:
os.remove(path)
...@@ -3,6 +3,7 @@ develop = ...@@ -3,6 +3,7 @@ develop =
. .
parts = parts =
test test
scripts
zopepy zopepy
extends = versions-zope2.cfg extends = versions-zope2.cfg
...@@ -21,6 +22,10 @@ SOFTWARE_HOME = ${buildout:directory}/src ...@@ -21,6 +22,10 @@ SOFTWARE_HOME = ${buildout:directory}/src
ZOPE_HOME = ${buildout:directory} ZOPE_HOME = ${buildout:directory}
INSTANCE_HOME = ${buildout:directory} INSTANCE_HOME = ${buildout:directory}
[scripts]
recipe = zc.recipe.egg:scripts
eggs = Zope2
[zopepy] [zopepy]
recipe = zc.recipe.egg recipe = zc.recipe.egg
eggs = ${buildout:eggs} eggs = ${buildout:eggs}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment