File size: 28,650 Bytes
d439dc1 | 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 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 | import configparser
import functools
import hashlib
from io import BytesIO
import logging
import os
from pathlib import Path
import platform
import shlex
import shutil
import subprocess
import sys
import sysconfig
import tarfile
from tempfile import TemporaryDirectory
import textwrap
import urllib.request
from pybind11.setup_helpers import Pybind11Extension
from setuptools import Distribution, Extension
_log = logging.getLogger(__name__)
def _get_xdg_cache_dir():
"""
Return the `XDG cache directory`__.
__ https://specifications.freedesktop.org/basedir-spec/latest/
"""
cache_dir = os.environ.get('XDG_CACHE_HOME')
if not cache_dir:
cache_dir = os.path.expanduser('~/.cache')
if cache_dir.startswith('~/'): # Expansion failed.
return None
return Path(cache_dir, 'matplotlib')
def _get_hash(data):
"""Compute the sha256 hash of *data*."""
hasher = hashlib.sha256()
hasher.update(data)
return hasher.hexdigest()
@functools.cache
def _get_ssl_context():
import certifi
import ssl
return ssl.create_default_context(cafile=certifi.where())
def get_from_cache_or_download(url, sha):
"""
Get bytes from the given url or local cache.
Parameters
----------
url : str
The url to download.
sha : str
The sha256 of the file.
Returns
-------
BytesIO
The file loaded into memory.
"""
cache_dir = _get_xdg_cache_dir()
if cache_dir is not None: # Try to read from cache.
try:
data = (cache_dir / sha).read_bytes()
except OSError:
pass
else:
if _get_hash(data) == sha:
return BytesIO(data)
# jQueryUI's website blocks direct downloads from urllib.request's
# default User-Agent, but not (for example) wget; so I don't feel too
# bad passing in an empty User-Agent.
with urllib.request.urlopen(
urllib.request.Request(url, headers={"User-Agent": ""}),
context=_get_ssl_context()) as req:
data = req.read()
file_sha = _get_hash(data)
if file_sha != sha:
raise Exception(
f"The downloaded file does not match the expected sha. {url} was "
f"expected to have {sha} but it had {file_sha}")
if cache_dir is not None: # Try to cache the downloaded file.
try:
cache_dir.mkdir(parents=True, exist_ok=True)
with open(cache_dir / sha, "xb") as fout:
fout.write(data)
except OSError:
pass
return BytesIO(data)
def get_and_extract_tarball(urls, sha, dirname):
"""
Obtain a tarball (from cache or download) and extract it.
Parameters
----------
urls : list[str]
URLs from which download is attempted (in order of attempt), if the
tarball is not in the cache yet.
sha : str
SHA256 hash of the tarball; used both as a cache key (by
`get_from_cache_or_download`) and to validate a downloaded tarball.
dirname : path-like
Directory where the tarball is extracted.
"""
toplevel = Path("build", dirname)
if not toplevel.exists(): # Download it or load it from cache.
try:
import certifi # noqa
except ImportError as e:
raise ImportError(
f"`certifi` is unavailable ({e}) so unable to download any of "
f"the following: {urls}.") from None
Path("build").mkdir(exist_ok=True)
for url in urls:
try:
tar_contents = get_from_cache_or_download(url, sha)
break
except Exception:
pass
else:
raise OSError(
f"Failed to download any of the following: {urls}. "
f"Please download one of these urls and extract it into "
f"'build/' at the top-level of the source repository.")
print(f"Extracting {urllib.parse.urlparse(url).path}")
with tarfile.open(fileobj=tar_contents, mode="r:gz") as tgz:
if os.path.commonpath(tgz.getnames()) != dirname:
raise OSError(
f"The downloaded tgz file was expected to have {dirname} "
f"as sole top-level directory, but that is not the case")
tgz.extractall("build")
return toplevel
# SHA256 hashes of the FreeType tarballs
_freetype_hashes = {
'2.6.1':
'0a3c7dfbda6da1e8fce29232e8e96d987ababbbf71ebc8c75659e4132c367014',
'2.6.2':
'8da42fc4904e600be4b692555ae1dcbf532897da9c5b9fb5ebd3758c77e5c2d4',
'2.6.3':
'7942096c40ee6fea882bd4207667ad3f24bff568b96b10fd3885e11a7baad9a3',
'2.6.4':
'27f0e38347a1850ad57f84fc4dfed68ba0bc30c96a6fa6138ef84d485dd9a8d7',
'2.6.5':
'3bb24add9b9ec53636a63ea8e867ed978c4f8fdd8f1fa5ccfd41171163d4249a',
'2.7':
'7b657d5f872b0ab56461f3bd310bd1c5ec64619bd15f0d8e08282d494d9cfea4',
'2.7.1':
'162ef25aa64480b1189cdb261228e6c5c44f212aac4b4621e28cf2157efb59f5',
'2.8':
'33a28fabac471891d0523033e99c0005b95e5618dc8ffa7fa47f9dadcacb1c9b',
'2.8.1':
'876711d064a6a1bd74beb18dd37f219af26100f72daaebd2d86cb493d7cd7ec6',
'2.9':
'bf380e4d7c4f3b5b1c1a7b2bf3abb967bda5e9ab480d0df656e0e08c5019c5e6',
'2.9.1':
'ec391504e55498adceb30baceebd147a6e963f636eb617424bcfc47a169898ce',
'2.10.0':
'955e17244e9b38adb0c98df66abb50467312e6bb70eac07e49ce6bd1a20e809a',
'2.10.1':
'3a60d391fd579440561bf0e7f31af2222bc610ad6ce4d9d7bd2165bca8669110',
'2.11.1':
'f8db94d307e9c54961b39a1cc799a67d46681480696ed72ecf78d4473770f09b'
}
# This is the version of FreeType to use when building a local version. It
# must match the value in lib/matplotlib.__init__.py, and the cache path in
# `.circleci/config.yml`. Also update the docs in
# `docs/devel/dependencies.rst`.
TESTING_VERSION_OF_FREETYPE = '2.6.1'
if sys.platform.startswith('win') and platform.machine() == 'ARM64':
# older versions of freetype are not supported for win/arm64
# Matplotlib tests will not pass
LOCAL_FREETYPE_VERSION = '2.11.1'
else:
LOCAL_FREETYPE_VERSION = TESTING_VERSION_OF_FREETYPE
LOCAL_FREETYPE_HASH = _freetype_hashes.get(LOCAL_FREETYPE_VERSION, 'unknown')
# Also update the cache path in `.circleci/config.yml`.
# Also update the docs in `docs/devel/dependencies.rst`.
LOCAL_QHULL_VERSION = '2020.2'
LOCAL_QHULL_HASH = (
'b5c2d7eb833278881b952c8a52d20179eab87766b00b865000469a45c1838b7e')
# Matplotlib build options, which can be altered using mplsetup.cfg
mplsetup_cfg = os.environ.get('MPLSETUPCFG') or 'mplsetup.cfg'
config = configparser.ConfigParser()
if os.path.exists(mplsetup_cfg):
config.read(mplsetup_cfg)
options = {
'backend': config.get('rc_options', 'backend', fallback=None),
'system_freetype': config.getboolean(
'libs', 'system_freetype',
fallback=sys.platform.startswith(('aix', 'os400'))
),
'system_qhull': config.getboolean(
'libs', 'system_qhull', fallback=sys.platform.startswith('os400')
),
}
if '-q' in sys.argv or '--quiet' in sys.argv:
def print_raw(*args, **kwargs): pass # Suppress our own output.
else:
print_raw = print
def print_status(package, status):
initial_indent = "%12s: " % package
indent = ' ' * 18
print_raw(textwrap.fill(status, width=80,
initial_indent=initial_indent,
subsequent_indent=indent))
@functools.cache # We only need to compute this once.
def get_pkg_config():
"""
Get path to pkg-config and set up the PKG_CONFIG environment variable.
"""
if sys.platform == 'win32':
return None
pkg_config = os.environ.get('PKG_CONFIG') or 'pkg-config'
if shutil.which(pkg_config) is None:
print(
"IMPORTANT WARNING:\n"
" pkg-config is not installed.\n"
" Matplotlib may not be able to find some of its dependencies.")
return None
pkg_config_path = sysconfig.get_config_var('LIBDIR')
if pkg_config_path is not None:
pkg_config_path = os.path.join(pkg_config_path, 'pkgconfig')
try:
os.environ['PKG_CONFIG_PATH'] += ':' + pkg_config_path
except KeyError:
os.environ['PKG_CONFIG_PATH'] = pkg_config_path
return pkg_config
def pkg_config_setup_extension(
ext, package,
atleast_version=None, alt_exec=None, default_libraries=()):
"""Add parameters to the given *ext* for the given *package*."""
# First, try to get the flags from pkg-config.
pkg_config = get_pkg_config()
cmd = [pkg_config, package] if pkg_config else alt_exec
if cmd is not None:
try:
if pkg_config and atleast_version:
subprocess.check_call(
[*cmd, f"--atleast-version={atleast_version}"])
# Use sys.getfilesystemencoding() to allow round-tripping
# when passed back to later subprocess calls; do not use
# locale.getpreferredencoding() which universal_newlines=True
# would do.
cflags = shlex.split(
os.fsdecode(subprocess.check_output([*cmd, "--cflags"])))
libs = shlex.split(
os.fsdecode(subprocess.check_output([*cmd, "--libs"])))
except (OSError, subprocess.CalledProcessError):
pass
else:
ext.extra_compile_args.extend(cflags)
ext.extra_link_args.extend(libs)
return
# If that fails, fall back on the defaults.
# conda Windows header and library paths.
# https://github.com/conda/conda/issues/2312 re: getting the env dir.
if sys.platform == 'win32':
conda_env_path = (os.getenv('CONDA_PREFIX') # conda >= 4.1
or os.getenv('CONDA_DEFAULT_ENV')) # conda < 4.1
if conda_env_path and os.path.isdir(conda_env_path):
conda_env_path = Path(conda_env_path)
ext.include_dirs.append(str(conda_env_path / "Library/include"))
ext.library_dirs.append(str(conda_env_path / "Library/lib"))
# Default linked libs.
ext.libraries.extend(default_libraries)
class Skipped(Exception):
"""
Exception thrown by `SetupPackage.check` to indicate that a package should
be skipped.
"""
class SetupPackage:
def check(self):
"""
If the package should be installed, return an informative string, or
None if no information should be displayed at all.
If the package should be skipped, raise a `Skipped` exception.
If a missing build dependency is fatal, call `sys.exit`.
"""
def get_package_data(self):
"""
Get a package data dictionary to add to the configuration.
These are merged into to the *package_data* list passed to
`setuptools.setup`.
"""
return {}
def get_extensions(self):
"""
Return or yield a list of C extensions (`distutils.core.Extension`
objects) to add to the configuration. These are added to the
*extensions* list passed to `setuptools.setup`.
"""
return []
def do_custom_build(self, env):
"""
If a package needs to do extra custom things, such as building a
third-party library, before building an extension, it should
override this method.
"""
class OptionalPackage(SetupPackage):
default_config = True
def check(self):
"""
Check whether ``mplsetup.cfg`` requests this package to be installed.
May be overridden by subclasses for additional checks.
"""
if config.getboolean("packages", self.name,
fallback=self.default_config):
return "installing"
else: # Configuration opt-out by user
raise Skipped("skipping due to configuration")
class Platform(SetupPackage):
name = "platform"
def check(self):
return sys.platform
class Python(SetupPackage):
name = "python"
def check(self):
return sys.version
def _pkg_data_helper(pkg, subdir):
"""Glob "lib/$pkg/$subdir/**/*", returning paths relative to "lib/$pkg"."""
base = Path("lib", pkg)
return [str(path.relative_to(base)) for path in (base / subdir).rglob("*")]
class Matplotlib(SetupPackage):
name = "matplotlib"
def get_package_data(self):
return {
'matplotlib': [
'mpl-data/matplotlibrc',
*_pkg_data_helper('matplotlib', 'mpl-data'),
*_pkg_data_helper('matplotlib', 'backends/web_backend'),
'*.dll', # Only actually matters on Windows.
],
}
def get_extensions(self):
# agg
ext = Extension(
"matplotlib.backends._backend_agg", [
"src/py_converters.cpp",
"src/_backend_agg.cpp",
"src/_backend_agg_wrapper.cpp",
])
add_numpy_flags(ext)
add_libagg_flags_and_sources(ext)
FreeType.add_flags(ext)
yield ext
# c_internal_utils
ext = Extension(
"matplotlib._c_internal_utils", ["src/_c_internal_utils.c"],
libraries=({
"linux": ["dl"],
"win32": ["ole32", "shell32", "user32"],
}.get(sys.platform, [])))
yield ext
# ft2font
ext = Extension(
"matplotlib.ft2font", [
"src/ft2font.cpp",
"src/ft2font_wrapper.cpp",
"src/py_converters.cpp",
])
FreeType.add_flags(ext)
add_numpy_flags(ext)
add_libagg_flags(ext)
yield ext
# image
ext = Extension(
"matplotlib._image", [
"src/_image_wrapper.cpp",
"src/py_converters.cpp",
])
add_numpy_flags(ext)
add_libagg_flags_and_sources(ext)
yield ext
# path
ext = Extension(
"matplotlib._path", [
"src/py_converters.cpp",
"src/_path_wrapper.cpp",
])
add_numpy_flags(ext)
add_libagg_flags_and_sources(ext)
yield ext
# qhull
ext = Extension(
"matplotlib._qhull", ["src/_qhull_wrapper.cpp"],
define_macros=[("MPL_DEVNULL", os.devnull)])
add_numpy_flags(ext)
Qhull.add_flags(ext)
yield ext
# tkagg
ext = Extension(
"matplotlib.backends._tkagg", [
"src/_tkagg.cpp",
],
include_dirs=["src"],
# psapi library needed for finding Tcl/Tk at run time.
libraries={"linux": ["dl"], "win32": ["comctl32", "psapi"],
"cygwin": ["comctl32", "psapi"]}.get(sys.platform, []),
extra_link_args={"win32": ["-mwindows"]}.get(sys.platform, []))
add_numpy_flags(ext)
add_libagg_flags(ext)
yield ext
# tri
ext = Pybind11Extension(
"matplotlib._tri", [
"src/tri/_tri.cpp",
"src/tri/_tri_wrapper.cpp",
],
cxx_std=11)
yield ext
# ttconv
ext = Pybind11Extension(
"matplotlib._ttconv", [
"src/_ttconv.cpp",
"extern/ttconv/pprdrv_tt.cpp",
"extern/ttconv/pprdrv_tt2.cpp",
"extern/ttconv/ttutil.cpp",
],
include_dirs=["extern"],
cxx_std=11)
yield ext
class Tests(OptionalPackage):
name = "tests"
default_config = False
def get_package_data(self):
return {
'matplotlib': [
*_pkg_data_helper('matplotlib', 'tests/baseline_images'),
*_pkg_data_helper('matplotlib', 'tests/tinypages'),
'tests/cmr10.pfb',
'tests/Courier10PitchBT-Bold.pfb',
'tests/mpltest.ttf',
'tests/test_*.ipynb',
],
'mpl_toolkits': [
*_pkg_data_helper('mpl_toolkits',
'axes_grid1/tests/baseline_images'),
*_pkg_data_helper('mpl_toolkits',
'axisartist/tests/baseline_images'),
*_pkg_data_helper('mpl_toolkits',
'mplot3d/tests/baseline_images'),
]
}
def add_numpy_flags(ext):
import numpy as np
ext.include_dirs.append(np.get_include())
ext.define_macros.extend([
# Ensure that PY_ARRAY_UNIQUE_SYMBOL is uniquely defined for each
# extension.
('PY_ARRAY_UNIQUE_SYMBOL',
'MPL_' + ext.name.replace('.', '_') + '_ARRAY_API'),
('NPY_NO_DEPRECATED_API', 'NPY_1_7_API_VERSION'),
# Allow NumPy's printf format specifiers in C++.
('__STDC_FORMAT_MACROS', 1),
])
def add_libagg_flags(ext):
# We need a patched Agg not available elsewhere, so always use the vendored
# version.
ext.include_dirs.insert(0, "extern/agg24-svn/include")
def add_libagg_flags_and_sources(ext):
# We need a patched Agg not available elsewhere, so always use the vendored
# version.
ext.include_dirs.insert(0, "extern/agg24-svn/include")
agg_sources = [
"agg_bezier_arc.cpp",
"agg_curves.cpp",
"agg_image_filters.cpp",
"agg_trans_affine.cpp",
"agg_vcgen_contour.cpp",
"agg_vcgen_dash.cpp",
"agg_vcgen_stroke.cpp",
"agg_vpgen_segmentator.cpp",
]
ext.sources.extend(
os.path.join("extern", "agg24-svn", "src", x) for x in agg_sources)
def get_ccompiler():
"""
Return a new CCompiler instance.
CCompiler used to be constructible via `distutils.ccompiler.new_compiler`,
but this API was removed as part of the distutils deprecation. Instead,
we trick setuptools into instantiating it by creating a dummy Distribution
with a list of extension modules that claims to be truthy, but is actually
empty, and then running the Distribution's build_ext command. (If using
a plain empty ext_modules, build_ext would early-return without doing
anything.)
"""
class L(list):
def __bool__(self):
return True
build_ext = Distribution({"ext_modules": L()}).get_command_obj("build_ext")
build_ext.finalize_options()
build_ext.run()
return build_ext.compiler
class FreeType(SetupPackage):
name = "freetype"
@classmethod
def add_flags(cls, ext):
# checkdep_freetype2.c immediately aborts the compilation either with
# "foo.h: No such file or directory" if the header is not found, or an
# appropriate error message if the header indicates a too-old version.
ext.sources.insert(0, 'src/checkdep_freetype2.c')
if options.get('system_freetype'):
pkg_config_setup_extension(
# FreeType 2.3 has libtool version 9.11.3 as can be checked
# from the tarball. For FreeType>=2.4, there is a conversion
# table in docs/VERSIONS.txt in the FreeType source tree.
ext, 'freetype2',
atleast_version='9.11.3',
alt_exec=['freetype-config'],
default_libraries=['freetype'])
ext.define_macros.append(('FREETYPE_BUILD_TYPE', 'system'))
else:
src_path = Path('build', f'freetype-{LOCAL_FREETYPE_VERSION}')
# Statically link to the locally-built freetype.
ext.include_dirs.insert(0, str(src_path / 'include'))
ext.extra_objects.insert(
0, str((src_path / 'objs/.libs/libfreetype').with_suffix(
'.lib' if sys.platform == 'win32' else '.a')))
ext.define_macros.append(('FREETYPE_BUILD_TYPE', 'local'))
if sys.platform == 'darwin':
name = ext.name.split('.')[-1]
ext.extra_link_args.append(
f'-Wl,-exported_symbol,_PyInit_{name}')
def do_custom_build(self, env):
# We're using a system freetype
if options.get('system_freetype'):
return
tarball = f'freetype-{LOCAL_FREETYPE_VERSION}.tar.gz'
src_path = get_and_extract_tarball(
urls=[
(f'https://downloads.sourceforge.net/project/freetype'
f'/freetype2/{LOCAL_FREETYPE_VERSION}/{tarball}'),
(f'https://download.savannah.gnu.org/releases/freetype'
f'/{tarball}'),
(f'https://download.savannah.gnu.org/releases/freetype'
f'/freetype-old/{tarball}')
],
sha=LOCAL_FREETYPE_HASH,
dirname=f'freetype-{LOCAL_FREETYPE_VERSION}',
)
libfreetype = (src_path / "objs/.libs/libfreetype").with_suffix(
".lib" if sys.platform == "win32" else ".a")
if libfreetype.is_file():
return # Bail out because we have already built FreeType.
print(f"Building freetype in {src_path}")
if sys.platform != 'win32': # compilation on non-windows
env = {
**{
var: value
for var, value in sysconfig.get_config_vars().items()
if var in {"CC", "CFLAGS", "CXX", "CXXFLAGS", "LD",
"LDFLAGS"}
},
**env,
}
configure_ac = Path(src_path, "builds/unix/configure.ac")
if ((src_path / "autogen.sh").exists()
and not configure_ac.exists()):
print(f"{configure_ac} does not exist. "
f"Using sh autogen.sh to generate.")
subprocess.check_call(
["sh", "./autogen.sh"], env=env, cwd=src_path)
env["CFLAGS"] = env.get("CFLAGS", "") + " -fPIC"
configure = [
"./configure", "--with-zlib=no", "--with-bzip2=no",
"--with-png=no", "--with-harfbuzz=no", "--enable-static",
"--disable-shared"
]
host = sysconfig.get_config_var('HOST_GNU_TYPE')
if host is not None: # May be unset on PyPy.
configure.append(f"--host={host}")
subprocess.check_call(configure, env=env, cwd=src_path)
if 'GNUMAKE' in env:
make = env['GNUMAKE']
elif 'MAKE' in env:
make = env['MAKE']
else:
try:
output = subprocess.check_output(['make', '-v'],
stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError:
output = b''
if b'GNU' not in output and b'makepp' not in output:
make = 'gmake'
else:
make = 'make'
subprocess.check_call([make], env=env, cwd=src_path)
else: # compilation on windows
shutil.rmtree(src_path / "objs", ignore_errors=True)
base_path = Path(
f"build/freetype-{LOCAL_FREETYPE_VERSION}/builds/windows"
)
vc = 'vc2010'
sln_path = base_path / vc / "freetype.sln"
# https://developercommunity.visualstudio.com/comments/190992/view.html
(sln_path.parent / "Directory.Build.props").write_text(
"<?xml version='1.0' encoding='utf-8'?>"
"<Project>"
"<PropertyGroup>"
# WindowsTargetPlatformVersion must be given on a single line.
"<WindowsTargetPlatformVersion>$("
"[Microsoft.Build.Utilities.ToolLocationHelper]"
"::GetLatestSDKTargetPlatformVersion('Windows', '10.0')"
")</WindowsTargetPlatformVersion>"
"</PropertyGroup>"
"</Project>",
encoding="utf-8")
# It is not a trivial task to determine PlatformToolset to plug it
# into msbuild command, and Directory.Build.props will not override
# the value in the project file.
# The DefaultPlatformToolset is from Microsoft.Cpp.Default.props
with open(base_path / vc / "freetype.vcxproj", 'r+b') as f:
toolset_repl = b'PlatformToolset>$(DefaultPlatformToolset)<'
vcxproj = f.read().replace(b'PlatformToolset>v100<',
toolset_repl)
assert toolset_repl in vcxproj, (
'Upgrading Freetype might break this')
f.seek(0)
f.truncate()
f.write(vcxproj)
cc = get_ccompiler()
cc.initialize()
# On setuptools versions that use "local" distutils,
# ``cc.spawn(["msbuild", ...])`` no longer manages to locate the
# right executable, even though they are correctly on the PATH,
# because only the env kwarg to Popen() is updated, and not
# os.environ["PATH"]. Instead, use shutil.which to walk the PATH
# and get absolute executable paths.
with TemporaryDirectory() as tmpdir:
dest = Path(tmpdir, "path")
cc.spawn([
sys.executable, "-c",
"import pathlib, shutil, sys\n"
"dest = pathlib.Path(sys.argv[1])\n"
"dest.write_text(shutil.which('msbuild'))\n",
str(dest),
])
msbuild_path = dest.read_text()
msbuild_platform = (
"ARM64" if platform.machine() == "ARM64" else
"x64" if platform.architecture()[0] == "64bit" else
"Win32")
# Freetype 2.10.0+ support static builds.
msbuild_config = (
"Release Static"
if [*map(int, LOCAL_FREETYPE_VERSION.split("."))] >= [2, 10]
else "Release"
)
cc.spawn([msbuild_path, str(sln_path),
"/t:Clean;Build",
f"/p:Configuration={msbuild_config};"
f"Platform={msbuild_platform}"])
# Move to the corresponding Unix build path.
libfreetype.parent.mkdir()
# Be robust against change of FreeType version.
lib_paths = Path(src_path / "objs").rglob('freetype*.lib')
# Select FreeType library for required platform
lib_path, = [
p for p in lib_paths
if msbuild_platform in p.resolve().as_uri()
]
print(f"Copying {lib_path} to {libfreetype}")
shutil.copy2(lib_path, libfreetype)
class Qhull(SetupPackage):
name = "qhull"
_extensions_to_update = []
@classmethod
def add_flags(cls, ext):
if options.get("system_qhull"):
ext.libraries.append("qhull_r")
else:
cls._extensions_to_update.append(ext)
def do_custom_build(self, env):
if options.get('system_qhull'):
return
toplevel = get_and_extract_tarball(
urls=["http://www.qhull.org/download/qhull-2020-src-8.0.2.tgz"],
sha=LOCAL_QHULL_HASH,
dirname=f"qhull-{LOCAL_QHULL_VERSION}",
)
shutil.copyfile(toplevel / "COPYING.txt", "LICENSE/LICENSE_QHULL")
for ext in self._extensions_to_update:
qhull_path = Path(f'build/qhull-{LOCAL_QHULL_VERSION}/src')
ext.include_dirs.insert(0, str(qhull_path))
ext.sources.extend(
map(str, sorted(qhull_path.glob('libqhull_r/*.c'))))
if sysconfig.get_config_var("LIBM") == "-lm":
ext.libraries.extend("m")
class BackendMacOSX(OptionalPackage):
name = 'macosx'
def check(self):
if sys.platform != 'darwin':
raise Skipped("Mac OS-X only")
return super().check()
def get_extensions(self):
ext = Extension(
'matplotlib.backends._macosx', [
'src/_macosx.m'
])
ext.extra_compile_args.extend(['-Werror'])
ext.extra_link_args.extend(['-framework', 'Cocoa'])
if platform.python_implementation().lower() == 'pypy':
ext.extra_compile_args.append('-DPYPY=1')
yield ext
|