summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorReinout van Rees <reinout@vanrees.org>2009-10-16 13:45:19 +0200
committerReinout van Rees <reinout@vanrees.org>2009-10-16 13:45:19 +0200
commit6529a376d21b45fbc8f8ca33bd797c21f4589f35 (patch)
tree391af5e14c1cabda558d85f174225137ee2aad37 /README.txt
parentfa9206561cd5483846b86c89206ced48d502018b (diff)
downloadpython-setuptools-git-6529a376d21b45fbc8f8ca33bd797c21f4589f35.tar.gz
Removed "shared eggs dir gets hosed" warning from the readme and replaced it
with a "everything works great now" message. Tnx to Vincent Fretin for warning me about it. --HG-- branch : distribute extra : rebase_source : 7c8bca372a67bc3741ba376becc5a8337619bbd0
Diffstat (limited to 'README.txt')
-rwxr-xr-xREADME.txt21
1 files changed, 13 insertions, 8 deletions
diff --git a/README.txt b/README.txt
index 271b397e..fbdf3279 100755
--- a/README.txt
+++ b/README.txt
@@ -196,16 +196,21 @@ Install FAQ
- **How does Distribute interacts with zc.buildout?**
- You can use Distribute in your zc.buildout.
-
- Although you have to run a specific `bootstrap.py` file that is available
- at `http://python-distribute.org/bootstrap.py`. The code is located at
+ You can use Distribute in your zc.buildout. *The only thing* you need to do
+ is use the bootstrap at `http://python-distribute.org/bootstrap.py`. Run
+ that bootstrap and ``bin/buildout`` (and all other buildout-generated
+ scripts) will transparently use distribute instead of setuptools. You do
+ not need a specific buildout release.
+
+ A shared eggs directory is no problem (since 0.6.6): the setuptools egg is
+ left in place unmodified. So other buildouts that do not yet use the new
+ bootstrap continue to work just fine. And there is no need to list
+ ``distribute`` somewhere in your eggs: using the bootstrap is enough.
+
+ The source code for the bootstrap script is located at
`http://bitbucket.org/tarek/buildout-distribute`.
- Beware that if you use a shared eggs folder with buildout, you need to
- switch all buildouts that use it to distribute. This is due to the fact
- that the setuptools eggs located in the shared folder will be replaced
- by a fake one, alongside distribute.
+
-----------------------------
Feedback and getting involved