- 01 Jul, 2015 20 commits
-
-
Reinout van Rees authored
-
Reinout van Rees authored
Better, simpler fix than #250
-
Reinout van Rees authored
Bootstrap fixes, including develop-eggs removal
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
Buildout no longer breaks on packages with non-ascii filenames in them.
-
Reinout van Rees authored
-
Reinout van Rees authored
Slightly improved version of lelit's #172
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
This means the eggs/ cache dir creation also moved to the start of buildout instead of happening somewhere deep in the installation mechanism. I'll need to adjust the test output for this.
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
-
- 30 Jun, 2015 12 commits
-
-
Reinout van Rees authored
Avoid prefixing buildout dir to 'special' rpath elements.
-
Reinout van Rees authored
Noted the change in buildout's changelog, too, as that's much more prominent and as it fixes a buildout bug.
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
Replaces #204, fixes #30. A date leads to less confusion than a version number separate from buildout's own version number. Similarly, tracking buildout's version number leads to bootstraps with a new version number but without changes or to bootstraps with version number from an already-older buildout. So: a date is best.
-
Reinout van Rees authored
I don't think many people use this option as it isn't documented. It used to be handy around the time when we had lots of breakage. Nowadays it isn't needed. So... I'm moving it out of the way to make room for --version as a proper version-returning option.
-
Reinout van Rees authored
This is an urelated change from mgedmin's #204 pull request. Prefixing is good as it might help figuring out what keeps filling up a temp dir in case there's a problem.
-
Reinout van Rees authored
See #86 and #222
-
Reinout van Rees authored
-
Reinout van Rees authored
-
Reinout van Rees authored
Travis speed improvement through caching
-
Reinout van Rees authored
-
- 29 Jun, 2015 3 commits
-
-
Reinout van Rees authored
-
Reinout van Rees authored
The [:] is necessary to edit the os.walk results in-place. Otherwise the filtering-out of .svn, CVS and so doesn't work as intended. (Note: this regression I put in was caught by one of the tests! Good that we've got such a large amount of tests!)
-
Reinout van Rees authored
Added fs_to_text() function that ensures a filename is always unicode (python 2) or str (python 3). os.walk() gets such a unicode dirname as start point, so that it tries to do its best on python2. The resulting filenames are converted to unicode to make really sure that the join() doesn't fail with a decoding error. The input to the hash function is encoded, as it gives an ascii encoding error otherwise on python 2.
-
- 26 Jun, 2015 2 commits
-
-
Reinout van Rees authored
-
Reinout van Rees authored
-
- 15 Jun, 2015 2 commits
-
-
Reinout van Rees authored
-
Reinout van Rees authored
There is code in buildout to remove develop-eggs that it knows about. So if everything is OK, develop-egg removal works fine. If there's something fishy goign on, however, buildout doesn't clean it up enough. Zapping the entire directory upon bootstrap is a very effective way to prevent problems. Reason: the old osc.recipe.sysegg did add develop-eggs .egg-link files to the site-packages dir, effectively short-circuiting buildout's picked versions. Likewise an old bootstrap could have left a setuptoos.egg-link to an ancient setuptools version. I just this minute had to help a colleague with just such a problem.
-
- 12 Jun, 2015 1 commit
-
-
Reinout van Rees authored
-