This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Oct 21 02:19:16 -0700 2008 | |
| |
LICENSE.txt | Tue Oct 21 02:19:16 -0700 2008 | |
| |
README.rst | Tue Oct 21 12:05:07 -0700 2008 | |
| |
setup.py | Sat Sep 26 05:52:38 -0700 2009 | |
| |
zerokspot/ | Sat Sep 26 05:52:38 -0700 2009 |
README.rst
urls
A list of packages (one per line) that should be installed into
${buildout:parts-directory}/<partname>.
location
Points to the prefix of the installed package
extra-path
Points to the site-package-directory within the prefix
zerokspot.recipe.distutils
This recipe offers a simple way to install dependencies that are only available as distutils-archives:
[buildout]
parts = part
[part]
recipe = zerokspot.recipe.distutils
urls =
http://domain.com/file.tar.gz
This will install the package into ${buildout:parts-directory}/part/ and make its library components available via ${part:extra-path}.
Options
Additionally provided variables
Disclaimer
Function-wise this recipe is inspired by Kevin Teague's collective.recipe.distutils, but solves some aspects a little bit different. For instance, this recipe uses setup.py's --prefix-argument in order to also support the installation of packages that have a script-component. It also distinguishes between ${part:location} and ${part:extra-path} with the first representing the prefix-directory while the latter pointing to the respective "site-packages"-directory.








