Spaces:
Build error
Build error
File size: 14,227 Bytes
60e3a80 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
# SPDX-License-Identifier: MIT
from __future__ import annotations
import argparse
import contextlib
import contextvars
import os
import platform
import shutil
import subprocess
import sys
import tempfile
import textwrap
import traceback
import warnings
from collections.abc import Iterator, Sequence
from functools import partial
from typing import NoReturn, TextIO
import build
from . import ProjectBuilder, _ctx
from . import env as _env
from ._exceptions import BuildBackendException, BuildException, FailedProcessError
from ._types import ConfigSettings, Distribution, StrPath
from .env import DefaultIsolatedEnv
_COLORS = {
'red': '\33[91m',
'green': '\33[92m',
'yellow': '\33[93m',
'bold': '\33[1m',
'dim': '\33[2m',
'underline': '\33[4m',
'reset': '\33[0m',
}
_NO_COLORS = {color: '' for color in _COLORS}
_styles = contextvars.ContextVar('_styles', default=_COLORS)
def _init_colors() -> None:
if 'NO_COLOR' in os.environ:
if 'FORCE_COLOR' in os.environ:
warnings.warn('Both NO_COLOR and FORCE_COLOR environment variables are set, disabling color', stacklevel=2)
_styles.set(_NO_COLORS)
elif 'FORCE_COLOR' in os.environ or sys.stdout.isatty():
return
_styles.set(_NO_COLORS)
def _cprint(fmt: str = '', msg: str = '', file: TextIO | None = None) -> None:
print(fmt.format(msg, **_styles.get()), file=file, flush=True)
def _showwarning(
message: Warning | str,
category: type[Warning],
filename: str,
lineno: int,
file: TextIO | None = None,
line: str | None = None,
) -> None: # pragma: no cover
_cprint('{yellow}WARNING{reset} {}', str(message))
_max_terminal_width = shutil.get_terminal_size().columns - 2
if _max_terminal_width <= 0:
_max_terminal_width = 78
_fill = partial(textwrap.fill, subsequent_indent=' ', width=_max_terminal_width)
def _log(message: str, *, origin: tuple[str, ...] | None = None) -> None:
if origin is None:
(first, *rest) = message.splitlines()
_cprint('{bold}{}{reset}', _fill(first, initial_indent='* '))
for line in rest:
print(_fill(line, initial_indent=' '))
elif origin[0] == 'subprocess':
initial_indent = '> ' if origin[1] == 'cmd' else '< '
file = sys.stderr if origin[1] == 'stderr' else None
for line in message.splitlines():
_cprint('{dim}{}{reset}', _fill(line, initial_indent=initial_indent), file=file)
def _setup_cli(*, verbosity: int) -> None:
warnings.showwarning = _showwarning
if platform.system() == 'Windows':
try:
import colorama
colorama.init()
except ModuleNotFoundError:
pass
_init_colors()
_ctx.LOGGER.set(_log)
_ctx.VERBOSITY.set(verbosity)
def _error(msg: str, code: int = 1) -> NoReturn: # pragma: no cover
"""
Print an error message and exit. Will color the output when writing to a TTY.
:param msg: Error message
:param code: Error code
"""
_cprint('{red}ERROR{reset} {}', msg)
raise SystemExit(code)
def _format_dep_chain(dep_chain: Sequence[str]) -> str:
return ' -> '.join(dep.partition(';')[0].strip() for dep in dep_chain)
def _build_in_isolated_env(
srcdir: StrPath,
outdir: StrPath,
distribution: Distribution,
config_settings: ConfigSettings | None,
installer: _env.Installer,
) -> str:
with DefaultIsolatedEnv(installer=installer) as env:
builder = ProjectBuilder.from_isolated_env(env, srcdir)
# first install the build dependencies
env.install(builder.build_system_requires)
# then get the extra required dependencies from the backend (which was installed in the call above :P)
env.install(builder.get_requires_for_build(distribution, config_settings or {}))
return builder.build(distribution, outdir, config_settings or {})
def _build_in_current_env(
srcdir: StrPath,
outdir: StrPath,
distribution: Distribution,
config_settings: ConfigSettings | None,
skip_dependency_check: bool = False,
) -> str:
builder = ProjectBuilder(srcdir)
if not skip_dependency_check:
missing = builder.check_dependencies(distribution, config_settings or {})
if missing:
dependencies = ''.join('\n\t' + dep for deps in missing for dep in (deps[0], _format_dep_chain(deps[1:])) if dep)
_cprint()
_error(f'Missing dependencies:{dependencies}')
return builder.build(distribution, outdir, config_settings or {})
def _build(
isolation: bool,
srcdir: StrPath,
outdir: StrPath,
distribution: Distribution,
config_settings: ConfigSettings | None,
skip_dependency_check: bool,
installer: _env.Installer,
) -> str:
if isolation:
return _build_in_isolated_env(srcdir, outdir, distribution, config_settings, installer)
else:
return _build_in_current_env(srcdir, outdir, distribution, config_settings, skip_dependency_check)
@contextlib.contextmanager
def _handle_build_error() -> Iterator[None]:
try:
yield
except (BuildException, FailedProcessError) as e:
_error(str(e))
except BuildBackendException as e:
if isinstance(e.exception, subprocess.CalledProcessError):
_cprint()
_error(str(e))
if e.exc_info:
tb_lines = traceback.format_exception(
e.exc_info[0],
e.exc_info[1],
e.exc_info[2],
limit=-1,
)
tb = ''.join(tb_lines)
else:
tb = traceback.format_exc(-1)
_cprint('\n{dim}{}{reset}\n', tb.strip('\n'))
_error(str(e))
except Exception as e: # pragma: no cover
tb = traceback.format_exc().strip('\n')
_cprint('\n{dim}{}{reset}\n', tb)
_error(str(e))
def _natural_language_list(elements: Sequence[str]) -> str:
if len(elements) == 0:
msg = 'no elements'
raise IndexError(msg)
elif len(elements) == 1:
return elements[0]
else:
return '{} and {}'.format(
', '.join(elements[:-1]),
elements[-1],
)
def build_package(
srcdir: StrPath,
outdir: StrPath,
distributions: Sequence[Distribution],
config_settings: ConfigSettings | None = None,
isolation: bool = True,
skip_dependency_check: bool = False,
installer: _env.Installer = 'pip',
) -> Sequence[str]:
"""
Run the build process.
:param srcdir: Source directory
:param outdir: Output directory
:param distribution: Distribution to build (sdist or wheel)
:param config_settings: Configuration settings to be passed to the backend
:param isolation: Isolate the build in a separate environment
:param skip_dependency_check: Do not perform the dependency check
"""
built: list[str] = []
for distribution in distributions:
out = _build(isolation, srcdir, outdir, distribution, config_settings, skip_dependency_check, installer)
built.append(os.path.basename(out))
return built
def build_package_via_sdist(
srcdir: StrPath,
outdir: StrPath,
distributions: Sequence[Distribution],
config_settings: ConfigSettings | None = None,
isolation: bool = True,
skip_dependency_check: bool = False,
installer: _env.Installer = 'pip',
) -> Sequence[str]:
"""
Build a sdist and then the specified distributions from it.
:param srcdir: Source directory
:param outdir: Output directory
:param distribution: Distribution to build (only wheel)
:param config_settings: Configuration settings to be passed to the backend
:param isolation: Isolate the build in a separate environment
:param skip_dependency_check: Do not perform the dependency check
"""
from ._compat import tarfile
if 'sdist' in distributions:
msg = 'Only binary distributions are allowed but sdist was specified'
raise ValueError(msg)
sdist = _build(isolation, srcdir, outdir, 'sdist', config_settings, skip_dependency_check, installer)
sdist_name = os.path.basename(sdist)
sdist_out = tempfile.mkdtemp(prefix='build-via-sdist-')
built: list[str] = []
if distributions:
# extract sdist
with tarfile.TarFile.open(sdist) as t:
t.extractall(sdist_out)
try:
_ctx.log(f'Building {_natural_language_list(distributions)} from sdist')
srcdir = os.path.join(sdist_out, sdist_name[: -len('.tar.gz')])
for distribution in distributions:
out = _build(isolation, srcdir, outdir, distribution, config_settings, skip_dependency_check, installer)
built.append(os.path.basename(out))
finally:
shutil.rmtree(sdist_out, ignore_errors=True)
return [sdist_name, *built]
def main_parser() -> argparse.ArgumentParser:
"""
Construct the main parser.
"""
parser = argparse.ArgumentParser(
description=textwrap.indent(
textwrap.dedent(
"""
A simple, correct Python build frontend.
By default, a source distribution (sdist) is built from {srcdir}
and a binary distribution (wheel) is built from the sdist.
This is recommended as it will ensure the sdist can be used
to build wheels.
Pass -s/--sdist and/or -w/--wheel to build a specific distribution.
If you do this, the default behavior will be disabled, and all
artifacts will be built from {srcdir} (even if you combine
-w/--wheel with -s/--sdist, the wheel will be built from {srcdir}).
"""
).strip(),
' ',
),
# Prevent argparse from taking up the entire width of the terminal window
# which impedes readability.
formatter_class=partial(argparse.RawDescriptionHelpFormatter, width=min(_max_terminal_width, 127)),
)
parser.add_argument(
'srcdir',
type=str,
nargs='?',
default=os.getcwd(),
help='source directory (defaults to current directory)',
)
parser.add_argument(
'--version',
'-V',
action='version',
version=f"build {build.__version__} ({','.join(build.__path__)})",
)
parser.add_argument(
'--verbose',
'-v',
dest='verbosity',
action='count',
default=0,
help='increase verbosity',
)
parser.add_argument(
'--sdist',
'-s',
dest='distributions',
action='append_const',
const='sdist',
help='build a source distribution (disables the default behavior)',
)
parser.add_argument(
'--wheel',
'-w',
dest='distributions',
action='append_const',
const='wheel',
help='build a wheel (disables the default behavior)',
)
parser.add_argument(
'--outdir',
'-o',
type=str,
help=f'output directory (defaults to {{srcdir}}{os.sep}dist)',
metavar='PATH',
)
parser.add_argument(
'--skip-dependency-check',
'-x',
action='store_true',
help='do not check that build dependencies are installed',
)
env_group = parser.add_mutually_exclusive_group()
env_group.add_argument(
'--no-isolation',
'-n',
action='store_true',
help='disable building the project in an isolated virtual environment. '
'Build dependencies must be installed separately when this option is used',
)
env_group.add_argument(
'--installer',
choices=_env.INSTALLERS,
help='Python package installer to use (defaults to pip)',
)
parser.add_argument(
'--config-setting',
'-C',
dest='config_settings',
action='append',
help='settings to pass to the backend. Multiple settings can be provided. '
'Settings beginning with a hyphen will erroneously be interpreted as options to build if separated '
'by a space character; use ``--config-setting=--my-setting -C--my-other-setting``',
metavar='KEY[=VALUE]',
)
return parser
def main(cli_args: Sequence[str], prog: str | None = None) -> None:
"""
Parse the CLI arguments and invoke the build process.
:param cli_args: CLI arguments
:param prog: Program name to show in help text
"""
parser = main_parser()
if prog:
parser.prog = prog
args = parser.parse_args(cli_args)
_setup_cli(verbosity=args.verbosity)
config_settings = {}
if args.config_settings:
for arg in args.config_settings:
setting, _, value = arg.partition('=')
if setting not in config_settings:
config_settings[setting] = value
else:
if not isinstance(config_settings[setting], list):
config_settings[setting] = [config_settings[setting]]
config_settings[setting].append(value)
# outdir is relative to srcdir only if omitted.
outdir = os.path.join(args.srcdir, 'dist') if args.outdir is None else args.outdir
distributions: list[Distribution] = args.distributions
if distributions:
build_call = build_package
else:
build_call = build_package_via_sdist
distributions = ['wheel']
with _handle_build_error():
built = build_call(
args.srcdir,
outdir,
distributions,
config_settings,
not args.no_isolation,
args.skip_dependency_check,
args.installer,
)
artifact_list = _natural_language_list(
['{underline}{}{reset}{bold}{green}'.format(artifact, **_styles.get()) for artifact in built]
)
_cprint('{bold}{green}Successfully built {}{reset}', artifact_list)
def entrypoint() -> None:
main(sys.argv[1:])
if __name__ == '__main__': # pragma: no cover
main(sys.argv[1:], 'python -m build')
__all__ = [
'main',
'main_parser',
]
|