GRAYBYTE WORDPRESS FILE MANAGER8554

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /lib64/python2.7/distutils/command/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /lib64/python2.7/distutils/command//install_lib.py
"""distutils.command.install_lib

Implements the Distutils 'install_lib' command
(install all Python modules)."""

__revision__ = "$Id$"

import os
import sys

from distutils.core import Command
from distutils.errors import DistutilsOptionError


# Extension for Python source files.
if hasattr(os, 'extsep'):
    PYTHON_SOURCE_EXTENSION = os.extsep + "py"
else:
    PYTHON_SOURCE_EXTENSION = ".py"

class install_lib(Command):

    description = "install all Python modules (extensions and pure Python)"

    # The byte-compilation options are a tad confusing.  Here are the
    # possible scenarios:
    #   1) no compilation at all (--no-compile --no-optimize)
    #   2) compile .pyc only (--compile --no-optimize; default)
    #   3) compile .pyc and "level 1" .pyo (--compile --optimize)
    #   4) compile "level 1" .pyo only (--no-compile --optimize)
    #   5) compile .pyc and "level 2" .pyo (--compile --optimize-more)
    #   6) compile "level 2" .pyo only (--no-compile --optimize-more)
    #
    # The UI for this is two option, 'compile' and 'optimize'.
    # 'compile' is strictly boolean, and only decides whether to
    # generate .pyc files.  'optimize' is three-way (0, 1, or 2), and
    # decides both whether to generate .pyo files and what level of
    # optimization to use.

    user_options = [
        ('install-dir=', 'd', "directory to install to"),
        ('build-dir=','b', "build directory (where to install from)"),
        ('force', 'f', "force installation (overwrite existing files)"),
        ('compile', 'c', "compile .py to .pyc [default]"),
        ('no-compile', None, "don't compile .py files"),
        ('optimize=', 'O',
         "also compile with optimization: -O1 for \"python -O\", "
         "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
        ('skip-build', None, "skip the build steps"),
        ]

    boolean_options = ['force', 'compile', 'skip-build']
    negative_opt = {'no-compile' : 'compile'}

    def initialize_options(self):
        # let the 'install' command dictate our installation directory
        self.install_dir = None
        self.build_dir = None
        self.force = 0
        self.compile = None
        self.optimize = None
        self.skip_build = None

    def finalize_options(self):
        # 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.
        self.set_undefined_options('install',
                                   ('build_lib', 'build_dir'),
                                   ('install_lib', 'install_dir'),
                                   ('force', 'force'),
                                   ('compile', 'compile'),
                                   ('optimize', 'optimize'),
                                   ('skip_build', 'skip_build'),
                                  )

        if self.compile is None:
            self.compile = 1
        if self.optimize is None:
            self.optimize = 0

        if not isinstance(self.optimize, int):
            try:
                self.optimize = int(self.optimize)
                if self.optimize not in (0, 1, 2):
                    raise AssertionError
            except (ValueError, AssertionError):
                raise DistutilsOptionError, "optimize must be 0, 1, or 2"

    def run(self):
        # Make sure we have built everything we need first
        self.build()

        # Install everything: simply dump the entire contents of the build
        # directory to the installation directory (that's the beauty of
        # having a build directory!)
        outfiles = self.install()

        # (Optionally) compile .py to .pyc
        if outfiles is not None and self.distribution.has_pure_modules():
            self.byte_compile(outfiles)

    # -- Top-level worker functions ------------------------------------
    # (called from 'run()')

    def build(self):
        if not self.skip_build:
            if self.distribution.has_pure_modules():
                self.run_command('build_py')
            if self.distribution.has_ext_modules():
                self.run_command('build_ext')

    def install(self):
        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
        return outfiles

    def byte_compile(self, files):
        if sys.dont_write_bytecode:
            self.warn('byte-compiling is disabled, skipping.')
            return

        from distutils.util import byte_compile

        # Get the "--root" directory supplied to the "install" command,
        # and use it as a prefix to strip off the purported filename
        # encoded in bytecode files.  This is far from complete, but it
        # should at least generate usable bytecode in RPM distributions.
        install_root = self.get_finalized_command('install').root

        if self.compile:
            byte_compile(files, optimize=0,
                         force=self.force, prefix=install_root,
                         dry_run=self.dry_run)
        if self.optimize > 0:
            byte_compile(files, optimize=self.optimize,
                         force=self.force, prefix=install_root,
                         verbose=self.verbose, dry_run=self.dry_run)


    # -- Utility methods -----------------------------------------------

    def _mutate_outputs(self, has_any, build_cmd, cmd_option, output_dir):
        if not has_any:
            return []

        build_cmd = self.get_finalized_command(build_cmd)
        build_files = build_cmd.get_outputs()
        build_dir = getattr(build_cmd, cmd_option)

        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

    def _bytecode_filenames(self, py_filenames):
        bytecode_files = []
        for py_file in py_filenames:
            # Since build_py handles package data installation, the
            # list of outputs can contain more than just .py files.
            # Make sure we only report bytecode for the .py files.
            ext = os.path.splitext(os.path.normcase(py_file))[1]
            if ext != PYTHON_SOURCE_EXTENSION:
                continue
            if self.compile:
                bytecode_files.append(py_file + "c")
            if self.optimize > 0:
                bytecode_files.append(py_file + "o")

        return bytecode_files


    # -- External interface --------------------------------------------
    # (called by outsiders)

    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)
        if self.compile:
            bytecode_outputs = self._bytecode_filenames(pure_outputs)
        else:
            bytecode_outputs = []

        ext_outputs = \
            self._mutate_outputs(self.distribution.has_ext_modules(),
                                 'build_ext', 'build_lib',
                                 self.install_dir)

        return pure_outputs + bytecode_outputs + ext_outputs

    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():
            build_py = self.get_finalized_command('build_py')
            inputs.extend(build_py.get_outputs())

        if self.distribution.has_ext_modules():
            build_ext = self.get_finalized_command('build_ext')
            inputs.extend(build_ext.get_outputs())

        return inputs

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 15 2024 08:34:30
root / root
0755
__init__.py
0.803 KB
April 10 2024 04:58:35
root / root
0644
__init__.pyc
0.649 KB
April 10 2024 04:58:46
root / root
0644
__init__.pyo
0.649 KB
April 10 2024 04:58:46
root / root
0644
bdist.py
5.465 KB
April 10 2024 04:58:35
root / root
0644
bdist.pyc
5.048 KB
April 10 2024 04:58:46
root / root
0644
bdist.pyo
5.048 KB
April 10 2024 04:58:46
root / root
0644
bdist_dumb.py
5.074 KB
April 10 2024 04:58:35
root / root
0644
bdist_dumb.pyc
4.866 KB
April 10 2024 04:58:46
root / root
0644
bdist_dumb.pyo
4.866 KB
April 10 2024 04:58:46
root / root
0644
bdist_msi.py
34.368 KB
April 10 2024 04:58:35
root / root
0644
bdist_msi.pyc
23.399 KB
April 10 2024 04:58:46
root / root
0644
bdist_msi.pyo
23.295 KB
April 10 2024 04:58:43
root / root
0644
bdist_rpm.py
20.556 KB
April 10 2024 04:58:35
root / root
0644
bdist_rpm.pyc
17.195 KB
April 10 2024 04:58:46
root / root
0644
bdist_rpm.pyo
17.113 KB
April 10 2024 04:58:43
root / root
0644
bdist_wininst.py
14.647 KB
April 10 2024 04:58:35
root / root
0644
bdist_wininst.pyc
10.474 KB
April 10 2024 04:58:46
root / root
0644
bdist_wininst.pyo
10.396 KB
April 10 2024 04:58:43
root / root
0644
build.py
5.328 KB
April 10 2024 04:58:35
root / root
0644
build.pyc
5.025 KB
April 10 2024 04:58:46
root / root
0644
build.pyo
5.025 KB
April 10 2024 04:58:46
root / root
0644
build_clib.py
7.94 KB
April 10 2024 04:58:35
root / root
0644
build_clib.pyc
6.198 KB
April 10 2024 04:58:46
root / root
0644
build_clib.pyo
6.198 KB
April 10 2024 04:58:46
root / root
0644
build_ext.py
31.749 KB
April 10 2024 04:58:35
root / root
0644
build_ext.py.debug-build
31.514 KB
April 10 2024 04:58:35
root / root
0644
build_ext.pyc
18.891 KB
April 10 2024 04:58:46
root / root
0644
build_ext.pyo
18.891 KB
April 10 2024 04:58:46
root / root
0644
build_py.py
15.955 KB
April 10 2024 04:58:35
root / root
0644
build_py.pyc
11.224 KB
April 10 2024 04:58:46
root / root
0644
build_py.pyo
11.153 KB
April 10 2024 04:58:43
root / root
0644
build_scripts.py
4.49 KB
April 10 2024 04:58:35
root / root
0644
build_scripts.pyc
4.372 KB
April 10 2024 04:58:46
root / root
0644
build_scripts.pyo
4.372 KB
April 10 2024 04:58:46
root / root
0644
check.py
5.539 KB
April 10 2024 04:58:35
root / root
0644
check.pyc
6.115 KB
April 10 2024 04:58:46
root / root
0644
check.pyo
6.115 KB
April 10 2024 04:58:46
root / root
0644
clean.py
2.748 KB
April 10 2024 04:58:35
root / root
0644
clean.pyc
2.997 KB
April 10 2024 04:58:46
root / root
0644
clean.pyo
2.997 KB
April 10 2024 04:58:46
root / root
0644
command_template
0.702 KB
April 10 2024 04:58:35
root / root
0644
config.py
12.822 KB
April 10 2024 04:58:35
root / root
0644
config.pyc
12.388 KB
April 10 2024 04:58:46
root / root
0644
config.pyo
12.388 KB
April 10 2024 04:58:46
root / root
0644
install.py
25.648 KB
April 10 2024 04:58:35
root / root
0644
install.pyc
16.424 KB
April 10 2024 04:58:46
root / root
0644
install.pyo
16.424 KB
April 10 2024 04:58:46
root / root
0644
install_data.py
2.778 KB
April 10 2024 04:58:35
root / root
0644
install_data.pyc
3.045 KB
April 10 2024 04:58:46
root / root
0644
install_data.pyo
3.045 KB
April 10 2024 04:58:46
root / root
0644
install_egg_info.py
2.526 KB
April 10 2024 04:58:35
root / root
0644
install_egg_info.pyc
3.656 KB
April 10 2024 04:58:46
root / root
0644
install_egg_info.pyo
3.656 KB
April 10 2024 04:58:46
root / root
0644
install_headers.py
1.314 KB
April 10 2024 04:58:35
root / root
0644
install_headers.pyc
2.202 KB
April 10 2024 04:58:46
root / root
0644
install_headers.pyo
2.202 KB
April 10 2024 04:58:46
root / root
0644
install_lib.py
8.143 KB
April 10 2024 04:58:35
root / root
0644
install_lib.pyc
6.524 KB
April 10 2024 04:58:46
root / root
0644
install_lib.pyo
6.524 KB
April 10 2024 04:58:46
root / root
0644
install_scripts.py
2.02 KB
April 10 2024 04:58:35
root / root
0644
install_scripts.pyc
2.859 KB
April 10 2024 04:58:46
root / root
0644
install_scripts.pyo
2.859 KB
April 10 2024 04:58:46
root / root
0644
register.py
11.562 KB
April 10 2024 04:58:35
root / root
0644
register.pyc
9.969 KB
April 10 2024 04:58:46
root / root
0644
register.pyo
9.969 KB
April 10 2024 04:58:46
root / root
0644
sdist.py
18.122 KB
April 10 2024 04:58:35
root / root
0644
sdist.pyc
16.305 KB
April 10 2024 04:58:46
root / root
0644
sdist.pyo
16.305 KB
April 10 2024 04:58:46
root / root
0644
upload.py
6.836 KB
April 10 2024 04:58:35
root / root
0644
upload.pyc
6.16 KB
April 10 2024 04:58:46
root / root
0644
upload.pyo
6.16 KB
April 10 2024 04:58:46
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF