1999-03-22 10:55:25 -04:00
|
|
|
# created 1999/03/13, Greg Ward
|
|
|
|
|
2000-03-01 21:49:45 -04:00
|
|
|
__revision__ = "$Id$"
|
1999-03-22 10:55:25 -04:00
|
|
|
|
2000-03-28 22:17:42 -04:00
|
|
|
import sys, os, string
|
1999-03-22 10:55:25 -04:00
|
|
|
from distutils.core import Command
|
|
|
|
from distutils.util import copy_tree
|
|
|
|
|
2000-03-23 00:37:11 -04:00
|
|
|
class install_lib (Command):
|
1999-03-22 10:55:25 -04:00
|
|
|
|
2000-05-22 22:55:16 -03:00
|
|
|
description = "install all Python modules (extensions and pure Python)"
|
2000-01-30 14:34:15 -04:00
|
|
|
|
2000-02-17 20:25:39 -04:00
|
|
|
user_options = [
|
|
|
|
('install-dir=', 'd', "directory to install to"),
|
|
|
|
('build-dir=','b', "build directory (where to install from)"),
|
|
|
|
('compile', 'c', "compile .py to .pyc"),
|
|
|
|
('optimize', 'o', "compile .py to .pyo (optimized)"),
|
2000-05-11 22:46:47 -03:00
|
|
|
('skip-build', None, "skip the build steps"),
|
2000-02-17 20:25:39 -04:00
|
|
|
]
|
1999-05-02 18:39:13 -03:00
|
|
|
|
1999-03-22 10:55:25 -04:00
|
|
|
|
2000-02-17 20:35:22 -04:00
|
|
|
def initialize_options (self):
|
1999-03-22 10:55:25 -04:00
|
|
|
# let the 'install' command dictate our installation directory
|
1999-09-29 09:38:18 -03:00
|
|
|
self.install_dir = None
|
1999-03-22 10:55:25 -04:00
|
|
|
self.build_dir = None
|
1999-05-02 18:39:13 -03:00
|
|
|
self.compile = 1
|
|
|
|
self.optimize = 1
|
2000-05-11 22:46:47 -03:00
|
|
|
self.skip_build = None
|
1999-03-22 10:55:25 -04:00
|
|
|
|
2000-02-17 20:35:22 -04:00
|
|
|
def finalize_options (self):
|
1999-03-22 10:55:25 -04:00
|
|
|
|
1999-09-13 10:58:34 -03:00
|
|
|
# Get all the information we need to install pure Python modules
|
|
|
|
# from the umbrella 'install' command -- build (source) directory,
|
|
|
|
# install (target) directory, and whether to compile .py files.
|
1999-03-22 10:55:25 -04:00
|
|
|
self.set_undefined_options ('install',
|
|
|
|
('build_lib', 'build_dir'),
|
2000-02-25 20:49:04 -04:00
|
|
|
('install_lib', 'install_dir'),
|
1999-05-02 18:39:13 -03:00
|
|
|
('compile_py', 'compile'),
|
2000-05-11 22:46:47 -03:00
|
|
|
('optimize_py', 'optimize'),
|
|
|
|
('skip_build', 'skip_build'),
|
|
|
|
)
|
1999-05-02 18:39:13 -03:00
|
|
|
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
def run (self):
|
|
|
|
|
2000-03-28 22:17:42 -04:00
|
|
|
# Make sure we have built everything we need first
|
2000-05-11 22:46:47 -03:00
|
|
|
if not self.skip_build:
|
|
|
|
if self.distribution.has_pure_modules():
|
2000-05-27 14:27:23 -03:00
|
|
|
self.run_command ('build_py')
|
2000-05-11 22:46:47 -03:00
|
|
|
if self.distribution.has_ext_modules():
|
2000-05-27 14:27:23 -03:00
|
|
|
self.run_command ('build_ext')
|
2000-01-30 11:07:56 -04:00
|
|
|
|
2000-02-25 20:49:04 -04:00
|
|
|
# Install everything: simply dump the entire contents of the build
|
|
|
|
# directory to the installation directory (that's the beauty of
|
|
|
|
# having a build directory!)
|
2000-05-20 12:08:57 -03:00
|
|
|
if os.path.isdir(self.build_dir):
|
|
|
|
outfiles = self.copy_tree (self.build_dir, self.install_dir)
|
|
|
|
else:
|
|
|
|
self.warn("'%s' does not exist -- no Python modules to install" %
|
|
|
|
self.build_dir)
|
|
|
|
return
|
2000-03-28 22:17:42 -04:00
|
|
|
|
1999-05-02 18:39:13 -03:00
|
|
|
# (Optionally) compile .py to .pyc
|
|
|
|
# XXX hey! we can't control whether we optimize or not; that's up
|
|
|
|
# to the invocation of the current Python interpreter (at least
|
|
|
|
# according to the py_compile docs). That sucks.
|
|
|
|
|
|
|
|
if self.compile:
|
|
|
|
from py_compile import compile
|
|
|
|
|
|
|
|
for f in outfiles:
|
1999-08-29 15:19:37 -03:00
|
|
|
# only compile the file if it is actually a .py file
|
|
|
|
if f[-3:] == '.py':
|
2000-03-28 23:29:34 -04:00
|
|
|
out_fn = f + (__debug__ and "c" or "o")
|
|
|
|
compile_msg = "byte-compiling %s to %s" % \
|
|
|
|
(f, os.path.basename (out_fn))
|
|
|
|
skip_msg = "byte-compilation of %s skipped" % f
|
1999-08-29 15:19:37 -03:00
|
|
|
self.make_file (f, out_fn, compile, (f,),
|
2000-03-28 23:29:34 -04:00
|
|
|
compile_msg, skip_msg)
|
1999-03-22 10:55:25 -04:00
|
|
|
# run ()
|
|
|
|
|
2000-03-28 22:17:42 -04:00
|
|
|
|
|
|
|
def _mutate_outputs (self, has_any, build_cmd, cmd_option, output_dir):
|
|
|
|
|
|
|
|
if not has_any:
|
|
|
|
return []
|
|
|
|
|
2000-05-27 14:27:23 -03:00
|
|
|
build_cmd = self.get_finalized_command (build_cmd)
|
2000-03-28 22:17:42 -04:00
|
|
|
build_files = build_cmd.get_outputs()
|
2000-05-07 12:32:13 -03:00
|
|
|
build_dir = getattr (build_cmd, cmd_option)
|
2000-03-28 22:17:42 -04:00
|
|
|
|
|
|
|
prefix_len = len (build_dir) + len (os.sep)
|
|
|
|
outputs = []
|
|
|
|
for file in build_files:
|
|
|
|
outputs.append (os.path.join (output_dir, file[prefix_len:]))
|
|
|
|
|
|
|
|
return outputs
|
|
|
|
|
|
|
|
# _mutate_outputs ()
|
2000-05-12 23:11:10 -03:00
|
|
|
|
|
|
|
def _bytecode_filenames (self, py_filenames):
|
|
|
|
bytecode_files = []
|
|
|
|
for py_file in py_filenames:
|
|
|
|
bytecode = py_file + (__debug__ and "c" or "o")
|
|
|
|
bytecode_files.append(bytecode)
|
|
|
|
|
|
|
|
return bytecode_files
|
2000-03-28 22:17:42 -04:00
|
|
|
|
|
|
|
def get_outputs (self):
|
|
|
|
"""Return the list of files that would be installed if this command
|
|
|
|
were actually run. Not affected by the "dry-run" flag or whether
|
|
|
|
modules have actually been built yet."""
|
|
|
|
|
|
|
|
pure_outputs = \
|
|
|
|
self._mutate_outputs (self.distribution.has_pure_modules(),
|
|
|
|
'build_py', 'build_lib',
|
|
|
|
self.install_dir)
|
2000-05-12 23:11:10 -03:00
|
|
|
if self.compile:
|
|
|
|
bytecode_outputs = self._bytecode_filenames(pure_outputs)
|
|
|
|
else:
|
|
|
|
bytecode_outputs = []
|
2000-03-28 22:17:42 -04:00
|
|
|
|
|
|
|
ext_outputs = \
|
|
|
|
self._mutate_outputs (self.distribution.has_ext_modules(),
|
|
|
|
'build_ext', 'build_lib',
|
|
|
|
self.install_dir)
|
|
|
|
|
2000-05-12 23:11:10 -03:00
|
|
|
return pure_outputs + bytecode_outputs + ext_outputs
|
2000-03-28 22:17:42 -04:00
|
|
|
|
|
|
|
# get_outputs ()
|
|
|
|
|
2000-03-30 22:53:07 -04:00
|
|
|
def get_inputs (self):
|
|
|
|
"""Get the list of files that are input to this command, ie. the
|
|
|
|
files that get installed as they are named in the build tree.
|
|
|
|
The files in this list correspond one-to-one to the output
|
|
|
|
filenames returned by 'get_outputs()'."""
|
|
|
|
|
|
|
|
inputs = []
|
|
|
|
|
|
|
|
if self.distribution.has_pure_modules():
|
2000-05-27 14:27:23 -03:00
|
|
|
build_py = self.get_finalized_command ('build_py')
|
2000-03-30 22:53:07 -04:00
|
|
|
inputs.extend (build_py.get_outputs())
|
|
|
|
|
|
|
|
if self.distribution.has_ext_modules():
|
2000-05-27 14:27:23 -03:00
|
|
|
build_ext = self.get_finalized_command ('build_ext')
|
2000-03-30 22:53:07 -04:00
|
|
|
inputs.extend (build_ext.get_outputs())
|
|
|
|
|
|
|
|
return inputs
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-03-28 22:17:42 -04:00
|
|
|
# class install_lib
|