summaryrefslogtreecommitdiff
path: root/distutils2/command/install_data.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge fixes for #13170 and #12386 and other misc. changes from default?ric Araujo2011-11-111-1/+1
|\
| * Fix import in install_data (#13170). Thanks to David Barnett.?ric Araujo2011-11-111-1/+1
| |
* | Start a branch to provide Distutils2 for Python 3.?ric Araujo2011-09-241-1/+1
|/ | | | | | | | | | This codebase is compatible with 3.1, 3.2 and 3.3. It was converted with 2to3 and a semi-automated diff/merge with packaging in 3.3 to fix some idioms. We?ve now come full circle from 2.x to 3.x to 2.x to 3.x again :) Starting from now, contributors can make patches for packaging (preferred, as the stdlib?s regrtest is very useful), distutils2 or distutils-python3, and we?ll make patches flow between versions.
* Fix the backport fixes.?ric Araujo2011-09-181-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Let the test suite run again?ric Araujo2011-09-121-1/+1
|
* Backported packaging from cpython default, overwriting previous version.Vinay Sajip2011-08-181-24/+24
|
* EnvironmentError does not always have a message attribute (python 2.4)Alexis Metaireau2011-02-131-1/+1
|
* Merging the resource branch !Alexis Metaireau2011-02-131-1/+1
|\
* | renames datafiles in ressources for consistency with setup.cfg sectionPierre-Yves David2011-02-021-1/+1
| |
* | Fix last bug, check that data file not exists at the same path and has the ↵FELD Boris2011-01-301-1/+6
| | | | | | | | same content.
* | No file that does not exists can be present in distribution.data_files.FELD Boris2011-01-301-1/+1
| | | | | | | | Correct bugs in get_inputs in install_data.
* | Correct typo error in RESOURCE paths mapping file in pkgutil.FELD Boris2011-01-291-9/+4
| | | | | | | | | | Add a format_value function in sysconfig. Correct bug in get_source_files in install_data.
* | Use public method from sysconfig instead of private one to expand paths. ↵FELD Boris2011-01-291-4/+4
| | | | | | | | Correct a type in config module.
* | Distutils 2 now install datafiles in the right place (indicated by sysconfig).FELD Boris2011-01-281-41/+28
|/ | | | | | Data files are read from config file. Data files are installed to the expanded category file. Data files list is written in DATAFILES file in .dist-info dir.
* removed core.pyTarek Ziade2010-10-251-1/+1
|
* Rename the install command from "install" to "instal_dist", to avoid anyAlexis Metaireau2010-10-171-1/+1
| | | | collision with the distutils2 installer (working with dependencies).
* removed the __revision__ tag, that are specific to SVNTarek Ziade2010-10-041-1/+0
|
* moved everything in the same dir - we want to include docs/ in the releaseTarek Ziade2010-09-191-0/+94