zc.buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts, some of which may be non-Python-based. It lets you create a buildout configuration and reproduce the same software later on.

learn more… | top users | synonyms

1
vote
1answer
18 views

Plone 4.2.4 Buildout fails with plone.app.jquery pinned to 1.4.4

I am having a sudden issue with installing Plone 4.2.4. I have pinned PloneFormGen to 1.7.11 but the buildout fails with the following error: The version, 1.4.4, is not consistent with the ...
1
vote
1answer
36 views

Getting a Buildout Cache, so that buildout will work when download.zope.org is down

This blog gives a summary of how to use buildout when download.zope.org is down http://devblog.4teamwork.ch/blog/2013/06/06/download-dot-zope-dot-org-is-down-how-to-fix-buildout/ however it is ...
0
votes
2answers
30 views

SSLError in Requests when packaging as OS X .app

I'm developing an application for OS X. The application involves communicating with a server through python-requests, using a secure connection. I am able to run the python file I intend to package, ...
1
vote
1answer
35 views

How to add more eggs from the command line?

My buildout.cfg looks like this : [eggs] recipe = zc.recipe.egg eggs = package1 package2 I would like to be able to add more eggs on the command line when I run buildout. It works well ...
0
votes
1answer
35 views

How to tell to buildout to use setup.py from subdirectory?

I'm trying to install aeroolib with buildout. Unfortunately when I get module from bzr there is one more level, so setup.py is not inside aeroolib, but inside aeroolib/aeroolib. How can I tell ...
0
votes
1answer
25 views

Can I run scripts automatically after buildout?

After generating some console scripts using zc.recipe.egg, I would like to have those scripts actually automatically run by buildout after everything else is installed. I know of the ...
0
votes
0answers
121 views

Buildout and django-registration from repository for Django 1.5

I'd like to use Buildout to get django-registration with Django 1.5, and I have a custom user using MyUser(AbstractUser). I used to get it from the recipe v0.8 and it was great. Since, I switched to ...
0
votes
0answers
34 views

python/django buildout error while loading settings module

I am trying to setup my project with buildout but i have problem. My buildout.cfg [buildout] parts = django eggs = psycopg2 [versions] djangorecipe = 1.5 [django] recipe = djangorecipe project ...
0
votes
1answer
54 views

Ignore pycrypto in buildout $app/dist/ folder when deploying to Google App Engine

I am running into some difficulties deploying an app that I have been developing locally using dev_appserver 1.7.6 in a virtualenv with buildout. When I deploy, my local dist folder is also deployed ...
0
votes
0answers
42 views

buildout extension from git

I'm currently developing an extension for buildout. This extension will be probably open source so I'd publish this to PyPi and buildout will find and use my extension from PyPi. However chances are ...
0
votes
1answer
56 views

buildout - mr.developer changes order of parts

I have a buildout configuration that calls two recipes. The two recipes have to be executed in a defined order. The recipe that is to be executed last is fetched from a git repository by the ...
0
votes
1answer
61 views

Faking an egg in buildout from a github repository

I want to try this middleware in a Django project I'm working on: https://github.com/directeur/django-pdf. It goes by the name "django-pdf", but is not the same as ...
0
votes
2answers
26 views

Why isn't Buildout downloading my dependencies?

Buildout seems to have always just worked™ in the past, but I can't seem to get it to download my dependencies this go-around. Here's my buildout.cfg: [buildout] parts = python_section develop ...
1
vote
1answer
81 views

Generating an IPython script in a zc.buildout

I use IPython all the time here on my machine instead of the default Python interpreter because it has a lot more features and generally feels more powerful. I'd like to use it in my zc.buildout ...
1
vote
1answer
71 views

How do I activate a Plone product during buildout? [duplicate]

I'm loosely following Martin Aspeli's book Professional Plone 4 Development and have a repeatable deployment using buildout. In order to make everything completely automated, I'd like to be able to ...
2
votes
1answer
92 views

Can buildout create content as part of a Plone install?

I'm trying to achieve a repeatable deployment of Plone for a site, and using buildout, basically following Martin Aspeli's book Professional Plone 4 Development. I can set up the system with my source ...
0
votes
1answer
79 views

Issue in deployment zc.buildout with apache

I am facing some issues with deploying my buildout project (Django) in Apache using mod_wsgi. My folder structure: t/ bootstrap.py setup.py bin/ buildout django django.wsgi ...
0
votes
1answer
54 views

Buildout's python packages or buildout's django.wsgi not loading

Am working arround zc.buildout. I deployed my project in my local apache server. My issue is when I run it, I got an import error 'No module named raven.conf' But there is all the packages I ...
0
votes
1answer
86 views

AssertionError while run zc.buildout

I have an issue in work with buildout. I download bootstrap.py using , wget http://downloads.buildout.org/2/bootstrap.py buildout.cfg [buildout] parts = python django develop = . eggs = ...
2
votes
3answers
107 views

plone buildout with kgs in offline mode

My buildout.cfg for a plone project uses a kgs (known good set): [buildout] extends = http://dist.plone.org/release/4.2/versions.cfg Since it's a network dependency, buildout does not work when ...
1
vote
2answers
77 views

buildout configuration issue for my django project,not get specified version of django

I installed zc.buildout using easy_install. I used the tutorial at http://jacobian.org/writing/django-apps-with-buildout/. My problem is, am not able to install the versions specified in the ...
4
votes
1answer
417 views

zc.buildout 2.0.0 release somehow ends up breaking Plone buildouts

I am trying to run old Plone 3.3 buildout.cfg. In [versions] I pin down buildout as the following: cat buildout.cfg|grep -i zc.buildout zc.buildout = 1.4.3 However, for some reason bootstrap.py ...
7
votes
1answer
1k views

zc.buildout stopped working: ImportError: No module named apport.fileutils

I've been using buildout for quite a while now without any issue, in fact I did yesterday without any problems. But as today all my projects fail to buildout. I tried on two different Ubuntu ...
0
votes
1answer
86 views

What's a minimal buildout.cfg file for a Python package?

I'm developing a small Python package - a bunch of *.py files. It has some dependencies, and I'd like to use virtualenv and buildout to create its own, separated environment for development and I'd ...
0
votes
0answers
42 views

Why './bin/' prefix instead of just 'bin/' in 'buildout' documentation? [closed]

I am still a zc.buildout newbie, but one thing I find superfluous and can't understand is, why does the documentation and a lot of other resources, always use the ./bin/ prefix, for invoking commands ...
1
vote
1answer
105 views

Import egg functionality during setup in a buildout

The setup.py file in a package I maintain, uses code from another package to build extensions: from setuptools import setup, find_packages from mydependence import build_ext ... setup( ...
-1
votes
1answer
105 views

Plone & LDAP - Client fails to start [closed]

I'm trying to set up a mirror of an existing Plone 4 site. The buildout runs successfully, as does zeoserver. However, upon running the client in the foreground, I get the error below. This SO post ...
1
vote
1answer
64 views

Using zopyx.smartprintng.plone receive “[Errno 111] Connection refused” when trying to generate PDF

Overview A client contacted us requesting that when they fill in a form on their site (created with PloneFormGen), they want the input of the form sent to the customer in PDF format (the converted ...
0
votes
1answer
41 views

How to pull a python package from a repo using buildout?

I have a pre-rolled bootstrap script that creates a buildout.cfg for my wsgi-based framework. Buildout is run with this initially to create the necessary paste directory structure. I then pull my code ...
0
votes
0answers
67 views

Swig compilation error: Bad register name

I'm trying to install swig 1.3.40 onto Centos 5.8. (all recent updates installed). I succeeded to do so days ago. But after integrating the installation into my buildout even for a clean sources ...
1
vote
1answer
74 views

Django Buildout recipe for pywhois (not on pypi)

I Am trying to create a buildout recipe for pywhois on google code. The site of which is here: http://code.google.com/p/pywhois/ Note: if you use easy_install pywhois it installs another package ...
1
vote
3answers
184 views

How do I access ${buildout:directory} from Python code?

I have a Pyramid web application managed with zc.buildout. In it, I need to read a file on disk, which is located in a sub-directory of buildout directory. The problem is with determining the path to ...
0
votes
1answer
88 views

How to Achieve Pure Isolation with Buildout

For the last week I have been struggling to get pure isolation using buildout. What I'm looking to do is install Django and the other eggs that my project needs in isolation of any of the ...
1
vote
1answer
41 views

Could not import settings in zc.buildout

I just setup my project and I'm having a problem getting Django to work. Here's my buildout.cfg: [buildout] parts = python django develop = . eggs = myproject [python] recipe = zc.recipe.egg ...
0
votes
1answer
44 views

What index is buildout really using?

I'm trying to install couchdbkit using following buildout config: [buildout] parts = eggs include-site-packages = false versions = versions [eggs] recipe = zc.recipe.egg:eggs eggs = couchdbkit ...
3
votes
2answers
156 views

Running bin/buildout using subprocess.call() fails

tl,dr: I have buildouts that work fine with "bin/buildout" from the shell, but fail when I run subprocess.call(["bin/buildout"]) or similar from Python. Why? Any workaround? I have added the 'python' ...
3
votes
1answer
108 views

Run on a different port than with which buildout was run

Everywhere I have read, they say the same thing: change port in some kind of config file and run buildout. That is, a buildout is needed to run plone in a different port. Why cannot it be like this: ...
0
votes
2answers
196 views

Buildout Fails w/ Python 2.5

I'm running Mac OSX 10.7.5 with Pythons 2.5-2.7 installed. One of the dependencies of my app is newrelic 1.9.0.13 (which is located here). When I bootstrap and build for Python 2.6 or 2.7, everything ...
0
votes
0answers
315 views

Deploying Django with gunicorn and buildout

I wrote a little Django app, using a websockets library (gevent-socketio) and building a virtual environment with buildout. Currently, for serving I have a custom command, that constructs the ...
3
votes
4answers
411 views

“LookupError: unknown encoding: ascii” when running bootstrap

I'm using zc.buildout, and when I try to run bootstrap (for the first time on a new computer), I'm receiving the following error below: >> python2.7 bootstrap.py Traceback (most recent call ...
0
votes
2answers
357 views

Plone ZMySQLDA, Couldn't install MySQL-python 1.2.4c1 with buildout

I want to use mysql form ploneformgen, but I Can't buildout plone. buildout log http://pastie.org/5345272.js Getting required 'MySQL-python>=1.2.1' required by Products.ZMySQLDA 3.1.1. We have ...
0
votes
1answer
44 views

Zope buildout for development environment

Is it possible to have Zope2 buildout unpack python files into their normal directories like how standard python modules do, and not under separate .egg directories? It makes looking for files easier ...
0
votes
1answer
165 views

Developing grok-style Dexterity add-ons in Plone 4.3

According to: http://plone.org/products/dexterity/documentation/how-to/install To use grok-style declarations in Plone 4.3 one must install Dexterity via buildout with setuptools extras ...
1
vote
1answer
55 views

Buildout is it possible to override dependencies for an application containing its own dependencies?

Is it possible to override dependencies in buildout for an egg? I need to add some newer libraries to some eggs which contain requirements for older packages.
0
votes
2answers
97 views

Plone - parsing error in buildout.cfg - “PlonePlonebuildout configuration files[test]”

So I'm trying to work through the Plone 4 book and I copied a buildout file (from page 51) that contains the following lines: [instance] recipe = plone.recipe.zope2instance http-address = 8080 user = ...
0
votes
1answer
95 views

Plone 4.1 - Running bin/buildout crashes while setting up a fresh installation - zope.configuration 3.7.4. not recognized

I'm using Plone 4.1 and trying to run bin/buildout in a fresh directory, having just managed to get python bootstrap.py --distribute to work. bin/buildout runs along fine for a couple of minutes, ...
1
vote
1answer
150 views

Plone - running bootstrap.py to start a fresh project fails: “The directory to be used as a download cache doesn't exist.”

I took the following steps: First - Created a directory called pln41 and a virtualenv called pln41. (I installed PIL in the virtualenv.) Second - Entered the directory and ran: wget ...
0
votes
2answers
62 views

Automating customisation of Django projects after '$ django-admin.py startproject my_project' with zc.buildout

I have skimmed the official zc.buildout documentation and some tuts but I haven't found a clear answer to the following question. Suppose I wanted to automate the following changes in every Django ...
1
vote
2answers
298 views

I ran bin/buildout to install Plone and got dozens of syntax errors, then failure — but why?

I'm following the instructions for setting up a development environment which can be found at the beginning of the book Professional Plone 4 Development. I took the following steps. First, I created ...
0
votes
1answer
250 views

Plone - error while trying to run bootstrap.py as I attempt to start from scratch

Ok, so I bought Professional Plone 4 Development and I am now trying to work through the initial setup. Here is what I have done so far: First, I created a virtual environment called pl and a ...

1 2 3 4 5