| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | reverting partially distutils to its 2.6.x state so 2.7a4 looks more like ↵ | Tarek Ziadé | 2010-03-05 | 1 | -113/+114 |
| | | | | | the 2.7b1 in this. the whole revert will occur after a4 is tagged | ||||
| * | removed debugging code | Tarek Ziadé | 2010-02-23 | 1 | -4/+1 |
| | | |||||
| * | leaving global attributes for backward compat | Tarek Ziadé | 2010-02-03 | 1 | -0/+81 |
| | | |||||
| * | added local get_platform/set_platform APIs in distutils.sysconfig | Tarek Ziadé | 2010-01-26 | 1 | -3/+2 |
| | | |||||
| * | taking sysconfig out of distutils | Tarek Ziadé | 2010-01-23 | 1 | -123/+40 |
| | | |||||
| * | improved test coverage for distutils.command.install and cleaned it up | Tarek Ziadé | 2009-06-04 | 1 | -87/+73 |
| | | |||||
| * | Issue #5052: make Distutils compatible with 2.3 again. | Tarek Ziadé | 2009-02-27 | 1 | -31/+52 |
| | | |||||
| * | Issue #5052: removed backward compatibility information (out of date) | Tarek Ziadé | 2009-01-25 | 1 | -2/+0 |
| | | |||||
| * | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -6/+77 |
| | | |||||
| * | Issue #2513: enable 64bit cross compilation on windows. | Mark Hammond | 2008-04-07 | 1 | -0/+9 |
| | | |||||
| * | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
| | | |||||
| * | Removed uses of dict.has_key() from distutils, and uses of | Guido van Rossum | 2008-02-21 | 1 | -1/+1 |
| | | | | | | | callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib. | ||||
| * | Patch #1459476: install PKG-INFO metadata alongside distutils-installed ↵ | Phillip J. Eby | 2006-03-27 | 1 | -0/+1 |
| | | | | | packages. | ||||
| * | Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options. | Thomas Heller | 2005-01-20 | 1 | -2/+7 |
| | | | | | Will backport myself. | ||||
| * | Update compatibility comments to 2.1, corresponding to PEP 291 1.13. | Martin v. Löwis | 2004-11-10 | 1 | -1/+1 |
| | | |||||
| * | Backing out the basic dependency checking (from pycon sprint). | Anthony Baxter | 2004-10-13 | 1 | -12/+1 |
| | | | | | | | This support was only a first cut, and doesn't deserve to be in a released version (where we have to support it in an ongoing manner) | ||||
| * | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | | |||||
| * | Make distutils "install --home" support all platforms. | Fred Drake | 2004-06-25 | 1 | -17/+17 |
| | | |||||
| * | Basic dependency checking. setup() has two new optional arguments | Anthony Baxter | 2004-03-22 | 1 | -1/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | requires and provides. requires is a sequence of strings, of the form 'packagename-version'. The dependency checking so far merely does an '__import__(packagename)' and checks for packagename.__version__ You can also leave off the version, and any version of the package will be installed. There's a special case for the package 'python' - sys.version_info is used, so requires= ( 'python-2.3', ) just works. Provides is of the same format as requires - but if it's not supplied, a provides is generated by adding the version to each entry in packages, or modules if packages isn't there. Provides is currently only used in the PKG-INFO file. Shortly, PyPI will grow the ability to accept these lines, and register will be updated to send them. There's a new command 'checkdep' command that runs these checks. For this version, only greater-than-or-equal checking is done. We'll add the ability to specify an optional operator later. | ||||
| * | Add comment to Distutil files about requiring 1.5.2 compatibility, as | Andrew M. Kuchling | 2002-11-19 | 1 | -0/+2 |
| | | | | | suggested by PEP 291. | ||||
| * | Remove 'created by' lines; people can use CVS for this, and the information ↵ | Andrew M. Kuchling | 2002-11-14 | 1 | -2/+0 |
| | | | | | is often out of date | ||||
| * | Use distutils.debug.DEBUG instead of distutils.core.DEBUG. | Jeremy Hylton | 2002-09-11 | 1 | -1/+2 |
| | | | | | | Note that distutils.core.DEBUG still works if client code uses it, but the core code avoids circular references by using distutils.debug. | ||||
| * | Move warning about directory not on sys.path to debug level. | Jeremy Hylton | 2002-06-04 | 1 | -8/+10 |
| | | | | | Fix a bunch of multiline string constants that used +. | ||||
| * | Revert part of previous patch: several install_* subcommands expect | Andrew M. Kuchling | 2002-03-22 | 1 | -1/+1 |
| | | | | | | | | | .compile to be None, and set it to true if it is. Caught by Pearu Peterson. Bugfix candidate, if the previous change is accepted for release22-maint. | ||||
| * | Add missing Boolean options | Andrew M. Kuchling | 2002-03-21 | 1 | -3/+2 |
| | | | | | | | | Remove unused no_compile flag Initialize the Boolean attribute .compile to 0 instead of None Bugfix candidate. | ||||
| * | OS/2 patches by Andrew I MacIntyre for distutils. | Marc-André Lemburg | 2002-01-31 | 1 | -0/+7 |
| | | | | | Closes patch #435381. | ||||
| * | Whitespace normalization. | Fred Drake | 2001-12-06 | 1 | -5/+5 |
| | | |||||
| * | [Bug #436732] install.py does not record a created *.pth file in the | Andrew M. Kuchling | 2001-09-04 | 1 | -2/+5 |
| | | | | | | INSTALLED_FILES output. Modified version of a patch from Jon Nelson (jnelson) | ||||
| * | Patch #449054 to implement PEP 250. The standard install directory for | Greg Ward | 2001-08-23 | 1 | -7/+18 |
| | | | | | | | modules and extensions on Windows is now $PREFIX/Lib/site-packages. Includes backwards compatibility code for pre-2.2 Pythons. Contributed by Paul Moore. | ||||
| * | Add forgotten import | Andrew M. Kuchling | 2001-08-10 | 1 | -0/+1 |
| | | |||||
| * | Modified version of a patch from Jeremy Kloth, to make .get_outputs() | Andrew M. Kuchling | 2001-01-16 | 1 | -1/+5 |
| | | | | | | | | produce a list of unique filenames: "While attempting to build an RPM using distutils on Python 2.0, rpm complained about duplicate files. The following patch fixed that problem. | ||||
| * | Add forgotten initialization. Fixes bug #120994, "Traceback with | Andrew M. Kuchling | 2000-12-20 | 1 | -0/+1 |
| | | | | | DISTUTILS_DEBUG set" | ||||
| * | Untabified. | Greg Ward | 2000-10-14 | 1 | -1/+1 |
| | | |||||
| * | Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing if | Greg Ward | 2000-10-14 | 1 | -2/+4 |
| | | | | | we actually installed modules to a directory in sys.path. | ||||
| * | Fixed so --no-compile is a negative alias for --compile. | Greg Ward | 2000-10-03 | 1 | -0/+1 |
| | | |||||
| * | Added --compile, --optimize options so users have an easy way to | Greg Ward | 2000-10-02 | 1 | -0/+12 |
| | | | | | instruct the "install_lib" command from the command-line. | ||||
| * | Standardized whitespace around function calls. | Greg Ward | 2000-09-30 | 1 | -56/+56 |
| | | |||||
| * | Moved some things around for better organization. | Greg Ward | 2000-09-30 | 1 | -26/+36 |
| | | |||||
| * | Added 'boolean_options' list to support config file parsing. | Greg Ward | 2000-09-25 | 1 | -0/+2 |
| | | |||||
| * | Changed all paths in the INSTALL_SCHEMES dict to Unix syntax, and added | Greg Ward | 2000-09-22 | 1 | -43/+56 |
| | | | | | | | | | | | | | | | | | | | | | | | | 'convert_paths()' method to convert them all to the local syntax (backslash or colon or whatever) at the appropriate time. Added SCHEME_KEYS to get rid of one hard-coded list of attributes (in 'select_scheme()'). Default 'install_path_file' to true, and never set it false (it's just there in case some outsider somewhere wants to disable installation of the .pth file for whatever reason). Toned down the warning emitted when 'install_path_file' is false, since we no longer know why it might be false. Added 'warn_dir' flag to suppress warning when installing to a directory not in sys.path (again, we never set this false -- it's there for outsiders to use, specifically the "bdist_*" commands). Pulled the loop of 'change_root()' calls out to new method 'change_roots()'. Comment updates/deletions/additions. | ||||
| * | Factored the "sub-command" machinery out to Command. Mainly, this | Greg Ward | 2000-09-16 | 1 | -25/+10 |
| | | | | | | meant removing 'get_sub_commands()', and moving the 'sub_commands' class attribute to the end and restructuring it to conform to the new regime. | ||||
| * | Typo fix. | Greg Ward | 2000-09-16 | 1 | -1/+1 |
| | | |||||
| * | Adjust to the new sysconfig regime: use 'get_config_vars()' instead | Greg Ward | 2000-09-15 | 1 | -3/+6 |
| | | | | | | | | of globals from sysconfig. Added 'prefix' and 'exec_prefix' to the list of variables that can be expanded in installation directories (preserving the stupid old names of 'sys_prefix' and 'sys_exec_prefix, though). | ||||
| * | Added --force (-f) option to force installation (including bytecode | Greg Ward | 2000-09-13 | 1 | -2/+4 |
| | | | | | compilation). | ||||
| * | Fix install directories on Mac OS: now everything goes to | Greg Ward | 2000-09-13 | 1 | -2/+2 |
| | | | | | <prefix>:Lib:site-packages. | ||||
| * | Fix so the 'install_libbase' directory -- where .pth files are installed -- | Greg Ward | 2000-08-07 | 1 | -1/+1 |
| | | | | | | | participates in the "--root" hack, ie. it also has a new root directory hacked on at the very last minute (essential if the .pth file is to be included in an RPM or other smart installer!). | ||||
| * | Fixed imports from '*util' modules to not just import everything from util. | Greg Ward | 2000-08-05 | 1 | -1/+2 |
| | | |||||
| * | Changed the default installation directory for data files (used by | Greg Ward | 2000-06-24 | 1 | -4/+4 |
| | | | | | | | the "install_data" command to the installation base, which is usually just sys.prefix. (Any setup scripts out there that specify data files will have to set the installation directory, relative to the base, explicitly.) | ||||
| * | Rene Liebscher: when fixing up directories with an alternate root, include | Greg Ward | 2000-06-21 | 1 | -1/+2 |
| | | | | | 'install_headers'. | ||||
| * | Fixed install directory for header files on Unix. | Greg Ward | 2000-06-17 | 1 | -1/+1 |
| | | |||||
