我正在尝试使用构建脚本重新创建这个satchmo 环境:
[buildout]
parts =
django
satchmo
eggs =
pycrypto
PIL
pyyaml
trml2pdf
sorl-thumbnail
django-registration
django-caching-app-plugins
django-threaded-multihost
django-signals-ahoy
django-keyedcache
django-livesettings
django
satchmo
Sphinx
docutils
extensions =
mr.developer
buildout.eggtractor
auto-checkout =
django-caching-app-plugins
django-threaded-multihost
django-signals-ahoy
django-keyedcache
django-livesettings
satchmo
sources = sources
[sources]
django-caching-app-plugins = hg http://bitbucket.org/bkroeze/django-caching-app-plugins/
django-signals-ahoy = hg http://bitbucket.org/bkroeze/django-signals-ahoy/
django-threaded-multihost = hg https://bkroeze@bitbucket.org/bkroeze/django-threaded-multihost/
django-keyedcache = hg http://bitbucket.org/bkroeze/django-keyedcache/
django-livesettings = hg http://bitbucket.org/bkroeze/django-livesettings/
satchmo = hg http://bitbucket.org/chris1610/satchmo/
[trml2pdf]
recipe = zc.recipe.egg
find-links = http://www.satchmoproject.com/snapshots/trml2pdf-1.2.tar.gz
eggs = trml2pdf
[satchmo]
recipe = zc.recipe.egg
find-links = ./src/satchmo
eggs = ${buildout:eggs}
[django]
recipe = djangorecipe
version = 1.2.3
eggs = ${buildout:eggs}
构建本身运行良好,我现在的问题是依赖关系之一。
satchmo 需要的所有东西都已安装,但运行 clonesatchmo.py 会抱怨当我清楚地看到 PIL 时没有安装它,所以我猜我没有“告诉”satchmo 依赖于 PIL 的构建。
我仍然对“鸡蛋”部分和“零件”部分中的内容以及它们何时需要进入两者感到困惑?
谁能在这里看到任何错误或建议如何配置依赖项?
提前致谢,
詹姆士