| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix minor whitespace, syntax and idiom nits | ?ric Araujo | 2012-05-16 | 1 | -5/+6 |
| | | |||||
| * | Fix incorrect docstring | ?ric Araujo | 2012-05-12 | 1 | -1/+3 |
| | | |||||
| * | #13166: Implement __str__ on Distribution and EggInfoDistribution, use for ↵ | Guillaume Pratte | 2012-04-21 | 1 | -1/+1 |
| | | | | | pysetup list, pysetup graph and installation log | ||||
| * | #14270: Fixes to add dest_dir params working when using install_from_infos | Mathieu Leduc-Hamel | 2012-04-21 | 1 | -9/+9 |
| | | |||||
| * | fixed a test mock issue (#14268) | Tarek Ziade | 2012-03-12 | 1 | -1/+2 |
| | | |||||
| * | Minor assorted cleanups. | ?ric Araujo | 2011-11-12 | 1 | -9/+0 |
| | | | | | | | | - Remove __main__ blocks obsoleted by pysetup - Fix typo ?seperate? - Add one test that was promised but not written - Reorganize one file | ||||
| * | A few changes to match packaging | ?ric Araujo | 2011-09-19 | 1 | -3/+2 |
| | | |||||
| * | Fix backport changesets part 3: backported modules. | ?ric Araujo | 2011-09-18 | 1 | -1/+2 |
| | | | | | | | | | | | shutil, sysconfig, tarfile and their tests have been updated to the latest 3.2 version (except for test_tarfile which is not backported yet) and edited to be compatible with 2.4. Duplicates added in util during the Great Update have been deleted, as well as functions I removed recently in packaging. Unneeded modules in _backport have been deleted or moved to d2.compat. | ||||
| * | Fix the backport fixes. | ?ric Araujo | 2011-09-18 | 1 | -18/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Backports: - sysconfig is now always imported from our backports - when hashlib is not found, our backport is used instead of the md5 module (debatable; we could just drop hashlib) Version-dependent features: - PEP 370 features are only enabled for 2.6+ - the check for sys.dont_write_bytecode was fixed to use getattr with a default value instead of hasattr Idioms/syntax: - octal literals lost their extra 0 - misused try/except blocks have been changed back to try/finally (it?s legal in 2.4 too, it?s only try/except/finally that isn?t) - exception catching uses the regular 2.x idiom instead of sys.exc_info - file objects are closed within finally blocks (this causes much whitespace changes but actually makes diff with packaging easier) Renamed modules: - some missed renamings (_thread, Queue, isAlive, urllib.urlsplit, etc.) were fixed Other: - a few false positive replacements of ?packaging? by ?distutils2? in comments or docstrings were reverted - util.is_packaging regained its name - assorted whitespace/comment/import changes to match packaging | ||||
| * | Fixed a python2.4 syntax errors. | Alexandru Plugaru | 2011-08-30 | 1 | -3/+4 |
| | | |||||
| * | Backported packaging from cpython default, overwriting previous version. | Vinay Sajip | 2011-08-18 | 1 | -135/+252 |
| | | |||||
| * | Move installation exceptions from distutils2.install to distutils2.errors ↵ | Kelsey Hightower | 2011-02-13 | 1 | -10/+3 |
| | | | | | and pep8 clean up on both modules | ||||
| * | Merge Kelsey?s edits with mine | ?ric Araujo | 2011-02-10 | 1 | -12/+12 |
| |\ | |||||
| | * | Fixing logging strings; improve lower-case consistency | Kelsey Hightower | 2011-02-09 | 1 | -11/+11 |
| | | | |||||
| * | | Use lazy form in logging calls, again. | ?ric Araujo | 2011-02-10 | 1 | -11/+13 |
| |/ | | | | | | | | | | | Logging calls have the signature (msg, *args, **kwargs) so that the %-formatting can be delayed until it is needed. Logger objects also have an isEnabledFor method that can be used to isolate expensive code. Next steps: use only one of d2.logger methods or logging module functions; use a proper handler in our test machinery instead of monkey-patching; remove cmd.warn and cmd.announce and use logging instead. TODOs have been added in the modules and on the wiki. | ||||
| * | make sure the dir exists in that case | Tarek Ziade | 2011-01-30 | 1 | -1/+2 |
| | | |||||
| * | hooked the remove code - tests w/ data tree coming up | Tarek Ziade | 2011-01-30 | 1 | -15/+42 |
| | | |||||
| * | cleaned up the install module | Tarek Ziade | 2011-01-30 | 1 | -37/+46 |
| | | |||||
| * | removed the installation to an empty path from the API and fixed a leaking ↵ | Yannick Gingras | 2011-01-29 | 1 | -25/+25 |
| | | | | | tempdir in the process | ||||
| * | fixed another leaking tempdir | Yannick Gingras | 2011-01-29 | 1 | -0/+6 |
| | | |||||
| * | corrected a leaked temp dir problem | Yannick Gingras | 2011-01-29 | 1 | -3/+3 |
| | | |||||
| * | raise if the distribution is not found. also disable cache for testing | Gael Pasgrimaud | 2011-01-29 | 1 | -1/+3 |
| | | |||||
| * | merge to latest | Gael Pasgrimaud | 2011-01-29 | 1 | -26/+152 |
| |\ | |||||
| | * | branch merge | Alexis Metaireau | 2011-01-29 | 1 | -26/+151 |
| | |\ | |||||
| | | * | Update installer tests. | Alexis Metaireau | 2011-01-29 | 1 | -9/+11 |
| | | | | |||||
| | | * | merge the installer | Alexis Metaireau | 2011-01-29 | 1 | -29/+38 |
| | | |\ | |||||
| | | * \ | merge tarek changes. | Alexis Metaireau | 2011-01-28 | 1 | -5/+1 |
| | | |\ \ | |||||
| | | | * | | savepoint | Tarek Ziade | 2010-12-26 | 1 | -8/+62 |
| | | | | | | |||||
| | | * | | | move the unpack utilities to _backport | Alexis Metaireau | 2011-01-03 | 1 | -76/+1 |
| | | | | | | |||||
| | | * | | | savepoint | Tarek Ziade | 2011-01-03 | 1 | -18/+211 |
| | | |/ / | |||||
| * | | | | first implementation of the remove() method | Gael Pasgrimaud | 2011-01-29 | 1 | -2/+34 |
| |/ / / | |||||
| * | | | simplified the package_dir option - just one root dir allowed | Tarek Ziade | 2011-01-29 | 1 | -0/+7 |
| | |/ |/| | |||||
| * | | Save up a bit of memory thanks to dict.iter* and __iter__ | ?ric Araujo | 2010-12-17 | 1 | -4/+4 |
| |/ | |||||
| * | Work In Progress on install.py. | Alexis Metaireau | 2010-11-21 | 1 | -13/+23 |
| | | |||||
| * | Add basic installation script + tests. | Alexis Metaireau | 2010-11-13 | 1 | -14/+122 |
| | | |||||
| * | Fix one bug and address some pyflakes warnings | ?ric Araujo | 2010-10-16 | 1 | -1/+2 |
| | | |||||
| * | Rename command's tests filenames to test_command_*, and install_tools.py to ↵ | Alexis Metaireau | 2010-10-04 | 1 | -0/+99 |
| install.py The goal is to avoid overlaps between commands and scripts names (for instance the "install" script and the "install" command) | |||||
