cpython/Lib/distutils/command
Greg Ward 8d5881a2ba Bastian Kleineidam: the "build_scripts" command and changes
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.
2000-05-25 01:19:18 +00:00
..
__init__.py Bastian Kleineidam: the "build_scripts" command and changes 2000-05-25 01:19:18 +00:00
bdist.py Added the 'bdist_base' option, the base temp directory for all bdist commands. 2000-05-13 03:08:28 +00:00
bdist_dumb.py Use 'get_command_obj()' instead of 'find_command_obj()'. 2000-05-23 01:55:01 +00:00
bdist_rpm.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
build.py Bastian Kleineidam: the "build_scripts" command and changes 2000-05-25 01:19:18 +00:00
build_clib.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
build_ext.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
build_py.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
clean.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
command_template Changed default developer name. 2000-05-13 03:35:05 +00:00
install.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00
install_data.py Bastian Kleineidam: the "build_scripts" command and changes 2000-05-25 01:19:18 +00:00
install_lib.py Fixed command description. 2000-05-23 01:55:16 +00:00
install_scripts.py Bastian Kleineidam: the "build_scripts" command and changes 2000-05-25 01:19:18 +00:00
sdist.py Normalized all the end-of-class lines. 2000-05-25 01:10:04 +00:00