import os import re import shutil import stat import struct import sys import sysconfig import warnings from email.generator import BytesGenerator, Generator from email.policy import EmailPolicy from glob import iglob from shutil import rmtree from zipfile import ZIP_DEFLATED, ZIP_STORED
import setuptools from setuptools import Command
from . import __version__ as wheel_version from .macosx_libfile import calculate_macosx_platform_tag from .metadata import pkginfo_to_metadata from .util import log from .vendored.packaging import tags from .vendored.packaging import version as _packaging_version from .wheelfile import WheelFile
def safe_name(name): """Convert an arbitrary string to a standard distribution name
Any runs of non-alphanumeric/. characters are replaced with a single '-'. """ return re.sub("[^A-Za-z0-9.]+", "-", name)
def safe_version(version): """
Convert an arbitrary string to a standard version string """ try: # normalize the version return str(_packaging_version.Version(version)) except _packaging_version.InvalidVersion:
version = version.replace(" ", ".") return re.sub("[^A-Za-z0-9.]+", "-", version)
def get_platform(archive_root): """Return our platform name 'win32', 'linux_x86_64'"""
result = sysconfig.get_platform() if result.startswith("macosx") and archive_root isnotNone:
result = calculate_macosx_platform_tag(archive_root, result) elif _is_32bit_interpreter(): if result == "linux-x86_64": # pip pull request #3497
result = "linux-i686" elif result == "linux-aarch64": # packaging pull request #234 # TODO armv8l, packaging pull request #690 => this did not land # in pip/packaging yet
result = "linux-armv7l"
return result.replace("-", "_")
def get_flag(var, fallback, expected=True, warn=True): """Use a fallback value for determining SOABI flags if the needed config
var is unset or unavailable."""
val = sysconfig.get_config_var(var) if val isNone: if warn:
warnings.warn(
f"Config variable '{var}' is unset, Python ABI tag may ""be incorrect",
RuntimeWarning,
stacklevel=2,
) return fallback return val == expected
def get_abi_tag(): """Return the ABI tag based on SOABI (if available) or emulate SOABI (PyPy2)."""
soabi = sysconfig.get_config_var("SOABI")
impl = tags.interpreter_name() ifnot soabi and impl in ("cp", "pp") and hasattr(sys, "maxunicode"):
d = ""
m = ""
u = "" if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")):
d = "d"
if get_flag( "WITH_PYMALLOC",
impl == "cp",
warn=(impl == "cp"and sys.version_info < (3, 8)),
) and sys.version_info < (3, 8):
m = "m"
abi = f"{impl}{tags.interpreter_version()}{d}{m}{u}" elif soabi and impl == "cp"and soabi.startswith("cpython"): # non-Windows
abi = "cp" + soabi.split("-")[1] elif soabi and impl == "cp"and soabi.startswith("cp"): # Windows
abi = soabi.split("-")[0] elif soabi and impl == "pp": # we want something like pypy36-pp73
abi = "-".join(soabi.split("-")[:2])
abi = abi.replace(".", "_").replace("-", "_") elif soabi and impl == "graalpy":
abi = "-".join(soabi.split("-")[:3])
abi = abi.replace(".", "_").replace("-", "_") elif soabi:
abi = soabi.replace(".", "_").replace("-", "_") else:
abi = None
user_options = [
("bdist-dir=", "b", "temporary directory for creating the distribution"),
( "plat-name=", "p", "platform name to embed in generated filenames " "(default: %s)" % get_platform(None),
),
( "keep-temp", "k", "keep the pseudo-installation tree around after " "creating the distribution archive",
),
("dist-dir=", "d", "directory to put final built distributions in"),
("skip-build", None, "skip rebuilding everything (for testing/debugging)"),
( "relative", None, "build the archive using relative paths ""(default: false)",
),
( "owner=", "u", "Owner name used when creating a tar file"" [default: current user]",
),
( "group=", "g", "Group name used when creating a tar file"" [default: current group]",
),
("universal", None, "make a universal wheel"" (default: false)"),
( "compression=", None, "zipfile compression (one of: {})"" (default: 'deflated')".format( ", ".join(supported_compressions)
),
),
( "python-tag=", None, "Python implementation compatibility tag" " (default: '%s')" % (python_tag()),
),
( "build-number=", None, "Build number for this particular version. " "As specified in PEP-0427, this must start with a digit. " "[default: None]",
),
( "py-limited-api=", None, "Python tag (cp32|cp33|cpNN) for abi3 wheel tag"" (default: false)",
),
]
self.root_is_pure = not (
self.distribution.has_ext_modules() or self.distribution.has_c_libraries()
)
if self.py_limited_api andnot re.match(
PY_LIMITED_API_PATTERN, self.py_limited_api
): raise ValueError("py-limited-api must match '%s'" % PY_LIMITED_API_PATTERN)
# Support legacy [wheel] section for setting universal
wheel = self.distribution.get_option_dict("wheel") if"universal"in wheel: # please don't define this in your global configs
log.warning( "The [wheel] section is deprecated. Use [bdist_wheel] instead.",
)
val = wheel["universal"][1].strip() if val.lower() in ("1", "true", "yes"):
self.universal = True
if self.build_number isnotNoneandnot self.build_number[:1].isdigit(): raise ValueError("Build tag (build-number) must start with a digit.")
@property def wheel_dist_name(self): """Return distribution full name with - replaced with _"""
components = (
safer_name(self.distribution.get_name()),
safer_version(self.distribution.get_version()),
) if self.build_number:
components += (self.build_number,) return"-".join(components)
def get_tag(self): # bdist sets self.plat_name if unset, we should only use it for purepy # wheels if the user supplied it. if self.plat_name_supplied:
plat_name = self.plat_name elif self.root_is_pure:
plat_name = "any" else: # macosx contains system version in platform name so need special handle if self.plat_name andnot self.plat_name.startswith("macosx"):
plat_name = self.plat_name else: # on macosx always limit the platform name to comply with any # c-extension modules in bdist_dir, since the user can specify # a higher MACOSX_DEPLOYMENT_TARGET via tools like CMake
# on other platforms, and on macosx if there are no c-extension # modules, use the default platform name.
plat_name = get_platform(self.bdist_dir)
if _is_32bit_interpreter(): if plat_name in ("linux-x86_64", "linux_x86_64"):
plat_name = "linux_i686" if plat_name in ("linux-aarch64", "linux_aarch64"): # TODO armv8l, packaging pull request #690 => this did not land # in pip/packaging yet
plat_name = "linux_armv7l"
# A wheel without setuptools scripts is more cross-platform. # Use the (undocumented) `no_ep` option to setuptools' # install_scripts command to avoid creating entry point scripts.
install_scripts = self.reinitialize_command("install_scripts")
install_scripts.no_ep = True
# Use a custom scheme for the archive, because we have to decide # at installation time which scheme to use. for key in ("headers", "scripts", "data", "purelib", "platlib"):
setattr(install, "install_" + key, os.path.join(self.data_dir, key))
basedir_observed = ""
if os.name == "nt": # win32 barfs if any of these are ''; could be '.'? # (distutils.command.install:change_roots bug)
basedir_observed = os.path.normpath(os.path.join(self.data_dir, ".."))
self.install_libbase = self.install_lib = basedir_observed
# Make the archive ifnot os.path.exists(self.dist_dir):
os.makedirs(self.dist_dir)
wheel_path = os.path.join(self.dist_dir, archive_basename + ".whl") with WheelFile(wheel_path, "w", self.compression) as wf:
wf.write_files(archive_root)
# Add to 'Distribution.dist_files' so that the "upload" command works
getattr(self.distribution, "dist_files", []).append(
( "bdist_wheel", "{}.{}".format(*sys.version_info[:2]), # like 3.7
wheel_path,
)
)
msg = Message()
msg["Wheel-Version"] = "1.0"# of the spec
msg["Generator"] = generator
msg["Root-Is-Purelib"] = str(self.root_is_pure).lower() if self.build_number isnotNone:
msg["Build"] = self.build_number
# Doesn't work for bdist_wininst
impl_tag, abi_tag, plat_tag = self.get_tag() for impl in impl_tag.split("."): for abi in abi_tag.split("."): for plat in plat_tag.split("."):
msg["Tag"] = "-".join((impl, abi, plat))
wheelfile_path = os.path.join(wheelfile_base, "WHEEL")
log.info(f"creating {wheelfile_path}") with open(wheelfile_path, "wb") as f:
BytesGenerator(f, maxheaderlen=0).flatten(msg)
@property def license_paths(self): if setuptools_major_version >= 57: # Setuptools has resolved any patterns to actual file names return self.distribution.metadata.license_files or ()
files = set()
metadata = self.distribution.get_option_dict("metadata") if setuptools_major_version >= 42: # Setuptools recognizes the license_files option but does not do globbing
patterns = self.distribution.metadata.license_files else: # Prior to those, wheel is entirely responsible for handling license files if"license_files"in metadata:
patterns = metadata["license_files"][1].split() else:
patterns = ()
if"license_file"in metadata:
warnings.warn( 'The "license_file" option is deprecated. Use "license_files" instead.',
DeprecationWarning,
stacklevel=2,
)
files.add(metadata["license_file"][1])
for pattern in patterns: for path in iglob(pattern): if path.endswith("~"):
log.debug(
f'ignoring license file "{path}" as it looks like a backup'
) continue
if path notin files and os.path.isfile(path):
log.info(
f'adding license file "{path}" (matched pattern "{pattern}")'
)
files.add(path)
return files
def egg2dist(self, egginfo_path, distinfo_path): """Convert an .egg-info directory into a .dist-info directory"""
def adios(p): """Appropriately delete directory, file or link.""" if os.path.exists(p) andnot os.path.islink(p) and os.path.isdir(p):
shutil.rmtree(p) elif os.path.exists(p):
os.unlink(p)
adios(distinfo_path)
ifnot os.path.exists(egginfo_path): # There is no egg-info. This is probably because the egg-info # file/directory is not named matching the distribution name used # to name the archive file. Check for this case and report # accordingly. import glob
pat = os.path.join(os.path.dirname(egginfo_path), "*.egg-info")
possible = glob.glob(pat)
err = f"Egg metadata expected at {egginfo_path} but not found" if possible:
alt = os.path.basename(possible[0])
err += f" ({alt} found - possible misnamed archive file?)"
raise ValueError(err)
if os.path.isfile(egginfo_path): # .egg-info is a single file
pkginfo_path = egginfo_path
pkg_info = pkginfo_to_metadata(egginfo_path, egginfo_path)
os.mkdir(distinfo_path) else: # .egg-info is a directory
pkginfo_path = os.path.join(egginfo_path, "PKG-INFO")
pkg_info = pkginfo_to_metadata(egginfo_path, pkginfo_path)
# ignore common egg metadata that is useless to wheel
shutil.copytree(
egginfo_path,
distinfo_path,
ignore=lambda x, y: { "PKG-INFO", "requires.txt", "SOURCES.txt", "not-zip-safe",
},
)
# delete dependency_links if it is only whitespace
dependency_links_path = os.path.join(distinfo_path, "dependency_links.txt") with open(dependency_links_path, encoding="utf-8") as dependency_links_file:
dependency_links = dependency_links_file.read().strip() ifnot dependency_links:
adios(dependency_links_path)
pkg_info_path = os.path.join(distinfo_path, "METADATA")
serialization_policy = EmailPolicy(
utf8=True,
mangle_from_=False,
max_line_length=0,
) with open(pkg_info_path, "w", encoding="utf-8") as out:
Generator(out, policy=serialization_policy).flatten(pkg_info)
for license_path in self.license_paths:
filename = os.path.basename(license_path)
shutil.copy(license_path, os.path.join(distinfo_path, filename))
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.