- 16 Mar, 2013 3 commits
-
-
Jim Fulton authored
Fix for #73: proper sys.exit code when restarting buildout
-
Jim Fulton authored
Fixing docstring incorrect reference to obsolete command line options
-
Jim Fulton authored
Add support to ignore sections conditionally based on a Python expression.
-
- 11 Mar, 2013 2 commits
-
-
pombredanne authored
-
pombredanne authored
-
- 04 Mar, 2013 2 commits
-
-
Marius Gedminas authored
Fixes https://github.com/buildout/buildout/issues/94
-
Marius Gedminas authored
-
- 03 Mar, 2013 2 commits
-
-
Jim Fulton authored
Add bin/buildout --version
-
pombredanne authored
-
- 26 Feb, 2013 4 commits
-
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
A restarted project's exit code is now properly propagated. This makes buildout more reliable in automatically-run situations.
-
Reinout van Rees authored
When the process is restarted (and results in an error), we can now properly check the exit code that comes out of the 'root' buildout process.
-
- 21 Feb, 2013 1 commit
-
-
Reinout van Rees authored
-
- 18 Feb, 2013 2 commits
-
-
pombredanne authored
-
pombredanne authored
-
- 16 Feb, 2013 8 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
Made tests independent of distribute version number
-
Reinout van Rees authored
Replaced the fixed distribute version number with the currently valid one by just asking for the current version and inserting that in the various spots we need it in this testfile
-
Jim Fulton authored
the current distribute version).
-
Jim Fulton authored
-
Jim Fulton authored
Use umask when doing "chmod +x". Improved version of pull request #18
-
Domen Kožar authored
PEP8 changes for bootstrap.py
-
Roland van Laar authored
I changed a few things to allow for better pep8 compatability.
-
- 15 Feb, 2013 1 commit
-
-
pombredanne authored
Section titles can now have this form: [sectionname:Python expression] # optional comment If the Python expression evals to False, the section will be ignored. Expressions have some defaults to support common conditions such as: [sectionname: not windows] # ignore this section on windows Section title lines in the traditional form are still supported of course: [sectionname] # optional comment or [sectionname] ; optional comment
-
- 14 Feb, 2013 15 commits
-
-
Reinout van Rees authored
os.umask is a bit weird in that it *does* return the current umask, but it has a required argument that it immediately sets as the new umask... Weird. Distribute solves that by assigning a dummy value and re-setting the umask to the original value. The matching test verifies that it actually works. Note that I use python 2.6+'s octal notation: 0o755. Buildout 2 doesn't support python 2.5 anymore, iirc, so that's fine.
-
Reinout van Rees authored
Note: includes if/else for windows. Uses http://docs.python.org/2/library/os#os.access
-
Reinout van Rees authored
A fixed (0755) execute permission is used in two places, I refactored it into one method. Bonus: this makes it easy to test the fix proposed in https://github.com/buildout/buildout/pull/18
-
Chris Withers authored
Corrected travis image link
-
Chris Withers authored
Fix for #71 - looks good to me.
-
Reinout van Rees authored
-
Reinout van Rees authored
Picked versions are stored for later printing/writing in the Installer also when show-picked-versions is set to false but update-versions-file is set to a file. Previously, show-picked-versions=false would also disable the versions file updating.
-
Reinout van Rees authored
I changed it to make it applicable whether the picked versions are printed or not. 'This info has been written to' doesn't work if this hasn't been printed on the previous lines :-)
-
Reinout van Rees authored
`update-versions-file = true` has no effect when `show-picked-versions` is false.
-
Reinout van Rees authored
The old "hashbang" url redirected to https://travis-ci.org//buildout/buildout, with two slashes, which didn't work. Travis bug, but using the new https://travis-ci.org/buildout/buildout url ourselves is easier :-)
-
Jim Fulton authored
Prep for release. Provoke a travis-ci run. :)
-
Jim Fulton authored
Fix for #64: __pycache__ dir inside distutils scripts metadata directory
-
Jim Fulton authored
Reinout distutils script encoding fix for #65
-
Reinout van Rees authored
-
Reinout van Rees authored
Should never ever happen, of course, but somewhere in the universe exists a distutils script with just the `#!bin/python` line... Added a len() to guard against that.
-