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 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
|
#! /usr/bin/env python3
'''
Overview:
Build script for PyMuPDF, supporting PEP-517 and simple command-line usage.
We hard-code the URL of the MuPDF .tar.gz file that we require. This
generally points to a particular source release on mupdf.com.
Default behaviour:
Building an sdist:
As of 2024-002-28 we no longer download the MuPDF .tar.gz file and
embed it within the sdist. Instead it will be downloaded at build
time.
Building PyMuPDF:
We first download the hard-coded mupdf .tar.gz file.
Then we extract and build MuPDF locally, before building PyMuPDF
itself. So PyMuPDF will always be built with the exact MuPDF
release that we require.
Environmental variables:
If building with system MuPDF (PYMUPDF_SETUP_MUPDF_BUILD is empty string):
CFLAGS
CXXFLAGS
LDFLAGS
Added to c, c++, and link commands.
PYMUPDF_INCLUDES
Colon-separated extra include paths.
PYMUPDF_MUPDF_LIB
Directory containing MuPDF libraries, (libmupdf.so,
libmupdfcpp.so).
PYMUPDF_SETUP_DEVENV
Location of devenv.com on Windows. If unset we search for it - see
wdev.py. if that fails we use just 'devenv.com'.
PYMUPDF_SETUP_FLAVOUR
Control building of separate wheels for PyMuPDF.
Must be unset or a combination of 'p', 'b' and 'd'.
Default is 'pbd'.
'p':
Generated wheel contains PyMuPDF code.
'b':
Generated wheel contains MuPDF libraries; these are independent of
the Python version.
'd':
Generated wheel contains includes and libraries for MuPDF.
If 'p' is included, the generated wheel is called PyMuPDF.
Otherwise if 'b' is included the generated wheel is called PyMuPDFb.
Otherwise if 'd' is included the generated wheel is called PyMuPDFd.
For example:
'pb': a `PyMuPDF` wheel with PyMuPDF runtime files and MuPDF
runtime shared libraries.
'b': a `PyMuPDFb` wheel containing MuPDF runtime shared libraries.
'pbd' a `PyMuPDF` wheel with PyMuPDF runtime files and MuPDF
runtime shared libraries, plus MuPDF build-time files (includes,
*.lib files on Windows).
'd': a `PyMuPDFd` wheel containing MuPDF build-time files
(includes, *.lib files on Windows).
PYMUPDF_SETUP_LIBCLANG
For internal testing.
PYMUPDF_SETUP_MUPDF_BUILD
If unset or '-', use internal hard-coded default MuPDF location.
Otherwise overrides location of MuPDF when building PyMuPDF:
Empty string:
Build PyMuPDF with the system MuPDF.
A string starting with 'git:':
Use `git clone` to get a MuPDF checkout. We use the
string in the git clone command; it must contain the git
URL from which to clone, and can also contain other `git
clone` args, for example:
PYMUPDF_SETUP_MUPDF_BUILD="git:--branch master https://github.com/ArtifexSoftware/mupdf.git"
Otherwise:
Location of mupdf directory.
PYMUPDF_SETUP_MUPDF_BSYMBOLIC
If '0' we do not link libmupdf.so with -Bsymbolic.
PYMUPDF_SETUP_MUPDF_TESSERACT
If '0' we build MuPDF without Tesseract.
PYMUPDF_SETUP_MUPDF_BUILD_TYPE
Unix only. Controls build type of MuPDF. Supported values are:
debug
memento
release (default)
PYMUPDF_SETUP_MUPDF_CLEAN
Unix only. If '1', we do a clean MuPDF build.
PYMUPDF_SETUP_MUPDF_REFCHECK_IF
Should be preprocessor statement to enable MuPDF reference count
checking.
As of 2024-09-27, MuPDF default is `#ifndef NDEBUG`.
PYMUPDF_SETUP_MUPDF_TRACE_IF
Should be preprocessor statement to enable MuPDF runtime diagnostics in
response to environment variables such as MUPDF_trace.
As of 2024-09-27, MuPDF default is `#ifndef NDEBUG`.
PYMUPDF_SETUP_MUPDF_THIRD
If '0' and we are building on Linux with the system MuPDF
(i.e. PYMUPDF_SETUP_MUPDF_BUILD=''), then don't link with
`-lmupdf-third`.
PYMUPDF_SETUP_MUPDF_VS_UPGRADE
If '1' we run mupdf `scripts/mupdfwrap.py` with `--vs-upgrade 1` to
help Windows builds work with Visual Studio versions newer than 2019.
PYMUPDF_SETUP_MUPDF_TGZ
If set, overrides location of MuPDF .tar.gz file:
Empty string:
Do not download MuPDF .tar.gz file. Sdist's will not contain
MuPDF.
A string containing '://':
The URL from which to download the MuPDF .tar.gz file. Leaf
must match mupdf-*.tar.gz.
Otherwise:
The path of local mupdf git checkout. We put all files in this
checkout known to git into a local tar archive.
PYMUPDF_SETUP_MUPDF_OVERWRITE_CONFIG
If '0' we do not overwrite MuPDF's include/mupdf/fitz/config.h with
PyMuPDF's own configuration file, before building MuPDF.
PYMUPDF_SETUP_MUPDF_REBUILD
If 0 we do not (re)build mupdf.
PYMUPDF_SETUP_PY_LIMITED_API
If not '0', we build for current Python's stable ABI.
However if unset and we are on Python-3.13 or later, we do
not build for the stable ABI because as of 2025-03-04 SWIG
generates incorrect stable ABI code with Python-3.13 - see:
https://github.com/swig/swig/issues/3059
PYMUPDF_SETUP_URL_WHEEL
If set, we use an existing wheel instead of building a new wheel.
If starts with `http://` or `https://`:
If ends with '/', we append our wheel name and download. Otherwise
we download directly.
If starts with `file://`:
If ends with '/' we look for a matching wheel name, `using
pipcl.wheel_name_match()` to cope with differing platform tags,
for example our `manylinux2014_x86_64` will match with an existing
wheel with `manylinux2014_x86_64.manylinux_2_17_x86_64`.
Any other prefix is an error.
WDEV_VS_YEAR
If set, we use as Visual Studio year, for example '2019' or '2022'.
WDEV_VS_GRADE
If set, we use as Visual Studio grade, for example 'Community' or
'Professional' or 'Enterprise'.
'''
import glob
import io
import os
import textwrap
import time
import platform
import re
import shlex
import shutil
import stat
import subprocess
import sys
import tarfile
import urllib.request
import zipfile
import pipcl
_log_prefix = None
def log( text):
global _log_prefix
if not _log_prefix:
# This typically sets _log_prefix to `PyMuPDF/setup.py`.
p = os.path.abspath( __file__)
p, p1 = os.path.split( p)
p, p0 = os.path.split( p)
_log_prefix = os.path.join( p0, p1)
print(f'{_log_prefix}: {text}', file=sys.stdout)
sys.stdout.flush()
def run(command, check=1):
log(f'Running: {command}')
return subprocess.run( command, shell=1, check=check)
if 1:
# For debugging.
log(f'### Starting.')
log(f'__name__: {__name__!r}')
log(f'platform.platform(): {platform.platform()!r}')
log(f'platform.python_version(): {platform.python_version()!r}')
log(f'sys.executable: {sys.executable!r}')
log(f'CPU bits: {32 if sys.maxsize == 2**31 - 1 else 64} {sys.maxsize=}')
log(f'__file__: {__file__!r}')
log(f'os.getcwd(): {os.getcwd()!r}')
log(f'getconf ARG_MAX: {pipcl.run("getconf ARG_MAX", capture=1, check=0, verbose=0)!r}')
log(f'sys.argv ({len(sys.argv)}):')
for i, arg in enumerate(sys.argv):
log(f' {i}: {arg!r}')
log(f'os.environ ({len(os.environ)}):')
for k in sorted( os.environ.keys()):
v = os.environ[ k]
log( f' {k}: {v!r}')
PYMUPDF_SETUP_FLAVOUR = os.environ.get( 'PYMUPDF_SETUP_FLAVOUR', 'pbd')
for i in PYMUPDF_SETUP_FLAVOUR:
assert i in 'pbd', f'Unrecognised flag "{i} in {PYMUPDF_SETUP_FLAVOUR=}. Should be one of "p", "b", "d"'
g_root = os.path.abspath( f'{__file__}/..')
# Name of file that identifies that we are in a PyMuPDF sdist.
g_pymupdfb_sdist_marker = 'pymupdfb_sdist'
python_version_tuple = tuple(int(x) for x in platform.python_version_tuple()[:2])
PYMUPDF_SETUP_PY_LIMITED_API = os.environ.get('PYMUPDF_SETUP_PY_LIMITED_API')
assert PYMUPDF_SETUP_PY_LIMITED_API in (None, '', '0', '1'), \
f'Should be "", "0", "1" or undefined: {PYMUPDF_SETUP_PY_LIMITED_API=}.'
if PYMUPDF_SETUP_PY_LIMITED_API is None and python_version_tuple >= (3, 13):
log(f'Not defaulting to Python limited api because {platform.python_version_tuple()=}.')
g_py_limited_api = False
else:
g_py_limited_api = (PYMUPDF_SETUP_PY_LIMITED_API != '0')
PYMUPDF_SETUP_URL_WHEEL = os.environ.get('PYMUPDF_SETUP_URL_WHEEL')
log(f'{PYMUPDF_SETUP_URL_WHEEL=}')
def _fs_remove(path):
'''
Removes file or directory, without raising exception if it doesn't exist.
We assert-fail if the path still exists when we return, in case of
permission problems etc.
'''
# First try deleting `path` as a file.
try:
os.remove( path)
except Exception as e:
pass
if os.path.exists(path):
# Try deleting `path` as a directory. Need to use
# shutil.rmtree() callback to handle permission problems; see:
# https://docs.python.org/3/library/shutil.html#rmtree-example
#
def error_fn(fn, path, excinfo):
# Clear the readonly bit and reattempt the removal.
os.chmod(path, stat.S_IWRITE)
fn(path)
shutil.rmtree( path, onerror=error_fn)
assert not os.path.exists( path)
def _git_get_branch( directory):
command = f'cd {directory} && git branch --show-current'
log( f'Running: {command}')
p = subprocess.run(
command,
shell=True,
check=False,
text=True,
stdout=subprocess.PIPE,
)
ret = None
if p.returncode == 0:
ret = p.stdout.strip()
log( f'Have found MuPDF git branch: ret={ret!r}')
return ret
def tar_check(path, mode='r:gz', prefix=None, remove=False):
'''
Checks items in tar file have same <top-directory>, or <prefix> if not None.
We fail if items in tar file have different top-level directory names.
path:
The tar file.
mode:
As tarfile.open().
prefix:
If not None, we fail if tar file's <top-directory> is not <prefix>.
Returns the directory name (which will be <prefix> if not None).
'''
with tarfile.open( path, mode) as t:
items = t.getnames()
assert items
item = items[0]
assert not item.startswith('./') and not item.startswith('../')
s = item.find('/')
if s == -1:
prefix_actual = item + '/'
else:
prefix_actual = item[:s+1]
if prefix:
assert prefix == prefix_actual, f'{path=} {prefix=} {prefix_actual=}'
for item in items[1:]:
assert item.startswith( prefix_actual), f'prefix_actual={prefix_actual!r} != item={item!r}'
return prefix_actual
def tar_extract(path, mode='r:gz', prefix=None, exists='raise'):
'''
Extracts tar file into single local directory.
We fail if items in tar file have different <top-directory>.
path:
The tar file.
mode:
As tarfile.open().
prefix:
If not None, we fail if tar file's <top-directory> is not <prefix>.
exists:
What to do if <top-directory> already exists:
'raise': raise exception.
'remove': remove existing file/directory before extracting.
'return': return without extracting.
Returns the directory name (which will be <prefix> if not None, with '/'
appended if not already present).
'''
prefix_actual = tar_check( path, mode, prefix)
if os.path.exists( prefix_actual):
if exists == 'raise':
raise Exception( f'Path already exists: {prefix_actual!r}')
elif exists == 'remove':
remove( prefix_actual)
elif exists == 'return':
log( f'Not extracting {path} because already exists: {prefix_actual}')
return prefix_actual
else:
assert 0, f'Unrecognised exists={exists!r}'
assert not os.path.exists( prefix_actual), f'Path already exists: {prefix_actual}'
log( f'Extracting {path}')
with tarfile.open( path, mode) as t:
t.extractall()
return prefix_actual
def git_info( directory):
'''
Returns `(sha, comment, diff, branch)`, all items are str or None if not
available.
directory:
Root of git checkout.
'''
sha, comment, diff, branch = '', '', '', ''
cp = subprocess.run(
f'cd {directory} && (PAGER= git show --pretty=oneline|head -n 1 && git diff)',
capture_output=1,
shell=1,
text=1,
)
if cp.returncode == 0:
sha, _ = cp.stdout.split(' ', 1)
comment, diff = _.split('\n', 1)
cp = subprocess.run(
f'cd {directory} && git rev-parse --abbrev-ref HEAD',
capture_output=1,
shell=1,
text=1,
)
if cp.returncode == 0:
branch = cp.stdout.strip()
log(f'git_info(): directory={directory!r} returning branch={branch!r} sha={sha!r} comment={comment!r}')
return sha, comment, diff, branch
def git_patch(directory, patch, hard=False):
'''
Applies string <patch> with `git patch` in <directory>.
If <hard> is true we clean the tree with `git checkout .` and then apply
the patch.
Otherwise we apply patch only if it is not already applied; this might fail
if there are conflicting changes in the tree.
'''
log(f'Applying patch in {directory}:\n{textwrap.indent(patch, " ")}')
if not patch:
return
# Carriage returns break `git apply` so we use `newline='\n'` in open().
path = os.path.abspath(f'{directory}/pymupdf_patch.txt')
with open(path, 'w', newline='\n') as f:
f.write(patch)
log(f'Using patch file: {path}')
if hard:
run(f'cd {directory} && git checkout .')
run(f'cd {directory} && git apply {path}')
log(f'Have applied patch in {directory}.')
else:
e = run( f'cd {directory} && git apply --check --reverse {path}', check=0)
if e == 0:
log(f'Not patching {directory} because already patched.')
else:
run(f'cd {directory} && git apply {path}')
log(f'Have applied patch in {directory}.')
run(f'cd {directory} && git diff')
mupdf_tgz = os.path.abspath( f'{__file__}/../mupdf.tgz')
def get_mupdf_internal(out, location=None, sha=None, local_tgz=None):
'''
Gets MuPDF as either a .tgz or a local directory.
Args:
out:
Either 'dir' (we return name of local directory containing mupdf) or 'tgz' (we return
name of local .tgz file containing mupdf).
location:
First, if None we set to hard-coded default URL or git location.
If starts with 'git:', should be remote git location.
Otherwise if containing '://' should be URL for .tgz.
Otherwise should path of local mupdf checkout.
sha:
If not None and we use git clone, we checkout this sha.
local_tgz:
If not None, must be local .tgz file.
Returns:
(path, location):
`path` is absolute path of local directory or .tgz containing
MuPDF, or None if we are to use system MuPDF.
`location_out` is `location` if not None, else the hard-coded
default location.
'''
log(f'get_mupdf_internal(): {out=} {location=} {sha=}')
assert out in ('dir', 'tgz')
if location is None:
location = f'https://mupdf.com/downloads/archive/mupdf-{version_mupdf}-source.tar.gz'
#location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git'
if location == '':
# Use system mupdf.
return None, location
local_dir = None
if local_tgz:
assert os.path.isfile(local_tgz)
elif location.startswith( 'git:'):
location_git = location[4:]
local_dir = 'mupdf-git'
# Try to update existing checkout.
e = run(f'cd {local_dir} && git pull && git submodule update --init', check=False).returncode
if e:
# No existing git checkout, so do a fresh clone.
_fs_remove(local_dir)
gitargs = location[4:]
run(f'git clone --recursive --depth 1 --shallow-submodules {gitargs} {local_dir}')
# Show sha of checkout.
run( f'cd {local_dir} && git show --pretty=oneline|head -n 1', check=False)
if sha:
run( f'cd {local_dir} && git checkout {sha}')
elif '://' in location:
# Download .tgz.
local_tgz = os.path.basename( location)
suffix = '.tar.gz'
assert location.endswith(suffix), f'Unrecognised suffix in remote URL {location=}.'
name = local_tgz[:-len(suffix)]
log( f'Download {location=} {local_tgz=} {name=}')
if os.path.exists(local_tgz):
try:
tar_check(local_tgz, 'r:gz', prefix=f'{name}/')
except Exception as e:
log(f'Not using existing file {local_tgz} because invalid tar data: {e}')
_fs_remove( local_tgz)
if os.path.exists(local_tgz):
log(f'Not downloading from {location} because already present: {local_tgz!r}')
else:
log(f'Downloading from {location=} to {local_tgz=}.')
urllib.request.urlretrieve( location, local_tgz + '-')
os.rename(local_tgz + '-', local_tgz)
assert os.path.exists( local_tgz)
tar_check( local_tgz, 'r:gz', prefix=f'{name}/')
else:
assert os.path.isdir(location), f'Local MuPDF does not exist: {location=}'
local_dir = location
assert bool(local_dir) != bool(local_tgz)
if out == 'dir':
if not local_dir:
assert local_tgz
local_dir = tar_extract( local_tgz, exists='return')
return os.path.abspath( local_dir), location
elif out == 'tgz':
if not local_tgz:
# Create .tgz containing git files in `local_dir`.
assert local_dir
if local_dir.endswith( '/'):
local_dir = local_dir[:-1]
top = os.path.basename(local_dir)
local_tgz = f'{local_dir}.tgz'
log( f'Creating .tgz from git files. {top=} {local_dir=} {local_tgz=}')
_fs_remove( local_tgz)
with tarfile.open( local_tgz, 'w:gz') as f:
for name in pipcl.git_items( local_dir, submodules=True):
path = os.path.join( local_dir, name)
if os.path.isfile( path):
path2 = f'{top}/{name}'
log(f'Adding {path=} {path2=}.')
f.add( path, path2, recursive=False)
return os.path.abspath( local_tgz), location
else:
assert 0, f'Unrecognised {out=}'
def get_mupdf_tgz():
'''
Creates .tgz file called containing MuPDF source, for inclusion in an
sdist.
What we do depends on environmental variable PYMUPDF_SETUP_MUPDF_TGZ; see
docs at start of this file for details.
Returns name of top-level directory within the .tgz file.
'''
name, location = get_mupdf_internal( 'tgz', os.environ.get('PYMUPDF_SETUP_MUPDF_TGZ'))
return name, location
def get_mupdf(path=None, sha=None):
'''
Downloads and/or extracts mupdf and returns (path, location) where `path`
is the local mupdf directory and `location` is where it came from.
Exact behaviour depends on environmental variable
PYMUPDF_SETUP_MUPDF_BUILD; see docs at start of this file for details.
'''
m = os.environ.get('PYMUPDF_SETUP_MUPDF_BUILD')
if m == '-':
# This allows easy specification in Github actions.
m = None
if m is None and os.path.isfile(mupdf_tgz):
# This makes us use tgz inside sdist.
log(f'Using local tgz: {mupdf_tgz=}')
return get_mupdf_internal('dir', local_tgz=mupdf_tgz)
return get_mupdf_internal('dir', m)
linux = sys.platform.startswith( 'linux') or 'gnu' in sys.platform
openbsd = sys.platform.startswith( 'openbsd')
freebsd = sys.platform.startswith( 'freebsd')
darwin = sys.platform.startswith( 'darwin')
windows = platform.system() == 'Windows' or platform.system().startswith('CYGWIN')
msys2 = platform.system().startswith('MSYS_NT-')
pyodide = os.environ.get('OS') == 'pyodide'
def build():
'''
pipcl.py `build_fn()` callback.
'''
# Download MuPDF.
#
mupdf_local, mupdf_location = get_mupdf()
if mupdf_local:
mupdf_version_tuple = get_mupdf_version(mupdf_local)
# else we cannot determine version this way and do not use it
build_type = os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD_TYPE', 'release')
assert build_type in ('debug', 'memento', 'release'), \
f'Unrecognised build_type={build_type!r}'
overwrite_config = os.environ.get('PYMUPDF_SETUP_MUPDF_OVERWRITE_CONFIG', '1') == '1'
PYMUPDF_SETUP_MUPDF_REFCHECK_IF = os.environ.get('PYMUPDF_SETUP_MUPDF_REFCHECK_IF')
PYMUPDF_SETUP_MUPDF_TRACE_IF = os.environ.get('PYMUPDF_SETUP_MUPDF_TRACE_IF')
# Build MuPDF shared libraries.
#
if windows:
mupdf_build_dir = build_mupdf_windows(
mupdf_local,
build_type,
overwrite_config,
g_py_limited_api,
PYMUPDF_SETUP_MUPDF_REFCHECK_IF,
PYMUPDF_SETUP_MUPDF_TRACE_IF,
)
else:
if 'p' not in PYMUPDF_SETUP_FLAVOUR and 'b' not in PYMUPDF_SETUP_FLAVOUR:
# We only need MuPDF headers, so no point building MuPDF.
log(f'Not building MuPDF because not Windows and {PYMUPDF_SETUP_FLAVOUR=}.')
mupdf_build_dir = None
else:
mupdf_build_dir = build_mupdf_unix(
mupdf_local,
build_type,
overwrite_config,
g_py_limited_api,
PYMUPDF_SETUP_MUPDF_REFCHECK_IF,
PYMUPDF_SETUP_MUPDF_TRACE_IF,
)
log( f'build(): mupdf_build_dir={mupdf_build_dir!r}')
# Build rebased `extra` module.
#
if 'p' in PYMUPDF_SETUP_FLAVOUR:
path_so_leaf = _build_extension(
mupdf_local,
mupdf_build_dir,
build_type,
g_py_limited_api,
)
else:
log(f'Not building extension.')
path_so_leaf = None
# Generate list of (from, to) items to return to pipcl. What we add depends
# on PYMUPDF_SETUP_FLAVOUR.
#
ret = list()
def add(flavour, from_, to_):
assert flavour in 'pbd'
if flavour in PYMUPDF_SETUP_FLAVOUR:
ret.append((from_, to_))
to_dir = 'pymupdf/'
to_dir_d = f'{to_dir}/mupdf-devel'
# Add implementation files.
add('p', f'{g_root}/src/__init__.py', to_dir)
add('p', f'{g_root}/src/__main__.py', to_dir)
add('p', f'{g_root}/src/pymupdf.py', to_dir)
add('p', f'{g_root}/src/table.py', to_dir)
add('p', f'{g_root}/src/utils.py', to_dir)
add('p', f'{g_root}/src/_wxcolors.py', to_dir)
add('p', f'{g_root}/src/_apply_pages.py', to_dir)
add('p', f'{g_root}/src/build/extra.py', to_dir)
if path_so_leaf:
add('p', f'{g_root}/src/build/{path_so_leaf}', to_dir)
# Add support for `fitz` backwards compatibility.
add('p', f'{g_root}/src/fitz___init__.py', 'fitz/__init__.py')
add('p', f'{g_root}/src/fitz_table.py', 'fitz/table.py')
add('p', f'{g_root}/src/fitz_utils.py', 'fitz/utils.py')
if mupdf_local:
# Add MuPDF Python API.
add('p', f'{mupdf_build_dir}/mupdf.py', to_dir)
# Add MuPDF shared libraries.
if windows:
wp = pipcl.wdev.WindowsPython()
add('p', f'{mupdf_build_dir}/_mupdf.pyd', to_dir)
add('b', f'{mupdf_build_dir}/mupdfcpp{wp.cpu.windows_suffix}.dll', to_dir)
# Add Windows .lib files.
mupdf_build_dir2 = _windows_lib_directory(mupdf_local, build_type)
add('d', f'{mupdf_build_dir2}/mupdfcpp{wp.cpu.windows_suffix}.lib', f'{to_dir_d}/lib/')
if mupdf_version_tuple >= (1, 26):
# MuPDF-1.25+ language bindings build also builds libmuthreads.
add('d', f'{mupdf_build_dir2}/libmuthreads.lib', f'{to_dir_d}/lib/')
elif darwin:
add('p', f'{mupdf_build_dir}/_mupdf.so', to_dir)
add('b', f'{mupdf_build_dir}/libmupdfcpp.so', to_dir)
add('b', f'{mupdf_build_dir}/libmupdf.dylib', to_dir)
if mupdf_version_tuple >= (1, 25):
# MuPDF-1.25+ language bindings build also builds
# libmupdf-threads.a.
add('d', f'{mupdf_build_dir}/libmupdf-threads.a', f'{to_dir_d}/lib/')
elif pyodide:
add('p', f'{mupdf_build_dir}/_mupdf.so', to_dir)
add('b', f'{mupdf_build_dir}/libmupdfcpp.so', 'PyMuPDF.libs/')
add('b', f'{mupdf_build_dir}/libmupdf.so', 'PyMuPDF.libs/')
else:
add('p', f'{mupdf_build_dir}/_mupdf.so', to_dir)
add('b', pipcl.get_soname(f'{mupdf_build_dir}/libmupdfcpp.so'), to_dir)
add('b', pipcl.get_soname(f'{mupdf_build_dir}/libmupdf.so'), to_dir)
if mupdf_version_tuple >= (1, 25):
# MuPDF-1.25+ language bindings build also builds
# libmupdf-threads.a.
add('d', f'{mupdf_build_dir}/libmupdf-threads.a', f'{to_dir_d}/lib/')
if 'd' in PYMUPDF_SETUP_FLAVOUR:
# Add MuPDF C and C++ headers to `ret_d`. Would prefer to use
# pipcl.git_items() but hard-coded mupdf tree is not a git
# checkout.
#
for root in (
f'{mupdf_local}/include',
f'{mupdf_local}/platform/c++/include',
):
for dirpath, dirnames, filenames in os.walk(root):
for filename in filenames:
if not filename.endswith('.h'):
continue
header_abs = os.path.join(dirpath, filename)
assert header_abs.startswith(root)
header_rel = header_abs[len(root)+1:]
add('d', f'{header_abs}', f'{to_dir_d}/include/{header_rel}')
# Add a .py file containing location of MuPDF.
text = f"mupdf_location='{mupdf_location}'\n"
add('p', text.encode(), f'{to_dir}/_build.py')
# Add single README file.
if 'p' in PYMUPDF_SETUP_FLAVOUR:
add('p', f'{g_root}/README.md', '$dist-info/README.md')
elif 'b' in PYMUPDF_SETUP_FLAVOUR:
add('b', f'{g_root}/READMEb.md', '$dist-info/README.md')
elif 'd' in PYMUPDF_SETUP_FLAVOUR:
add('d', f'{g_root}/READMEd.md', '$dist-info/README.md')
return ret
def env_add(env, name, value, sep=' ', prepend=False, verbose=False):
'''
Appends/prepends `<value>` to `env[name]`.
If `name` is not in `env`, we use os.environ[name] if it exists.
'''
v = env.get(name)
if verbose:
log(f'Initally: {name}={v!r}')
if v is None:
v = os.environ.get(name)
if v is None:
env[ name] = value
else:
if prepend:
env[ name] = f'{value}{sep}{v}'
else:
env[ name] = f'{v}{sep}{value}'
if verbose:
log(f'Returning with {name}={env[name]!r}')
def build_mupdf_windows(
mupdf_local,
build_type,
overwrite_config,
g_py_limited_api,
PYMUPDF_SETUP_MUPDF_REFCHECK_IF,
PYMUPDF_SETUP_MUPDF_TRACE_IF,
):
assert mupdf_local
if overwrite_config:
mupdf_config_h = f'{mupdf_local}/include/mupdf/fitz/config.h'
prefix = '#define TOFU_CJK_EXT 1 /* PyMuPDF override. */\n'
with open(mupdf_config_h) as f:
text = f.read()
if text.startswith(prefix):
print(f'Not modifying {mupdf_config_h} because already has prefix {prefix!r}.')
else:
print(f'Prefixing {mupdf_config_h} with {prefix!r}.')
text = prefix + text
st = os.stat(mupdf_config_h)
with open(mupdf_config_h, 'w') as f:
f.write(text)
os.utime(mupdf_config_h, (st.st_atime, st.st_mtime))
wp = pipcl.wdev.WindowsPython()
tesseract = '' if os.environ.get('PYMUPDF_SETUP_MUPDF_TESSERACT') == '0' else 'tesseract-'
windows_build_tail = f'build\\shared-{tesseract}{build_type}'
if g_py_limited_api:
if get_mupdf_version(mupdf_local) >= (1, 24, 11):
windows_build_tail += f'-Py_LIMITED_API_{pipcl.current_py_limited_api()}'
else:
windows_build_tail += f'-Py_LIMITED_API={pipcl.current_py_limited_api()}'
windows_build_tail += f'-x{wp.cpu.bits}-py{wp.version}'
windows_build_dir = f'{mupdf_local}\\{windows_build_tail}'
#log( f'Building mupdf.')
devenv = os.environ.get('PYMUPDF_SETUP_DEVENV')
if not devenv:
vs = pipcl.wdev.WindowsVS()
devenv = vs.devenv
if not devenv:
devenv = 'devenv.com'
log( f'Cannot find devenv.com in default locations, using: {devenv!r}')
command = f'cd "{mupdf_local}" && "{sys.executable}" ./scripts/mupdfwrap.py'
if os.environ.get('PYMUPDF_SETUP_MUPDF_VS_UPGRADE') == '1':
command += ' --vs-upgrade 1'
# Would like to simply do f'... --devenv {shutil.quote(devenv)}', but
# it looks like if `devenv` has spaces then `shutil.quote()` puts it
# inside single quotes, which then appear to be ignored when run by
# subprocess.run().
#
# So instead we strip any enclosing quotes and the enclose with
# double-quotes.
#
if len(devenv) >= 2:
for q in '"', "'":
if devenv.startswith( q) and devenv.endswith( q):
devenv = devenv[1:-1]
command += f' -d {windows_build_tail}'
command += f' -b'
if PYMUPDF_SETUP_MUPDF_REFCHECK_IF:
command += f' --refcheck-if "{PYMUPDF_SETUP_MUPDF_REFCHECK_IF}"'
if PYMUPDF_SETUP_MUPDF_TRACE_IF:
command += f' --trace-if "{PYMUPDF_SETUP_MUPDF_TRACE_IF}"'
command += f' --devenv "{devenv}"'
command += f' all'
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_REBUILD') == '0':
log( f'PYMUPDF_SETUP_MUPDF_REBUILD is "0" so not building MuPDF; would have run: {command}')
else:
log( f'Building MuPDF by running: {command}')
subprocess.run( command, shell=True, check=True)
log( f'Finished building mupdf.')
return windows_build_dir
def _windows_lib_directory(mupdf_local, build_type):
ret = f'{mupdf_local}/platform/win32/'
if _cpu_bits() == 64:
ret += 'x64/'
if build_type == 'release':
ret += 'Release/'
elif build_type == 'debug':
ret += 'Debug/'
else:
assert 0, f'Unrecognised {build_type=}.'
return ret
def _cpu_bits():
if sys.maxsize == 2**31 - 1:
return 32
return 64
def build_mupdf_unix(
mupdf_local,
build_type,
overwrite_config,
g_py_limited_api,
PYMUPDF_SETUP_MUPDF_REFCHECK_IF,
PYMUPDF_SETUP_MUPDF_TRACE_IF,
):
'''
Builds MuPDF.
Args:
mupdf_local:
Path of MuPDF directory or None if we are using system MuPDF.
Returns the absolute path of build directory within MuPDF, e.g.
`.../mupdf/build/pymupdf-shared-release`, or `None` if we are using the
system MuPDF.
'''
if not mupdf_local:
log( f'Using system mupdf.')
return None
env = dict()
if overwrite_config:
# By predefining TOFU_CJK_EXT here, we don't need to modify
# MuPDF's include/mupdf/fitz/config.h.
log( f'Setting XCFLAGS and XCXXFLAGS to predefine TOFU_CJK_EXT.')
env_add(env, 'XCFLAGS', '-DTOFU_CJK_EXT')
env_add(env, 'XCXXFLAGS', '-DTOFU_CJK_EXT')
if openbsd or freebsd:
env_add(env, 'CXX', 'c++', ' ')
if darwin and os.environ.get('GITHUB_ACTIONS') == 'true':
if os.environ.get('ImageOS') == 'macos13':
# On Github macos13 we need to use Clang/LLVM (Homebrew) 15.0.7,
# otherwise mupdf:thirdparty/tesseract/src/api/baseapi.cpp fails to
# compile with:
#
# thirdparty/tesseract/src/api/baseapi.cpp:150:25: error: 'recursive_directory_iterator' is unavailable: introduced in macOS 10.15
#
# See:
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
#
log(f'Using llvm@15 clang and clang++')
cl15 = pipcl.run(f'brew --prefix llvm@15', capture=1)
log(f'{cl15=}')
cl15 = cl15.strip()
pipcl.run(f'ls -lL {cl15}')
pipcl.run(f'ls -lL {cl15}/bin')
cc = f'{cl15}/bin/clang'
cxx = f'{cl15}/bin/clang++'
env['CC'] = cc
env['CXX'] = cxx
# Show compiler versions.
cc = env.get('CC', 'cc')
cxx = env.get('CXX', 'c++')
pipcl.run(f'{cc} --version')
pipcl.run(f'{cxx} --version')
# Add extra flags for MacOS cross-compilation, where ARCHFLAGS can be
# '-arch arm64'.
#
archflags = os.environ.get( 'ARCHFLAGS')
if archflags:
env_add(env, 'XCFLAGS', archflags)
env_add(env, 'XLIBS', archflags)
mupdf_version_tuple = get_mupdf_version(mupdf_local)
# We specify a build directory path containing 'pymupdf' so that we
# coexist with non-PyMuPDF builds (because PyMuPDF builds have a
# different config.h).
#
# We also append further text to try to allow different builds to
# work if they reuse the mupdf directory.
#
# Using platform.machine() (e.g. 'amd64') ensures that different
# builds of mupdf on a shared filesystem can coexist. Using
# $_PYTHON_HOST_PLATFORM allows cross-compiled cibuildwheel builds
# to coexist, e.g. on github.
#
# Have experimented with looking at getconf_ARG_MAX to decide whether to
# omit `PyMuPDF-` from the build directory, to avoid command-too-long
# errors with mupdf-1.26. But it seems that `getconf ARG_MAX` returns
# a system limit, not the actual limit of the current shell, and there
# doesn't seem to be a way to find the current shell's limit.
#
build_prefix = f'PyMuPDF-'
if mupdf_version_tuple >= (1, 26):
# Avoid link command length problems seen on musllinux.
build_prefix = ''
if pyodide:
build_prefix += 'pyodide-'
else:
build_prefix += f'{platform.machine()}-'
build_prefix_extra = os.environ.get( '_PYTHON_HOST_PLATFORM')
if build_prefix_extra:
build_prefix += f'{build_prefix_extra}-'
build_prefix += 'shared-'
if msys2:
# Error in mupdf/scripts/tesseract/endianness.h:
# #error "I don't know what architecture this is!"
log(f'msys2: building MuPDF without tesseract.')
elif os.environ.get('PYMUPDF_SETUP_MUPDF_TESSERACT') == '0':
log(f'PYMUPDF_SETUP_MUPDF_TESSERACT=0 so building mupdf without tesseract.')
else:
build_prefix += 'tesseract-'
if (
linux
and os.environ.get('PYMUPDF_SETUP_MUPDF_BSYMBOLIC', '1') == '1'
and mupdf_version_tuple >= (1, 24, 3)
):
log(f'Appending `bsymbolic-` to MuPDF build path.')
build_prefix += 'bsymbolic-'
log(f'{g_py_limited_api=}')
if g_py_limited_api:
if get_mupdf_version(mupdf_local) >= (1, 24, 11):
build_prefix += f'Py_LIMITED_API_{pipcl.current_py_limited_api()}-'
else:
build_prefix += f'Py_LIMITED_API={pipcl.current_py_limited_api()}-'
unix_build_dir = f'{mupdf_local}/build/{build_prefix}{build_type}'
# We need MuPDF's Python bindings, so we build MuPDF with
# `mupdf/scripts/mupdfwrap.py` instead of running `make`.
#
command = f'cd {mupdf_local} &&'
for n, v in env.items():
command += f' {n}={shlex.quote(v)}'
command += f' {sys.executable} ./scripts/mupdfwrap.py -d build/{build_prefix}{build_type} -b'
#command += f' --m-target libs'
if PYMUPDF_SETUP_MUPDF_REFCHECK_IF:
command += f' --refcheck-if "{PYMUPDF_SETUP_MUPDF_REFCHECK_IF}"'
if PYMUPDF_SETUP_MUPDF_TRACE_IF:
command += f' --trace-if "{PYMUPDF_SETUP_MUPDF_TRACE_IF}"'
if 'p' in PYMUPDF_SETUP_FLAVOUR:
command += ' all'
else:
command += ' m01' # No need for C++/Python bindings.
command += f' && echo {unix_build_dir}:'
command += f' && ls -l {unix_build_dir}'
if os.environ.get( 'PYMUPDF_SETUP_MUPDF_REBUILD') == '0':
log( f'PYMUPDF_SETUP_MUPDF_REBUILD is "0" so not building MuPDF; would have run: {command}')
else:
log( f'Building MuPDF by running: {command}')
subprocess.run( command, shell=True, check=True)
log( f'Finished building mupdf.')
return unix_build_dir
def get_mupdf_version(mupdf_dir):
path = f'{mupdf_dir}/include/mupdf/fitz/version.h'
with open(path) as f:
text = f.read()
v0 = re.search('#define FZ_VERSION_MAJOR ([0-9]+)', text)
v1 = re.search('#define FZ_VERSION_MINOR ([0-9]+)', text)
v2 = re.search('#define FZ_VERSION_PATCH ([0-9]+)', text)
assert v0 and v1 and v2, f'Cannot find MuPDF version numbers in {path=}.'
v0 = int(v0.group(1))
v1 = int(v1.group(1))
v2 = int(v2.group(1))
return v0, v1, v2
def _fs_update(text, path):
try:
with open( path) as f:
text0 = f.read()
except OSError:
text0 = None
print(f'path={path!r} text==text0={text==text0!r}')
if text != text0:
with open( path, 'w') as f:
f.write( text)
def _build_extension( mupdf_local, mupdf_build_dir, build_type, g_py_limited_api):
'''
Builds Python extension module `_extra`.
Returns leafname of the generated shared libraries within mupdf_build_dir.
'''
(compiler_extra, linker_extra, includes, defines, optimise, debug, libpaths, libs, libraries) \
= _extension_flags( mupdf_local, mupdf_build_dir, build_type)
log(f'_build_extension(): {g_py_limited_api=} {defines=}')
if mupdf_local:
includes = (
f'{mupdf_local}/platform/c++/include',
f'{mupdf_local}/include',
)
# Build rebased extension module.
log('Building PyMuPDF rebased.')
compile_extra_cpp = ''
if darwin:
# Avoids `error: cannot pass object of non-POD type
# 'std::nullptr_t' through variadic function; call will abort at
# runtime` when compiling `mupdf::pdf_dict_getl(..., nullptr)`.
compile_extra_cpp += ' -Wno-non-pod-varargs'
# Avoid errors caused by mupdf's C++ bindings' exception classes
# not having `nothrow` to match the base exception class.
compile_extra_cpp += ' -std=c++14'
if windows:
wp = pipcl.wdev.WindowsPython()
libs = f'mupdfcpp{wp.cpu.windows_suffix}.lib'
else:
libs = ('mupdf', 'mupdfcpp')
libraries = [
f'{mupdf_build_dir}/libmupdf.so'
f'{mupdf_build_dir}/libmupdfcpp.so'
]
path_so_leaf = pipcl.build_extension(
name = 'extra',
path_i = f'{g_root}/src/extra.i',
outdir = f'{g_root}/src/build',
includes = includes,
defines = defines,
libpaths = libpaths,
libs = libs,
compiler_extra = compiler_extra + compile_extra_cpp,
linker_extra = linker_extra,
optimise = optimise,
debug = debug,
prerequisites_swig = None,
prerequisites_compile = f'{mupdf_local}/include',
prerequisites_link = libraries,
py_limited_api = g_py_limited_api,
)
return path_so_leaf
def _extension_flags( mupdf_local, mupdf_build_dir, build_type):
'''
Returns various flags to pass to pipcl.build_extension().
'''
compiler_extra = ''
linker_extra = ''
if build_type == 'memento':
compiler_extra += ' -DMEMENTO'
if mupdf_build_dir:
mupdf_build_dir_flags = os.path.basename( mupdf_build_dir).split( '-')
else:
mupdf_build_dir_flags = [build_type]
optimise = 'release' in mupdf_build_dir_flags
debug = 'debug' in mupdf_build_dir_flags
r_extra = ''
defines = list()
if windows:
defines.append('FZ_DLL_CLIENT')
wp = pipcl.wdev.WindowsPython()
if os.environ.get('PYMUPDF_SETUP_MUPDF_VS_UPGRADE') == '1':
# MuPDF C++ build uses a parallel build tree with updated VS files.
infix = 'win32-vs-upgrade'
else:
infix = 'win32'
build_type_infix = 'Debug' if debug else 'Release'
libpaths = (
f'{mupdf_local}\\platform\\{infix}\\{wp.cpu.windows_subdir}{build_type_infix}',
f'{mupdf_local}\\platform\\{infix}\\{wp.cpu.windows_subdir}{build_type_infix}Tesseract',
)
libs = f'mupdfcpp{wp.cpu.windows_suffix}.lib'
libraries = f'{mupdf_local}\\platform\\{infix}\\{wp.cpu.windows_subdir}{build_type_infix}\\{libs}'
compiler_extra = ''
else:
libs = ['mupdf']
compiler_extra += (
' -Wall'
' -Wno-deprecated-declarations'
' -Wno-unused-const-variable'
)
if mupdf_local:
libpaths = (mupdf_build_dir,)
libraries = f'{mupdf_build_dir}/{libs[0]}'
if openbsd:
compiler_extra += ' -Wno-deprecated-declarations'
else:
libpaths = os.environ.get('PYMUPDF_MUPDF_LIB')
libraries = None
if libpaths:
libpaths = libpaths.split(':')
if mupdf_local:
includes = (
f'{mupdf_local}/include',
f'{mupdf_local}/include/mupdf',
f'{mupdf_local}/thirdparty/freetype/include',
)
else:
# Use system MuPDF.
includes = list()
pi = os.environ.get('PYMUPDF_INCLUDES')
if pi:
includes += pi.split(':')
pmi = os.environ.get('PYMUPDF_MUPDF_INCLUDE')
if pmi:
includes.append(pmi)
ldflags = os.environ.get('LDFLAGS')
if ldflags:
linker_extra += f' {ldflags}'
cflags = os.environ.get('CFLAGS')
if cflags:
compiler_extra += f' {cflags}'
cxxflags = os.environ.get('CXXFLAGS')
if cxxflags:
compiler_extra += f' {cxxflags}'
return compiler_extra, linker_extra, includes, defines, optimise, debug, libpaths, libs, libraries,
def sdist():
ret = list()
if PYMUPDF_SETUP_FLAVOUR == 'b':
# Create a minimal sdist that will build/install a dummy PyMuPDFb.
for p in (
'setup.py',
'pipcl.py',
'wdev.py',
'pyproject.toml',
):
ret.append(p)
ret.append(
(
b'This file indicates that we are a PyMuPDFb sdist and should build/install a dummy PyMuPDFb package.\n',
g_pymupdfb_sdist_marker,
)
)
return ret
for p in pipcl.git_items( g_root):
if p.startswith(
(
'docs/',
'signatures/',
'.',
)
):
pass
else:
ret.append(p)
if 0:
tgz, mupdf_location = get_mupdf_tgz()
if tgz:
ret.append((tgz, mupdf_tgz))
else:
log(f'Not including MuPDF .tgz in sdist.')
return ret
classifier = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Utilities',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries',
]
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
#
# PyMuPDF version.
version_p = '1.25.4'
# PyMuPDFb version. This is the PyMuPDF version whose PyMuPDFb wheels we will
# (re)use if generating separate PyMuPDFb wheels. Though as of PyMuPDF-1.24.11
# (2024-10-03) we no longer use PyMuPDFb wheels so this is actually unused.
#
version_b = '1.25.3'
version_mupdf = '1.25.5'
if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'):
# We are in a PyMuPDFb sdist. We specify a dummy package so that pip builds
# from sdists work - pip's build using PyMuPDF's sdist will already create
# the required binaries, but pip will still see `requires_dist` set to
# 'PyMuPDFb', so will also download and build PyMuPDFb's sdist.
#
log(f'Specifying dummy PyMuPDFb wheel.')
def get_requires_for_build_wheel(config_settings=None):
return list()
p = pipcl.Package(
'PyMuPDFb',
version_b,
summary = 'Dummy PyMuPDFb wheel',
description = '',
author = 'Artifex',
author_email = 'support@artifex.com',
license = 'GNU AFFERO GPL 3.0',
tag_python = 'py3',
)
else:
# A normal PyMuPDF package.
with open( f'{g_root}/README.md', encoding='utf-8') as f:
readme_p = f.read()
with open( f'{g_root}/READMEb.md', encoding='utf-8') as f:
readme_b = f.read()
with open( f'{g_root}/READMEd.md', encoding='utf-8') as f:
readme_d = f.read()
tag_python = None
requires_dist = None,
entry_points = None
if 'p' in PYMUPDF_SETUP_FLAVOUR:
version = version_p
name = 'PyMuPDF'
readme = readme_p
summary = 'A high performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents.'
if 'b' not in PYMUPDF_SETUP_FLAVOUR:
requires_dist = f'PyMuPDFb =={version_b}'
# Create a `pymupdf` command.
entry_points = textwrap.dedent('''
[console_scripts]
pymupdf = pymupdf.__main__:main
''')
elif 'b' in PYMUPDF_SETUP_FLAVOUR:
version = version_b
name = 'PyMuPDFb'
readme = readme_b
summary = 'MuPDF shared libraries for PyMuPDF.'
tag_python = 'py3'
elif 'd' in PYMUPDF_SETUP_FLAVOUR:
version = version_b
name = 'PyMuPDFd'
readme = readme_d
summary = 'MuPDF build-time files for PyMuPDF.'
tag_python = 'py3'
else:
assert 0, f'Unrecognised {PYMUPDF_SETUP_FLAVOUR=}.'
p = pipcl.Package(
name,
version,
summary = summary,
description = readme,
description_content_type = 'text/markdown',
classifier = classifier,
author = 'Artifex',
author_email = 'support@artifex.com',
requires_dist = requires_dist,
requires_python = '>=3.9',
license = 'Dual Licensed - GNU AFFERO GPL 3.0 or Artifex Commercial License',
project_url = [
('Documentation, https://pymupdf.readthedocs.io/'),
('Source, https://github.com/pymupdf/pymupdf'),
('Tracker, https://github.com/pymupdf/PyMuPDF/issues'),
('Changelog, https://pymupdf.readthedocs.io/en/latest/changes.html'),
],
entry_points = entry_points,
fn_build=build,
fn_sdist=sdist,
tag_python=tag_python,
py_limited_api=g_py_limited_api,
# 30MB: 9 ZIP_DEFLATED
# 28MB: 9 ZIP_BZIP2
# 23MB: 9 ZIP_LZMA
#wheel_compression = zipfile.ZIP_DEFLATED if (darwin or pyodide) else zipfile.ZIP_LZMA,
wheel_compresslevel = 9,
)
def get_requires_for_build_wheel(config_settings=None):
'''
Adds to pyproject.toml:[build-system]:requires, allowing programmatic
control over what packages we require.
'''
def platform_release_tuple():
r = platform.release()
r = r.split('.')
r = tuple(int(i) for i in r)
log(f'platform_release_tuple() returning {r=}.')
return r
ret = list()
libclang = os.environ.get('PYMUPDF_SETUP_LIBCLANG')
if libclang:
print(f'Overriding to use {libclang=}.')
ret.append(libclang)
elif openbsd:
print(f'OpenBSD: libclang not available via pip; assuming `pkg_add py3-llvm`.')
elif darwin and platform.machine() == 'arm64':
print(f'MacOS/arm64: forcing use of libclang 16.0.6 because 18.1.1 known to fail with `clang.cindex.TranslationUnitLoadError: Error parsing translation unit.`')
ret.append('libclang==16.0.6')
elif darwin and platform_release_tuple() < (18,):
# There are still of problems when building on old macos.
ret.append('libclang==14.0.6')
else:
ret.append('libclang')
if msys2:
print(f'msys2: pip install of swig does not build; assuming `pacman -S swig`.')
elif openbsd:
print(f'OpenBSD: pip install of swig does not build; assuming `pkg_add swig`.')
else:
ret.append( 'swig')
return ret
if PYMUPDF_SETUP_URL_WHEEL:
def build_wheel(
wheel_directory,
config_settings=None,
metadata_directory=None,
p=p,
):
'''
Instead of building wheel, we look for and copy a wheel from location
specified by PYMUPDF_SETUP_URL_WHEEL.
'''
log(f'{PYMUPDF_SETUP_URL_WHEEL=}')
log(f'{p.wheel_name()=}')
url = PYMUPDF_SETUP_URL_WHEEL
if url.startswith(('http://', 'https://')):
leaf = p.wheel_name()
out_path = f'{wheel_directory}{leaf}'
out_path_temp = out_path + '-'
if url.endswith('/'):
url += leaf
log(f'Downloading from {url=} to {out_path_temp=}.')
urllib.request.urlretrieve(url, out_path_temp)
elif url.startswith(f'file://'):
in_path = url[len('file://'):]
log(f'{in_path=}')
if in_path.endswith('/'):
# Look for matching wheel within this directory.
wheels = glob.glob(f'{in_path}*.whl')
log(f'{len(wheels)=}')
for in_path in wheels:
log(f'{in_path=}')
leaf = os.path.basename(in_path)
if p.wheel_name_match(leaf):
log(f'Match: {in_path=}')
break
else:
message = f'Cannot find matching for {p.wheel_name()=} in ({len(wheels)=}):\n'
wheels_text = ''
for wheel in wheels:
wheels_text += f' {wheel}\n'
assert 0, f'Cannot find matching for {p.wheel_name()=} in:\n{wheels_text}'
else:
leaf = os.path.basename(in_path)
out_path = os.path.join(wheel_directory, leaf)
out_path_temp = out_path + '-'
log(f'Copying from {in_path=} to {out_path_temp=}.')
shutil.copy2(in_path, out_path_temp)
else:
assert 0, f'Unrecognised prefix in {PYMUPDF_SETUP_URL_WHEEL=}.'
log(f'Renaming from:\n {out_path_temp}\nto:\n {out_path}.')
os.rename(out_path_temp, out_path)
return os.path.basename(out_path)
else:
build_wheel = p.build_wheel
build_sdist = p.build_sdist
if __name__ == '__main__':
p.handle_argv(sys.argv)
|