Tagged Questions

0
votes
4answers
168 views

How to install django-haystack using buildout

I'm trying to convert a current Django project in development to use zc.buildout So far, I've got all the bits figured except for Haystack figured out. The Haystack source is ava …
0
votes
1answer
57 views

How to use buildout to create localized version of my project?

Hi, I am trying to create a localized version of my project. I started from the following: mkdir my cd my wget http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstra …
0
votes
3answers
67 views

Better resources to learn buildout

I am trying to grasp a bit more of buildout with this tutorial, but unlike a tutorial, it seems like a cut and paste of presentation slides. I don't have a really clear idea of wha …
0
votes
1answer
24 views

Pyfacebook from buildout

What is the best way to install the latest version of pyfacebook with buildout? The package is hosted on github and is not on pypi. This system doesn't have git installed, so a git …
0
votes
1answer
71 views

Buildout and Virtualenv

I am messing around with the combination of buildout and virtualenv to setup an isolated development environment in python that allows to do reproducible builds. There is a recipe …
1
vote
1answer
47 views

How to contribute improvements to packages hosted on Cheeseshop ( pypi ) ?

I've been using zc.buildout more and more and I'm encountering problems with some recipes that I have solutions to. These packages generally fall into several categories: Packa …
1
vote
3answers
153 views

How to install distutils packages using distutils api or setuptools api

Hello, I'm working on a buildout script that needs to install a distutils package on remote server. On PyPi there are 2 recipes for doing this collective.recipe.distutils 0.1 and …
2
votes
2answers
215 views

combine javascript files at deployment in python

Hi, I'm trying to reduce the number of scripts included in our website and we use buildout to handle deployments. Has anybody successfully implemented a method of combining and com …
1
vote
1answer
64 views

Preventing variable substitutions from occurring with buildout.

Is there a simple way of escaping the magic characters used for variable substitution in a buildout configuration, such that the string is left alone. In other words, where I say: …
1
vote
1answer
105 views

Buildout recipe for a hierarchy of parts.

Is there a Python buildout recipe which would allow the following: [buildout] parts = group-of-parts [group-of-parts] recipe = what.can.i.use.for.this parts = part-1 part-2 [par …
1
vote
1answer
142 views

What’s the simplest possible buildout.cfg to install Zope 2?

I know that the reccomended way to install Zope is with Buildout, but I can't seem to find a simple buildout.cfg to install a minimal Zope 2 environment. There are lots to install …
0
votes
1answer
81 views

How to tell Buildout to install a egg from a URL (w/o pypi)

I have some egg accessible as a URL, say http://myhosting.com/somepkg.egg . Now I don't have this somepkg listed on pypi. How do I tell buildout to fetch and install it for me. I …
1
vote
1answer
264 views

How do I use easy_install and buildout when pypi is down?

I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of P …
0
votes
6answers
815 views

Installing certain packages using virtualenv

So, I want to start using virtualenv this year. I like the no-site-packages option, that is nice. However I was wondering how to install certain packages into each virtualenv. F …
6
votes
4answers
810 views

Python Code Organization Question : Eggs + Packages + Buildout + Unit Tests + SVN

I have several python projects that share common modules. Until now, I've been ... ahem ... keeping multiple copies of the common code and synchronizing by hand. But I'd clearly pr …