X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Makefile.buildout;h=4f71535d316a9932e264b03e690481d64ef7e146;hb=bf9675c4197fc265ebe16e0f47866b9cc1a2ab60;hp=084641498f60337fdf7f66c52578d05e76e69831;hpb=01e9581d20798f596bb944b130e7453e6b994ab6;p=zope-bootstrap.git diff --git a/Makefile.buildout b/Makefile.buildout index 0846414..4f71535 100644 --- a/Makefile.buildout +++ b/Makefile.buildout @@ -105,9 +105,24 @@ bootstrap:: sed -i -e '1s/^#!.*\/python/#!$(subst /,\/,$(PYTHON))/' $(PYTHON_DIR)/bin/* $(PYTHON) -c 'from zc.buildout.buildout import main; main(["bootstrap"])' +update:: + bin/buildout $(BUILDOUT_OPTS) + .gitignore:: + @$(gitignore) "*.egg-info/" @$(gitignore) "/buildout-net.cfg" @$(gitignore) "/buildout-nonet.cfg" clean:: rm -f buildout-net.cfg buildout-nonet.cfg + +versions: + @echo "# Add the following lines to [versions] in buildout.cfg to pin all packages" + @bin/buildout -vvvvv | sed -ne 's/^Picked: //p' | sort | uniq +.PHONY: versions + +fullhelp:: + @echo " versions" + @echo " Generate lines to be added to 'buildout.cfg' to pin all package" + @echo " versions." + @echo