1999-03-22 10:55:25 -04:00
|
|
|
# created 1999/03/13, Greg Ward
|
|
|
|
|
|
|
|
__rcsid__ = "$Id$"
|
|
|
|
|
1999-05-02 18:39:13 -03:00
|
|
|
import sys, string
|
1999-03-22 10:55:25 -04:00
|
|
|
from distutils.core import Command
|
|
|
|
from distutils.util import copy_tree
|
|
|
|
|
|
|
|
class InstallPy (Command):
|
|
|
|
|
1999-09-29 09:38:18 -03:00
|
|
|
options = [('install-dir=', 'd', "directory to install to"),
|
1999-08-29 15:19:37 -03:00
|
|
|
('build-dir=','b', "build directory (where to install from)"),
|
1999-05-02 18:39:13 -03:00
|
|
|
('compile', 'c', "compile .py to .pyc"),
|
|
|
|
('optimize', 'o', "compile .py to .pyo (optimized)"),
|
|
|
|
]
|
|
|
|
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
def set_default_options (self):
|
|
|
|
# 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
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
def set_final_options (self):
|
|
|
|
|
1999-09-13 10:58:34 -03:00
|
|
|
# Find out from the 'build_ext' command if we were asked to build
|
|
|
|
# any extensions. If so, that means even pure-Python modules in
|
|
|
|
# this distribution have to be installed to the "platlib"
|
|
|
|
# directory.
|
|
|
|
extensions = self.get_peer_option ('build_ext', 'extensions')
|
|
|
|
if extensions:
|
|
|
|
dir_option = 'install_site_platlib'
|
|
|
|
else:
|
|
|
|
dir_option = 'install_site_lib'
|
|
|
|
|
|
|
|
# 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'),
|
1999-09-29 09:38:18 -03:00
|
|
|
(dir_option, 'install_dir'),
|
1999-05-02 18:39:13 -03:00
|
|
|
('compile_py', 'compile'),
|
|
|
|
('optimize_py', 'optimize'))
|
|
|
|
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
def run (self):
|
|
|
|
|
|
|
|
# Dump entire contents of the build directory to the installation
|
|
|
|
# directory (that's the beauty of having a build directory!)
|
1999-09-29 09:38:18 -03:00
|
|
|
outfiles = self.copy_tree (self.build_dir, self.install_dir)
|
1999-03-22 10:55:25 -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:
|
|
|
|
# XXX can't assume this filename mapping!
|
|
|
|
|
1999-08-29 15:19:37 -03:00
|
|
|
# only compile the file if it is actually a .py file
|
|
|
|
if f[-3:] == '.py':
|
|
|
|
out_fn = string.replace (f, '.py', '.pyc')
|
|
|
|
|
|
|
|
self.make_file (f, out_fn, compile, (f,),
|
|
|
|
"compiling %s -> %s" % (f, out_fn),
|
|
|
|
"compilation of %s skipped" % f)
|
|
|
|
|
1999-05-02 18:39:13 -03:00
|
|
|
# XXX ignore self.optimize for now, since we don't really know if
|
|
|
|
# we're compiling optimally or not, and couldn't pick what to do
|
|
|
|
# even if we did know. ;-(
|
|
|
|
|
1999-03-22 10:55:25 -04:00
|
|
|
# run ()
|
|
|
|
|
|
|
|
# class InstallPy
|