An error occurred fetching the project authors.
- 24 Mar, 2013 1 commit
-
-
pombredanne authored
-
- 13 Jan, 2013 1 commit
-
-
Jim Fulton authored
-
- 23 Nov, 2012 1 commit
-
-
Jim Fulton authored
-
- 24 Jun, 2012 1 commit
-
-
Jim Fulton authored
-
- 16 Jun, 2012 1 commit
-
-
Jim Fulton authored
-
- 13 May, 2012 1 commit
-
-
Jim Fulton authored
Date: Tue Sep 27 21:20:50 2011 +0000 Fixed https://bugs.launchpad.net/bugs/697913 : Buildout doesn't honor exit code from scripts. Cherry-picked from svntrunk.
-
- 28 Apr, 2012 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
- 15 Apr, 2012 1 commit
-
-
Jim Fulton authored
-
- 06 Nov, 2009 1 commit
-
-
Jim Fulton authored
-
- 04 Sep, 2009 1 commit
-
-
Reinout van Rees authored
-
- 28 Aug, 2009 1 commit
-
-
Jim Fulton authored
Scripts generated with relative-paths eanbled couldn't be symbolocally linked to other locations and still work.
-
- 22 Jun, 2009 1 commit
-
-
Jim Fulton authored
could be inserted into sys.path if a relative path was used to run the generated script.
-
- 18 Mar, 2009 1 commit
-
-
Jim Fulton authored
-
- 17 Mar, 2009 1 commit
-
-
Jim Fulton authored
locations when generating scripts.
-
- 05 Feb, 2009 1 commit
-
-
Shane Hathaway authored
be generated for all required eggs in addition to the eggs named specifically. The implementation is short and simple, but testing it required changes in a lot of places.
-
- 13 Aug, 2008 1 commit
-
-
Chris Withers authored
-
- 16 Jul, 2008 1 commit
-
-
Chris Withers authored
-
- 13 Jan, 2008 1 commit
-
-
Jim Fulton authored
leading to test failures. The change also caused buildout to fail with Python 2.3, which lacks a set builtin.
-
- 02 Dec, 2007 1 commit
-
-
Florian Schulze authored
The list of eggs in generated scripts is sorted and duplicates removed. This prevents problems in WingIDE and makes it easier for humans to look at and use the list of eggs.
-
- 20 Aug, 2007 2 commits
-
-
Jim Fulton authored
existing buildouts. Use:: [buildout] prefer-final = true to get the new policy. The new policy will go into effect in buildout 2.
-
Jim Fulton authored
both final and non-final versions satisfy a requirement, then the final version will be used even if it is older. The normal way to override this for specific packages is to specifically require a non-final version, either specifically or via a lower bound. - There is a buildout prefer-final version that can be used with a value of "false":: prefer-final = false To prefer newer versions, regardless of whether or not they are final, buildout-wide.
-
- 20 Jun, 2007 1 commit
-
-
Jim Fulton authored
-
- 30 May, 2007 1 commit
-
-
Jim Fulton authored
zc.buildout logger. This reduces noise in the output. This change was so far reaching, I decided to go ahead and clean up lots of log messages, adding some missing periods and adding quotes around requirement strings and file paths. in easy_install.py, added logging to show why distributions are added in verbose mode and removed recusive code to show requirement chains when errors occurred.
-
- 07 May, 2007 1 commit
-
-
- 07 Feb, 2007 1 commit
-
-
Jim Fulton authored
Also added a missing tests for upgrading.
-
- 17 Jan, 2007 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
easy_install APIs. - Added an eggs recipe that *just* installes eggs. - Advertized the scripts recipe for creating scripts. Updated some tests to deal with the fact that setuptools eggs keep oscillating between being files and directories.
-
- 01 Nov, 2006 1 commit
-
-
Brian Sutherland authored
-
- 19 Sep, 2006 1 commit
-
-
Jim Fulton authored
API. This allowed the tests to be simplified somewhat.
-
- 14 Sep, 2006 1 commit
-
-
Jim Fulton authored
This makes things go a little faster, makes errors a little easier to handle, and allows extensions (like the sftp extension) to influence more of the process.
-
- 05 Sep, 2006 1 commit
-
-
Jim Fulton authored
Added an option to supply entry points directly. This is useful for packages that don't declare their entry points. No longer generate "py-" scripts implicitly. Added a new option, interpreter, to request such scripts and specifu their names. Increased default buildout logging.
-
- 29 Aug, 2006 1 commit
-
-
Jim Fulton authored
generated script paths.
-
- 27 Aug, 2006 1 commit
-
-
Jim Fulton authored
The sample buildout is now created using the bootstrapping mechanism and so has a normal layout. No longer read ~/.buildout/.default.cfg, when running tests. (We do read a ~/.buildout/.default.cfg when testing that function, but we manipulate HOME so that we control what is read.)
-
- 08 Aug, 2006 1 commit
-
-
Jim Fulton authored
brittle and failed tests with the latest setuptools.
-
- 29 Jun, 2006 4 commits
-
-
Fred Drake authored
-
Jim Fulton authored
Added support for offline mode. Used new API for test server management
-
Jim Fulton authored
Renamed distribution option to eggs and filled out README.txt.
-
Jim Fulton authored
-
- 25 Jun, 2006 1 commit
-
-
Jim Fulton authored
distributions available. This required working around issues with easy_install's --upgrade option: - Upgrade is not recursive. Upgrading a distro doesn't update it's dependencies. - Upgrade doesn't try very hard to avoid searching. If we require a specific version of a distribution, and we already have that distribution, there's no point in looking for a newer one. - easy_install has kind of odd rules for deciding when to look at an index. Now that we use upgrade all the time, easy_install always wants to look at an index. - We get warnings when connecting to index servers, like PyPI that return text/plain not found messages. We now have much greater control over how dependencies are managed. We've essentially taken this over from easy_install. Because we now always talk to an index server and because we want to control anything we do in a test, many of the tests actually run their own web servers. Anyway: - Now handle upgrades correctly, I think. - The egg recipe can now install multiple distributions. - We have the beginnings of offline mode. - The internal architeture is much cleaner. - We've merged the easy_install and egglinker modules, tossing some superfluois apis in the egglinker module.
-