An error occurred fetching the project authors.
  1. 21 Feb, 2008 1 commit
  2. 20 Aug, 2007 2 commits
  3. 20 Jun, 2007 1 commit
  4. 19 Mar, 2007 1 commit
  5. 18 Mar, 2007 1 commit
  6. 06 Mar, 2007 1 commit
    • Jim Fulton's avatar
      Features: · 2ba02437
      Jim Fulton authored
      - The easy_install module install and build functions now accept a
        versions argument that supplied to mapping from project name to
        version numbers.  This can be used to fix version numbers for
        required distributions and their depenencies.
      
      When a version isn't fixed, using either a versions option or using
        a fixed version number in a requirement, then a debug log message is
        emitted indicating the version picked.  This is useful for setting
        versions options.
      
      - Added a remove testing helper function that removes files or directories.
      2ba02437
  7. 27 Feb, 2007 1 commit
  8. 08 Feb, 2007 1 commit
  9. 07 Feb, 2007 1 commit
    • Jim Fulton's avatar
      Feature Changes · 5da42b95
      Jim Fulton 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.
      5da42b95
  10. 16 Oct, 2006 1 commit
  11. 11 Oct, 2006 1 commit
  12. 19 Sep, 2006 2 commits
  13. 15 Sep, 2006 1 commit
  14. 14 Sep, 2006 1 commit
  15. 05 Sep, 2006 1 commit
  16. 29 Aug, 2006 1 commit
  17. 27 Aug, 2006 1 commit
    • Jim Fulton's avatar
      Added Windows support. · b208f821
      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.)
      b208f821
  18. 09 Aug, 2006 1 commit
  19. 29 Jun, 2006 1 commit
  20. 27 Jun, 2006 1 commit
  21. 25 Jun, 2006 1 commit
    • Jim Fulton's avatar
      Major refactoring. The original motivation was to get the newest · 2530eeb2
      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.
      2530eeb2
  22. 19 Jun, 2006 1 commit
  23. 17 Jun, 2006 2 commits
  24. 14 Jun, 2006 1 commit
  25. 12 Jun, 2006 1 commit
  26. 05 Jun, 2006 1 commit