Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use "is" to test type objects, not "==". | Fred Drake | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | [Bug #444589] Record empty directories in the install_data command | Andrew M. Kuchling | 2001-09-04 | 1 | -4/+12 |
| | | | | Slightly modified version of patch from Jon Nelson (jnelson). | ||||
* | Patch #103587: Fix typo that broke the install_data command; caught by | Andrew M. Kuchling | 2001-02-05 | 1 | -1/+1 |
| | | | | Uche Ogbuji | ||||
* | Data pathnames were not converted from URL-style to local style. Fixed. | Jack Jansen | 2001-01-28 | 1 | -2/+4 |
| | |||||
* | Untabified. | Greg Ward | 2000-10-14 | 1 | -3/+3 |
| | |||||
* | Expect a tuple (dest_name, copied) from 'copy_file()'. | Greg Ward | 2000-09-30 | 1 | -2/+2 |
| | |||||
* | Added 'boolean_options' list to support config file parsing. | Greg Ward | 2000-09-25 | 1 | -0/+2 |
| | |||||
* | Added 'warn_dir' option so other code can sneak in and disable | Greg Ward | 2000-09-15 | 1 | -3/+6 |
| | | | | the sometimes inappropriate warning about where we're installing data files. | ||||
* | Added --force (-f) option to force installation (including bytecode | Greg Ward | 2000-09-13 | 1 | -0/+3 |
| | | | | compilation). | ||||
* | Fixed a grab-bag of typos spotted by Rob Hooft. | Greg Ward | 2000-07-27 | 1 | -1/+1 |
| | |||||
* | Print a warning if we install a data file right in install_dir. | Greg Ward | 2000-06-24 | 1 | -3/+7 |
| | | | | Tweaked help text. | ||||
* | Build the 'outfiles' list so 'get_outputs()' has something to return. | Greg Ward | 2000-06-21 | 1 | -4/+6 |
| | | | | (Bug spotted and originally fixed by Rene Liebscher; fix redone by me.) | ||||
* | 'get_outputs()' now returns an empty list instead of None. | Greg Ward | 2000-06-06 | 1 | -1/+1 |
| | |||||
* | Fix to use 'change_root()' rather than directly mangling path. | Greg Ward | 2000-05-25 | 1 | -1/+2 |
| | |||||
* | Bastian Kleineidam: the "build_scripts" command and changes | Greg Ward | 2000-05-25 | 1 | -5/+40 |
| | | | | | | | | | | | | | | | | | | | | | | | necessary to support it. Details: - build command additionally calls build_scripts - build_scripts builds your scripts in 'build/scripts' and adjusts the first line if it begins with "#!" and ends with "python", optionally ending with commandline options (like -O, -t ...). Adjusting means we write the current path to the Python interpreter in the first line. - install_scripts copies the scripts to the install_scripts dir - install_data copies your data_files in install_data. You can supply individual directories for your data_files: data_files = ['doc/info.txt', # copy this file in install_scripts dir ('testdata', ['a.dat', 'b.dat']), # copy these files in # install_scripts/testdata ('/etc', ['packagerc']), # copy this in /etc. When --root is # given, copy this in rootdir/etc ] So you can use the --root option with absolute data paths. | ||||
* | List data files are listed in the Distribution attribute 'data_files', | Gregory P. Smith | 2000-05-13 | 1 | -2/+2 |
| | | | | rather than 'data'. | ||||
* | Added 'get_inputs()' methods, needed by the "install" command's | Gregory P. Smith | 2000-05-13 | 1 | -0/+3 |
| | | | | 'get_inputs()'. | ||||
* | Added comment/docstring/revision header. | Gregory P. Smith | 2000-05-12 | 1 | -0/+9 |
| | |||||
* | Caught up with renaming in 'install_misc' base class. | Gregory P. Smith | 2000-05-12 | 1 | -4/+1 |
| | |||||
* | Patch from Bastien Kleineidam: | Gregory P. Smith | 2000-05-12 | 1 | -0/+14 |
adds the 'install_data' and 'install_scripts' commands; these two are trivial thanks to the 'install_misc' base class in cmd.py. (Minor tweaks and commentary by me; the code is untested so far.) |