mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-27 21:39:34 +00:00
Format our code with black
This commit is contained in:
@ -3,7 +3,17 @@ import os
|
||||
import shutil
|
||||
import time
|
||||
|
||||
from kiwixbuild.utils import pj, Context, SkipCommand, WarningMessage, extract_archive, StopBuild, run_command, colorize, copy_tree
|
||||
from kiwixbuild.utils import (
|
||||
pj,
|
||||
Context,
|
||||
SkipCommand,
|
||||
WarningMessage,
|
||||
extract_archive,
|
||||
StopBuild,
|
||||
run_command,
|
||||
colorize,
|
||||
copy_tree,
|
||||
)
|
||||
from kiwixbuild.versions import main_project_versions, base_deps_versions
|
||||
from kiwixbuild._global import neutralEnv, option, get_target_step
|
||||
|
||||
@ -13,8 +23,8 @@ SCRIPT_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
||||
class _MetaDependency(type):
|
||||
def __new__(cls, name, bases, dct):
|
||||
_class = type.__new__(cls, name, bases, dct)
|
||||
if name != 'Dependency':
|
||||
dep_name = dct['name']
|
||||
if name != "Dependency":
|
||||
dep_name = dct["name"]
|
||||
Dependency.all_deps[dep_name] = _class
|
||||
return _class
|
||||
|
||||
@ -29,7 +39,7 @@ class Dependency(metaclass=_MetaDependency):
|
||||
def version(cls):
|
||||
if cls.name in base_deps_versions:
|
||||
return base_deps_versions[cls.name]
|
||||
elif option('make_release'):
|
||||
elif option("make_release"):
|
||||
return main_project_versions.get(cls.name, None)
|
||||
return None
|
||||
|
||||
@ -42,8 +52,9 @@ class Dependency(metaclass=_MetaDependency):
|
||||
|
||||
class Source:
|
||||
"""Base Class to the real preparator
|
||||
A source preparator must install source in the self.source_dir attribute
|
||||
inside the neutralEnv.source_dir."""
|
||||
A source preparator must install source in the self.source_dir attribute
|
||||
inside the neutralEnv.source_dir."""
|
||||
|
||||
def __init__(self, target):
|
||||
self.target = target
|
||||
|
||||
@ -61,22 +72,22 @@ class Source:
|
||||
|
||||
@property
|
||||
def source_path(self):
|
||||
return pj(neutralEnv('source_dir'), self.source_dir)
|
||||
return pj(neutralEnv("source_dir"), self.source_dir)
|
||||
|
||||
@property
|
||||
def _log_dir(self):
|
||||
return neutralEnv('log_dir')
|
||||
return neutralEnv("log_dir")
|
||||
|
||||
def _patch(self, context):
|
||||
context.try_skip(self.source_path)
|
||||
for p in self.patches:
|
||||
patch_file_path = pj(SCRIPT_DIR, 'patches', p)
|
||||
patch_command = [*neutralEnv('patch_command'), "-p1", "-i", patch_file_path]
|
||||
patch_file_path = pj(SCRIPT_DIR, "patches", p)
|
||||
patch_command = [*neutralEnv("patch_command"), "-p1", "-i", patch_file_path]
|
||||
run_command(patch_command, self.source_path, context)
|
||||
|
||||
def command(self, name, function, *args):
|
||||
print(" {} {} : ".format(name, self.name), end="", flush=True)
|
||||
log = pj(self._log_dir, 'cmd_{}_{}.log'.format(name, self.name))
|
||||
log = pj(self._log_dir, "cmd_{}_{}.log".format(name, self.name))
|
||||
context = Context(name, log, True)
|
||||
try:
|
||||
start_time = time.time()
|
||||
@ -92,7 +103,7 @@ class Source:
|
||||
except subprocess.CalledProcessError:
|
||||
print(colorize("ERROR"))
|
||||
try:
|
||||
with open(log, 'r') as f:
|
||||
with open(log, "r") as f:
|
||||
print(f.read())
|
||||
except:
|
||||
pass
|
||||
@ -112,34 +123,36 @@ class ReleaseDownload(Source):
|
||||
|
||||
@property
|
||||
def archives(self):
|
||||
return (self.archive, )
|
||||
return (self.archive,)
|
||||
|
||||
@property
|
||||
def extract_path(self):
|
||||
return pj(neutralEnv('source_dir'), self.source_dir)
|
||||
return pj(neutralEnv("source_dir"), self.source_dir)
|
||||
|
||||
def _download(self, context):
|
||||
context.try_skip(neutralEnv('archive_dir'), self.full_name)
|
||||
context.try_skip(neutralEnv("archive_dir"), self.full_name)
|
||||
for archive in self.archives:
|
||||
neutralEnv('download')(archive)
|
||||
neutralEnv("download")(archive)
|
||||
|
||||
def _extract(self, context):
|
||||
context.try_skip(self.extract_path)
|
||||
if os.path.exists(self.extract_path):
|
||||
shutil.rmtree(self.extract_path)
|
||||
for archive in self.archives:
|
||||
extract_archive(pj(neutralEnv('archive_dir'), archive.name),
|
||||
neutralEnv('source_dir'),
|
||||
topdir=self.archive_top_dir,
|
||||
name=self.source_dir)
|
||||
extract_archive(
|
||||
pj(neutralEnv("archive_dir"), archive.name),
|
||||
neutralEnv("source_dir"),
|
||||
topdir=self.archive_top_dir,
|
||||
name=self.source_dir,
|
||||
)
|
||||
|
||||
def prepare(self):
|
||||
self.command('download', self._download)
|
||||
self.command('extract', self._extract)
|
||||
if hasattr(self, 'patches'):
|
||||
self.command('patch', self._patch)
|
||||
if hasattr(self, '_post_prepare_script'):
|
||||
self.command('post_prepare_script', self._post_prepare_script)
|
||||
self.command("download", self._download)
|
||||
self.command("extract", self._extract)
|
||||
if hasattr(self, "patches"):
|
||||
self.command("patch", self._patch)
|
||||
if hasattr(self, "_post_prepare_script"):
|
||||
self.command("post_prepare_script", self._post_prepare_script)
|
||||
|
||||
|
||||
class GitClone(Source):
|
||||
@ -152,48 +165,66 @@ class GitClone(Source):
|
||||
|
||||
@property
|
||||
def source_dir(self):
|
||||
if option('make_release'):
|
||||
if option("make_release"):
|
||||
return "{}_release".format(self.git_dir)
|
||||
else:
|
||||
return self.git_dir
|
||||
|
||||
@property
|
||||
def git_path(self):
|
||||
return pj(neutralEnv('source_dir'), self.source_dir)
|
||||
return pj(neutralEnv("source_dir"), self.source_dir)
|
||||
|
||||
@property
|
||||
def git_ref(self):
|
||||
if option('make_release'):
|
||||
if option("make_release"):
|
||||
return self.release_git_ref
|
||||
else:
|
||||
return self.base_git_ref
|
||||
|
||||
def _git_init(self, context):
|
||||
if option('fast_clone') and self.force_full_clone == False:
|
||||
command = [*neutralEnv('git_command'), "clone" , "--depth=1", "--branch", self.git_ref, self.git_remote, self.source_dir]
|
||||
run_command(command, neutralEnv('source_dir'), context)
|
||||
if option("fast_clone") and self.force_full_clone == False:
|
||||
command = [
|
||||
*neutralEnv("git_command"),
|
||||
"clone",
|
||||
"--depth=1",
|
||||
"--branch",
|
||||
self.git_ref,
|
||||
self.git_remote,
|
||||
self.source_dir,
|
||||
]
|
||||
run_command(command, neutralEnv("source_dir"), context)
|
||||
else:
|
||||
command = [*neutralEnv('git_command'), "clone", self.git_remote, self.source_dir]
|
||||
run_command(command, neutralEnv('source_dir'), context)
|
||||
command = [*neutralEnv('git_command'), "checkout", self.git_ref]
|
||||
command = [
|
||||
*neutralEnv("git_command"),
|
||||
"clone",
|
||||
self.git_remote,
|
||||
self.source_dir,
|
||||
]
|
||||
run_command(command, neutralEnv("source_dir"), context)
|
||||
command = [*neutralEnv("git_command"), "checkout", self.git_ref]
|
||||
run_command(command, self.git_path, context)
|
||||
|
||||
def _git_update(self, context):
|
||||
command = [*neutralEnv('git_command'), "fetch", "origin", self.git_ref]
|
||||
command = [*neutralEnv("git_command"), "fetch", "origin", self.git_ref]
|
||||
run_command(command, self.git_path, context)
|
||||
try:
|
||||
command = [*neutralEnv('git_command'), "merge", "--ff-only", f"origin/{self.git_ref}"]
|
||||
command = [
|
||||
*neutralEnv("git_command"),
|
||||
"merge",
|
||||
"--ff-only",
|
||||
f"origin/{self.git_ref}",
|
||||
]
|
||||
run_command(command, self.git_path, context)
|
||||
except subprocess.CalledProcessError:
|
||||
raise WarningMessage("Cannot update, please check log for information")
|
||||
|
||||
def prepare(self):
|
||||
if not os.path.exists(self.git_path):
|
||||
self.command('gitinit', self._git_init)
|
||||
self.command("gitinit", self._git_init)
|
||||
else:
|
||||
self.command('gitupdate', self._git_update)
|
||||
if hasattr(self, '_post_prepare_script'):
|
||||
self.command('post_prepare_script', self._post_prepare_script)
|
||||
self.command("gitupdate", self._git_update)
|
||||
if hasattr(self, "_post_prepare_script"):
|
||||
self.command("post_prepare_script", self._post_prepare_script)
|
||||
|
||||
|
||||
class Builder:
|
||||
@ -230,7 +261,7 @@ class Builder:
|
||||
|
||||
def command(self, name, function, *args):
|
||||
print(" {} {} : ".format(name, self.name), end="", flush=True)
|
||||
log = pj(self._log_dir, 'cmd_{}_{}.log'.format(name, self.name))
|
||||
log = pj(self._log_dir, "cmd_{}_{}.log".format(name, self.name))
|
||||
context = Context(name, log, self.target.force_native_build)
|
||||
if self.target.force_build:
|
||||
context.no_skip = True
|
||||
@ -248,7 +279,7 @@ class Builder:
|
||||
except subprocess.CalledProcessError:
|
||||
print(colorize("ERROR"))
|
||||
try:
|
||||
with open(log, 'r') as f:
|
||||
with open(log, "r") as f:
|
||||
print(f.read())
|
||||
except:
|
||||
pass
|
||||
@ -258,36 +289,40 @@ class Builder:
|
||||
raise
|
||||
|
||||
def build(self):
|
||||
if hasattr(self, '_pre_build_script'):
|
||||
self.command('pre_build_script', self._pre_build_script)
|
||||
self.command('configure', self._configure)
|
||||
if hasattr(self, '_post_configure_script'):
|
||||
self.command('post_configure_script', self._post_configure_script)
|
||||
self.command('compile', self._compile)
|
||||
if hasattr(self, '_test'):
|
||||
self.command('test', self._test)
|
||||
self.command('install', self._install)
|
||||
if hasattr(self, '_post_build_script'):
|
||||
self.command('post_build_script', self._post_build_script)
|
||||
if hasattr(self, "_pre_build_script"):
|
||||
self.command("pre_build_script", self._pre_build_script)
|
||||
self.command("configure", self._configure)
|
||||
if hasattr(self, "_post_configure_script"):
|
||||
self.command("post_configure_script", self._post_configure_script)
|
||||
self.command("compile", self._compile)
|
||||
if hasattr(self, "_test"):
|
||||
self.command("test", self._test)
|
||||
self.command("install", self._install)
|
||||
if hasattr(self, "_post_build_script"):
|
||||
self.command("post_build_script", self._post_build_script)
|
||||
|
||||
def make_dist(self):
|
||||
if hasattr(self, '_pre_build_script'):
|
||||
self.command('pre_build_script', self._pre_build_script)
|
||||
self.command('configure', self._configure)
|
||||
self.command('make_dist', self._make_dist)
|
||||
if hasattr(self, "_pre_build_script"):
|
||||
self.command("pre_build_script", self._pre_build_script)
|
||||
self.command("configure", self._configure)
|
||||
self.command("make_dist", self._make_dist)
|
||||
|
||||
def set_flatpak_buildsystem(self, module):
|
||||
if getattr(self, 'flatpak_buildsystem', None):
|
||||
module['buildsystem'] = self.flatpak_buildsystem
|
||||
if getattr(self, 'subsource_dir', None):
|
||||
module['subdir'] = self.subsource_dir
|
||||
if getattr(self, 'flatpack_build_options', None):
|
||||
module['build-options'] = self.flatpack_build_options
|
||||
if getattr(self, 'configure_option', ''):
|
||||
module['config-opts'] = self.configure_option.split(' ')
|
||||
if getattr(self, "flatpak_buildsystem", None):
|
||||
module["buildsystem"] = self.flatpak_buildsystem
|
||||
if getattr(self, "subsource_dir", None):
|
||||
module["subdir"] = self.subsource_dir
|
||||
if getattr(self, "flatpack_build_options", None):
|
||||
module["build-options"] = self.flatpack_build_options
|
||||
if getattr(self, "configure_option", ""):
|
||||
module["config-opts"] = self.configure_option.split(" ")
|
||||
|
||||
def get_env(self, *, cross_comp_flags, cross_compilers, cross_path):
|
||||
env = self.buildEnv.get_env(cross_comp_flags=cross_comp_flags, cross_compilers=cross_compilers, cross_path=cross_path)
|
||||
env = self.buildEnv.get_env(
|
||||
cross_comp_flags=cross_comp_flags,
|
||||
cross_compilers=cross_compilers,
|
||||
cross_path=cross_path,
|
||||
)
|
||||
for dep in self.get_dependencies(self.buildEnv.platformInfo, False):
|
||||
try:
|
||||
builder = get_target_step(dep, self.buildEnv.platformInfo.name)
|
||||
@ -317,7 +352,7 @@ class TcCopyBuilder(Builder):
|
||||
return pj(self.buildEnv.toolchain_dir, self.target.full_name())
|
||||
|
||||
def build(self):
|
||||
self.command('copy', self._copy)
|
||||
self.command("copy", self._copy)
|
||||
|
||||
def _copy(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
@ -339,18 +374,18 @@ class MakeBuilder(Builder):
|
||||
install_options = []
|
||||
configure_script = "configure"
|
||||
configure_env = {
|
||||
'_format_CFLAGS' : '{env[CFLAGS]} -O3',
|
||||
'_format_CXXFLAGS': '{env[CXXFLAGS]} -O3'
|
||||
"_format_CFLAGS": "{env[CFLAGS]} -O3",
|
||||
"_format_CXXFLAGS": "{env[CXXFLAGS]} -O3",
|
||||
}
|
||||
make_targets = []
|
||||
flatpak_buildsystem = None
|
||||
|
||||
@property
|
||||
def make_install_targets(self):
|
||||
if self.buildEnv.platformInfo.build in ('iOS', "wasm"):
|
||||
yield 'install'
|
||||
if self.buildEnv.platformInfo.build in ("iOS", "wasm"):
|
||||
yield "install"
|
||||
else:
|
||||
yield 'install-strip'
|
||||
yield "install-strip"
|
||||
|
||||
@property
|
||||
def all_configure_options(self):
|
||||
@ -361,27 +396,26 @@ class MakeBuilder(Builder):
|
||||
yield from self.dynamic_configure_options
|
||||
if not self.target.force_native_build:
|
||||
yield from self.buildEnv.platformInfo.configure_options
|
||||
yield from ('--prefix', self.buildEnv.install_dir)
|
||||
yield from ('--libdir', pj(self.buildEnv.install_dir, self.buildEnv.libprefix))
|
||||
yield from ("--prefix", self.buildEnv.install_dir)
|
||||
yield from ("--libdir", pj(self.buildEnv.install_dir, self.buildEnv.libprefix))
|
||||
|
||||
def set_configure_env(self, env):
|
||||
dep_conf_env = self.configure_env
|
||||
if not dep_conf_env:
|
||||
return
|
||||
for k, v in dep_conf_env.items():
|
||||
if k.startswith('_format_'):
|
||||
if k.startswith("_format_"):
|
||||
v = v.format(buildEnv=self.buildEnv, env=env)
|
||||
env[k[8:]] = v
|
||||
else:
|
||||
env[k] = v
|
||||
|
||||
|
||||
def _configure(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
command = [
|
||||
*self.buildEnv.configure_wrapper,
|
||||
pj(self.source_path, self.configure_script),
|
||||
*self.all_configure_options
|
||||
*self.all_configure_options,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=True, cross_path=True)
|
||||
self.set_configure_env(env)
|
||||
@ -391,10 +425,10 @@ class MakeBuilder(Builder):
|
||||
context.try_skip(self.build_path)
|
||||
command = [
|
||||
*self.buildEnv.make_wrapper,
|
||||
*neutralEnv('make_command'),
|
||||
*neutralEnv("make_command"),
|
||||
"-j4",
|
||||
*self.make_targets,
|
||||
*self.make_options
|
||||
*self.make_options,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=True, cross_path=True)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
@ -403,26 +437,22 @@ class MakeBuilder(Builder):
|
||||
context.try_skip(self.build_path)
|
||||
command = [
|
||||
*self.buildEnv.make_wrapper,
|
||||
*neutralEnv('make_command'),
|
||||
*neutralEnv("make_command"),
|
||||
*self.make_install_targets,
|
||||
*self.make_options
|
||||
*self.make_options,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=True, cross_path=True)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def _make_dist(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
command = [
|
||||
*self.buildEnv.make_wrapper,
|
||||
*neutralEnv('make_command'),
|
||||
"dist"
|
||||
]
|
||||
command = [*self.buildEnv.make_wrapper, *neutralEnv("make_command"), "dist"]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=True, cross_path=True)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
|
||||
class CMakeBuilder(MakeBuilder):
|
||||
flatpak_buildsystem = 'cmake'
|
||||
flatpak_buildsystem = "cmake"
|
||||
|
||||
def _configure(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
@ -430,74 +460,79 @@ class CMakeBuilder(MakeBuilder):
|
||||
if not self.target.force_native_build and self.buildEnv.cmake_crossfile:
|
||||
cross_options += [f"-DCMAKE_TOOLCHAIN_FILE={self.buildEnv.cmake_crossfile}"]
|
||||
command = [
|
||||
*neutralEnv('cmake_command'),
|
||||
*neutralEnv("cmake_command"),
|
||||
*self.configure_options,
|
||||
"-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON",
|
||||
f"-DCMAKE_INSTALL_PREFIX={self.buildEnv.install_dir}",
|
||||
f"-DCMAKE_INSTALL_LIBDIR={self.buildEnv.libprefix}",
|
||||
self.source_path,
|
||||
*cross_options
|
||||
*cross_options,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=False, cross_path=True)
|
||||
env = self.get_env(
|
||||
cross_comp_flags=True, cross_compilers=False, cross_path=True
|
||||
)
|
||||
self.set_configure_env(env)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def set_flatpak_buildsystem(self, module):
|
||||
super().set_flatpak_buildsystem( module)
|
||||
module['buildir'] = True
|
||||
super().set_flatpak_buildsystem(module)
|
||||
module["buildir"] = True
|
||||
|
||||
|
||||
class QMakeBuilder(MakeBuilder):
|
||||
qmake_targets = []
|
||||
flatpak_buildsystem = 'qmake'
|
||||
flatpak_buildsystem = "qmake"
|
||||
|
||||
@property
|
||||
def env_options(self):
|
||||
if 'QMAKE_CC' in os.environ:
|
||||
if "QMAKE_CC" in os.environ:
|
||||
yield f"QMAKE_CC={os.environ['QMAKE_CC']}"
|
||||
if 'QMAKE_CXX' in os.environ:
|
||||
if "QMAKE_CXX" in os.environ:
|
||||
yield f"QMAKE_CXX={os.environ['QMAKE_CXX']}"
|
||||
|
||||
def _configure(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
command = [
|
||||
"qmake",
|
||||
*self.configure_options,
|
||||
*self.env_options,
|
||||
self.source_path
|
||||
*self.configure_options,
|
||||
*self.env_options,
|
||||
self.source_path,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=True, cross_compilers=False, cross_path=True)
|
||||
env = self.get_env(
|
||||
cross_comp_flags=True, cross_compilers=False, cross_path=True
|
||||
)
|
||||
self.set_configure_env(env)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def _make_dist(self, context):
|
||||
command = [
|
||||
*neutralEnv('git_command'), "archive",
|
||||
"-o", f"{self.build_path}/{self.target_full_name()}.tar.gz",
|
||||
*neutralEnv("git_command"),
|
||||
"archive",
|
||||
"-o",
|
||||
f"{self.build_path}/{self.target_full_name()}.tar.gz",
|
||||
f"--prefix={self.target_full_name()}/",
|
||||
"HEAD"
|
||||
"HEAD",
|
||||
]
|
||||
run_command(command, self.source_path, context)
|
||||
|
||||
|
||||
|
||||
class MesonBuilder(Builder):
|
||||
configure_options = []
|
||||
test_options = []
|
||||
flatpak_buildsystem = 'meson'
|
||||
flatpak_buildsystem = "meson"
|
||||
|
||||
@property
|
||||
def build_type(self):
|
||||
return 'release' if option('make_release') else 'debug'
|
||||
return "release" if option("make_release") else "debug"
|
||||
|
||||
@property
|
||||
def strip_options(self):
|
||||
if option('make_release'):
|
||||
yield '--strip'
|
||||
if option("make_release"):
|
||||
yield "--strip"
|
||||
|
||||
@property
|
||||
def library_type(self):
|
||||
return 'static' if self.buildEnv.platformInfo.static else 'shared'
|
||||
return "static" if self.buildEnv.platformInfo.static else "shared"
|
||||
|
||||
def _configure(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
@ -508,47 +543,54 @@ class MesonBuilder(Builder):
|
||||
if not self.target.force_native_build and self.buildEnv.meson_crossfile:
|
||||
cross_options += ["--cross-file", self.buildEnv.meson_crossfile]
|
||||
command = [
|
||||
*neutralEnv('meson_command'),
|
||||
'.', self.build_path,
|
||||
f'--buildtype={self.build_type}',
|
||||
*neutralEnv("meson_command"),
|
||||
".",
|
||||
self.build_path,
|
||||
f"--buildtype={self.build_type}",
|
||||
*self.strip_options,
|
||||
f'--default-library={self.library_type}',
|
||||
f"--default-library={self.library_type}",
|
||||
*self.configure_options,
|
||||
f'--prefix={self.buildEnv.install_dir}',
|
||||
f'--libdir={self.buildEnv.libprefix}',
|
||||
*cross_options
|
||||
f"--prefix={self.buildEnv.install_dir}",
|
||||
f"--libdir={self.buildEnv.libprefix}",
|
||||
*cross_options,
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=False, cross_compilers=False, cross_path=True)
|
||||
env = self.get_env(
|
||||
cross_comp_flags=False, cross_compilers=False, cross_path=True
|
||||
)
|
||||
run_command(command, self.source_path, context, env=env)
|
||||
|
||||
def _compile(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
command = [*neutralEnv('ninja_command'), "-v"]
|
||||
env = self.get_env(cross_comp_flags=False, cross_compilers=False, cross_path=True)
|
||||
command = [*neutralEnv("ninja_command"), "-v"]
|
||||
env = self.get_env(
|
||||
cross_comp_flags=False, cross_compilers=False, cross_path=True
|
||||
)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def _test(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
if ( self.buildEnv.platformInfo.build == 'android'
|
||||
or (self.buildEnv.platformInfo.build != 'native'
|
||||
and not self.buildEnv.platformInfo.static)
|
||||
):
|
||||
if self.buildEnv.platformInfo.build == "android" or (
|
||||
self.buildEnv.platformInfo.build != "native"
|
||||
and not self.buildEnv.platformInfo.static
|
||||
):
|
||||
raise SkipCommand()
|
||||
command = [
|
||||
*neutralEnv('mesontest_command'),
|
||||
'--verbose',
|
||||
*self.test_options
|
||||
]
|
||||
env = self.get_env(cross_comp_flags=False, cross_compilers=False, cross_path=True)
|
||||
command = [*neutralEnv("mesontest_command"), "--verbose", *self.test_options]
|
||||
env = self.get_env(
|
||||
cross_comp_flags=False, cross_compilers=False, cross_path=True
|
||||
)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def _install(self, context):
|
||||
context.try_skip(self.build_path)
|
||||
command = [*neutralEnv('ninja_command'), '-v', 'install']
|
||||
env = self.get_env(cross_comp_flags=False, cross_compilers=False, cross_path=True)
|
||||
command = [*neutralEnv("ninja_command"), "-v", "install"]
|
||||
env = self.get_env(
|
||||
cross_comp_flags=False, cross_compilers=False, cross_path=True
|
||||
)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
||||
def _make_dist(self, context):
|
||||
command = [*neutralEnv('ninja_command'), "-v", "dist"]
|
||||
env = self.get_env(cross_comp_flags=False, cross_compilers=False, cross_path=True)
|
||||
command = [*neutralEnv("ninja_command"), "-v", "dist"]
|
||||
env = self.get_env(
|
||||
cross_comp_flags=False, cross_compilers=False, cross_path=True
|
||||
)
|
||||
run_command(command, self.build_path, context, env=env)
|
||||
|
Reference in New Issue
Block a user