An error occurred fetching the project authors.
  1. 01 Sep, 2015 1 commit
  2. 26 Aug, 2015 2 commits
  3. 25 Aug, 2015 1 commit
  4. 01 Jul, 2015 6 commits
  5. 29 Jun, 2015 2 commits
    • Reinout van Rees's avatar
      In-place editing of os.walk results · 1030b3c6
      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!)
      1030b3c6
    • Reinout van Rees's avatar
      Properly handling non-ascii filenames in hashing function · be8bc821
      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.
      be8bc821
  6. 15 Jun, 2015 1 commit
    • Reinout van Rees's avatar
      Removing develop-eggs/ directory before bootstrapping. · 55d76b34
      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.
      55d76b34
  7. 12 Mar, 2014 1 commit
  8. 09 Mar, 2014 2 commits
  9. 23 Jan, 2014 1 commit
  10. 22 Jan, 2014 3 commits
  11. 10 Sep, 2013 1 commit
  12. 10 Jun, 2013 1 commit
  13. 03 Jun, 2013 1 commit
    • Tres Seaver's avatar
      First stab at using setuptools >= 0.7 instead of distribute. · a0669e31
      Tres Seaver authored
      My doctest / renormalizer fu is not strong enough to deal with the
      changes to output:
      
      - setuptools now has dependencies, and emits output to add them as
        'find-links'.  I tried adding an 'adding_find_link' renormalizer,
        but it doesn't suppress the output.
      
      - Other failures due to merge tweaking APIs, etc.  Again, I'm not
        competent to fix them in the doctest / renormalizer world:  they make
        my head hurt.
      a0669e31
  14. 03 May, 2013 1 commit
  15. 26 Apr, 2013 2 commits
  16. 24 Mar, 2013 1 commit
  17. 23 Mar, 2013 2 commits
  18. 17 Mar, 2013 1 commit
  19. 26 Feb, 2013 2 commits
  20. 25 Feb, 2013 1 commit
  21. 21 Feb, 2013 2 commits
  22. 18 Feb, 2013 1 commit
  23. 15 Feb, 2013 1 commit
    • pombredanne's avatar
      Add support to ignore sections conditionally to a Python expression. · 937537a4
      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 
      937537a4
  24. 14 Feb, 2013 2 commits
    • Reinout van Rees's avatar
      Fixed #71: when needed, write versions to file · 7ebea29b
      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.
      7ebea29b
    • Reinout van Rees's avatar
      Changed 'wrote versions to' string. · 9f175c99
      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 :-)
      9f175c99
  25. 09 Feb, 2013 1 commit