/
opt
/
alt
/
python27
/
lib64
/
python2.7
/
distutils
/
command
/
/opt/alt/python27/lib64/python2.7/distutils/command
mkdir
upload
Name
Size
Mode
Actions
bdist.py
5596
0644
edit
dl
rm
bdist.pyc
5247
0644
edit
dl
rm
bdist.pyo
5247
0644
edit
dl
rm
bdist_dumb.py
5196
0644
edit
dl
rm
bdist_dumb.pyc
5048
0644
edit
dl
rm
bdist_dumb.pyo
5048
0644
edit
dl
rm
bdist_msi.py
35193
0644
edit
dl
rm
bdist_msi.pyc
24182
0644
edit
dl
rm
bdist_msi.pyo
24075
0644
edit
dl
rm
bdist_rpm.py
21049
0644
edit
dl
rm
bdist_rpm.pyc
17725
0644
edit
dl
rm
bdist_rpm.pyo
17641
0644
edit
dl
rm
bdist_wininst.py
14999
0644
edit
dl
rm
bdist_wininst.pyc
10855
0644
edit
dl
rm
bdist_wininst.pyo
10776
0644
edit
dl
rm
build.py
5437
0644
edit
dl
rm
build.pyc
5267
0644
edit
dl
rm
build.pyo
5267
0644
edit
dl
rm
build_clib.py
8131
0644
edit
dl
rm
build_clib.pyc
6477
0644
edit
dl
rm
build_clib.pyo
6477
0644
edit
dl
rm
build_ext.py
32502
0644
edit
dl
rm
build_ext.py.debug-build
32270
0644
edit
dl
rm
build_ext.pyc
19591
0644
edit
dl
rm
build_ext.pyo
19591
0644
edit
dl
rm
build_py.py
16338
0644
edit
dl
rm
build_py.pyc
11766
0644
edit
dl
rm
build_py.pyo
11694
0644
edit
dl
rm
build_scripts.py
4598
0644
edit
dl
rm
build_scripts.pyc
4568
0644
edit
dl
rm
build_scripts.pyo
4568
0644
edit
dl
rm
check.py
5569
0644
edit
dl
rm
check.pyc
6380
0644
edit
dl
rm
check.pyo
6380
0644
edit
dl
rm
clean.py
2814
0644
edit
dl
rm
clean.pyc
3134
0644
edit
dl
rm
clean.pyo
3134
0644
edit
dl
rm
command_template
719
0644
edit
dl
rm
config.py
13130
0644
edit
dl
rm
config.pyc
12945
0644
edit
dl
rm
config.pyo
12945
0644
edit
dl
rm
install.py
26264
0644
edit
dl
rm
install.pyc
17130
0644
edit
dl
rm
install.pyo
17130
0644
edit
dl
rm
install_data.py
2845
0644
edit
dl
rm
install_data.pyc
3209
0644
edit
dl
rm
install_data.pyo
3209
0644
edit
dl
rm
install_egg_info.py
2587
0644
edit
dl
rm
install_egg_info.pyc
3861
0644
edit
dl
rm
install_egg_info.pyo
3861
0644
edit
dl
rm
install_headers.py
1346
0644
edit
dl
rm
install_headers.pyc
2346
0644
edit
dl
rm
install_headers.pyo
2346
0644
edit
dl
rm
install_lib.py
8338
0644
edit
dl
rm
install_lib.pyc
6837
0644
edit
dl
rm
install_lib.pyo
6837
0644
edit
dl
rm
install_scripts.py
2068
0644
edit
dl
rm
install_scripts.pyc
3019
0644
edit
dl
rm
install_scripts.pyo
3019
0644
edit
dl
rm
register.py
11839
0644
edit
dl
rm
register.pyc
10377
0644
edit
dl
rm
register.pyo
10377
0644
edit
dl
rm
sdist.py
18557
0644
edit
dl
rm
sdist.pyc
16930
0644
edit
dl
rm
sdist.pyo
16930
0644
edit
dl
rm
upload.py
7000
0644
edit
dl
rm
upload.pyc
6386
0644
edit
dl
rm
upload.pyo
6386
0644
edit
dl
rm
__init__.py
822
0644
edit
dl
rm
__init__.pyc
678
0644
edit
dl
rm
__init__.pyo
678
0644
edit
dl
rm
Edit:
/opt/alt/python27/lib64/python2.7/distutils/command/install_data.py
(2845B)
"""distutils.command.install_data Implements the Distutils 'install_data' command, for installing platform-independent data files.""" # contributed by Bastian Kleineidam __revision__ = "$Id$" import os from distutils.core import Command from distutils.util import change_root, convert_path class install_data(Command): description = "install data files" user_options = [ ('install-dir=', 'd', "base directory for installing data files " "(default: installation base dir)"), ('root=', None, "install everything relative to this alternate root directory"), ('force', 'f', "force installation (overwrite existing files)"), ] boolean_options = ['force'] def initialize_options(self): self.install_dir = None self.outfiles = [] self.root = None self.force = 0 self.data_files = self.distribution.data_files self.warn_dir = 1 def finalize_options(self): self.set_undefined_options('install', ('install_data', 'install_dir'), ('root', 'root'), ('force', 'force'), ) def run(self): self.mkpath(self.install_dir) for f in self.data_files: if isinstance(f, str): # it's a simple file, so copy it f = convert_path(f) if self.warn_dir: self.warn("setup script did not provide a directory for " "'%s' -- installing right in '%s'" % (f, self.install_dir)) (out, _) = self.copy_file(f, self.install_dir) self.outfiles.append(out) else: # it's a tuple with path to install to and a list of files dir = convert_path(f[0]) if not os.path.isabs(dir): dir = os.path.join(self.install_dir, dir) elif self.root: dir = change_root(self.root, dir) self.mkpath(dir) if f[1] == []: # If there are no files listed, the user must be # trying to create an empty directory, so add the # directory to the list of output files. self.outfiles.append(dir) else: # Copy files, adding them to the list of output files. for data in f[1]: data = convert_path(data) (out, _) = self.copy_file(data, dir) self.outfiles.append(out) def get_inputs(self): return self.data_files or [] def get_outputs(self): return self.outfiles
Save
cmd:
run