An error occurred fetching the project authors.
- 05 Jul, 2007 1 commit
-
-
jim authored
for versions if the given requirement had an upper limit and we already had the distribution whos version was the upper limit. Added simpler tested code that checks for the simpler case that teh requirement is for a specific version and we already have that version. In general, specifying upper limits other than a single version is kind of dumb, so it's not worth optimizing for that case. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@77454 62d5b8a3-27da-0310-9561-8e5933582275
-
- 20 Jun, 2007 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@76854 62d5b8a3-27da-0310-9561-8e5933582275
-
- 19 Jun, 2007 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@76787 62d5b8a3-27da-0310-9561-8e5933582275
-
- 12 May, 2007 2 commits
-
-
jim authored
install and update methods. - 59270: Buggy recipes can cause failures in later recipes via chdir Also updated a test to reflect logging of script installation. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@75701 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@75699 62d5b8a3-27da-0310-9561-8e5933582275
-
- 19 Mar, 2007 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@73343 62d5b8a3-27da-0310-9561-8e5933582275
-
- 15 Mar, 2007 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@73187 62d5b8a3-27da-0310-9561-8e5933582275
-
- 09 Mar, 2007 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@73125 62d5b8a3-27da-0310-9561-8e5933582275
-
- 06 Mar, 2007 2 commits
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@73019 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@73018 62d5b8a3-27da-0310-9561-8e5933582275
-
- 07 Feb, 2007 1 commit
-
-
jim authored
```------------ - Added a buildout newest option, to control whether the newest distributions should be sought to meet requirements. This might also provide a hint to recipes that don't deal with distributions. For example, a recipe that manages subversion checkouts might not update a checkout if newest is set to "false". - The recipe-testing support setUp function now adds the name *buildout* to the test namespace with a value that is the path to the buildout script in the sample buildout. This allows tests to use >>> print system(buildout), rather than: >>> print system(join('bin', 'buildout')), Bugs Fixed ``` ------- - Paths returned from update methods replaced lists of installed files rather than augmenting them. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@72432 62d5b8a3-27da-0310-9561-8e5933582275
-
- 24 Jan, 2007 1 commit
-
-
jim authored
Explicitly specifying a Python executable failed if the output of running Python with the -V option included a 2-digit (rather than a 3-digit) version number. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@72218 62d5b8a3-27da-0310-9561-8e5933582275
-
- 22 Jan, 2007 1 commit
-
-
jim authored
Feature Changes --------------- - By popular demand, added a -o command-line option that is a short hand for the assignment buildout:offline=true. Bugs Fixed ---------- - When deciding whether recipe develop eggs had changed, buildout incorrectly considered files in .svn and CVS directories. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@72177 62d5b8a3-27da-0310-9561-8e5933582275
-
- 07 Dec, 2006 3 commits
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@71496 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@71490 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
---------- - Uninstall recipes weren't loaded correctly in cases where no parts in the (new) configuration used the recipe egg. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@71489 62d5b8a3-27da-0310-9561-8e5933582275
-
- 05 Dec, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@71425 62d5b8a3-27da-0310-9561-8e5933582275
-
- 04 Dec, 2006 1 commit
-
-
jim authored
Feature Changes --------------- - Variable substitutions now reflect option data written by recipes. - A part referenced by a part in a parts list is now added to the parts list before the referencing part. This means that you can omit parts from the parts list if they are referenced by other parts. - Added a develop function to the easy_install module to aid in creating develop eggs with custom build_ext options. - The build and develop functions in the easy_install module now return the path of the egg or egg link created. - Removed the limitation that parts named in the install command can only name configured parts. - Removed support ConfigParser-style variable substitutions (e.g. %(foo)s). Only the string-template style of variable (e.g. ${section:option}) substitutions will be supported. Supporting both violates "there's only one way to do it". - Deprecated the buildout-section extendedBy option. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@71398 62d5b8a3-27da-0310-9561-8e5933582275
-
- 24 Oct, 2006 3 commits
-
-
jim authored
---------- - We treat setuptools as a dependency of any distribution that (declares that it) uses namespace packages, whether it declares setuptools as a dependency or not. This wasn't working for eggs intalled by virtue of being dependencies. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70907 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70903 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70901 62d5b8a3-27da-0310-9561-8e5933582275
-
- 16 Oct, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70727 62d5b8a3-27da-0310-9561-8e5933582275
-
- 02 Oct, 2006 1 commit
-
-
jim authored
---------- Non-zip-safe eggs were not unzipped when they were installed. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70497 62d5b8a3-27da-0310-9561-8e5933582275
-
- 01 Oct, 2006 2 commits
-
-
jim authored
paths were used, causing setup to fail when run from a different directory. Updated release information. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70462 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70452 62d5b8a3-27da-0310-9561-8e5933582275
-
- 15 Sep, 2006 2 commits
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70198 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70192 62d5b8a3-27da-0310-9561-8e5933582275
-
- 14 Sep, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@70183 62d5b8a3-27da-0310-9561-8e5933582275
-
- 05 Sep, 2006 2 commits
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69993 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69985 62d5b8a3-27da-0310-9561-8e5933582275
-
- 01 Sep, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69924 62d5b8a3-27da-0310-9561-8e5933582275
-
- 10 Aug, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69396 62d5b8a3-27da-0310-9561-8e5933582275
-
- 10 Jul, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69066 62d5b8a3-27da-0310-9561-8e5933582275
-
- 29 Jun, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68917 62d5b8a3-27da-0310-9561-8e5933582275
-
- 28 Jun, 2006 1 commit
-
-
jim authored
The cheeseshop is too brittle. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68887 62d5b8a3-27da-0310-9561-8e5933582275
-
- 26 Jun, 2006 3 commits
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68861 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68859 62d5b8a3-27da-0310-9561-8e5933582275
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68842 62d5b8a3-27da-0310-9561-8e5933582275
-
- 09 Jun, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68536 62d5b8a3-27da-0310-9561-8e5933582275
-
- 05 Jun, 2006 1 commit
-
-
jim authored
git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68494 62d5b8a3-27da-0310-9561-8e5933582275
-