-
Notifications
You must be signed in to change notification settings - Fork 22
/
build-manylinux-wheel.sh
executable file
·82 lines (74 loc) · 3.28 KB
/
build-manylinux-wheel.sh
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
#!/bin/bash
# Build script for the manylinux wheel. Depends on git and docker/podman
# (set via $DOCKER). Set $PY_VERS to a space-separated list of dotted Python
# versions ('3.x 3.y') to build the wheels only for these versions.
set -eo pipefail
set -x
shopt -s nullglob
if [[ "$MPLCAIRO_MANYLINUX" != 1 ]]; then
toplevel="$(git -C "$(dirname "$0")" rev-parse --show-toplevel)"
tmpdir="$(mktemp -d)"
trap 'rm -rf "$tmpdir"' EXIT INT TERM
git clone "$toplevel" "$tmpdir/mplcairo"
python -mvenv "$tmpdir/tmpenv"
"$tmpdir/tmpenv/bin/python" -mpip install --upgrade setuptools_scm
mplcairo_version="$("$tmpdir/tmpenv/bin/python" -msetuptools_scm)"
sed -i '/Removed for manylinux build/d' "$tmpdir/mplcairo/pyproject.toml"
relpath="$(
python -c 'import os, sys; print(os.path.relpath(*map(os.path.realpath, sys.argv[1:])))' \
"$0" "$toplevel")"
${DOCKER:-docker} run \
-e MPLCAIRO_MANYLINUX=1 -e PY_VERS="${PY_VERS:-3.8 3.9 3.10 3.11 3.12}" \
-e mplcairo_version="$mplcairo_version" \
--volume "$tmpdir/mplcairo":/io/mplcairo:Z \
quay.io/pypa/manylinux2014_x86_64 \
"/io/mplcairo/$relpath"
mkdir -p "$toplevel/dist"
mv "$tmpdir/mplcairo/dist/"*-manylinux*.whl "$toplevel/dist"
else
echo 'Setting up headers for dependencies.'
(
yum install -y xz
mkdir /workdir
cd /workdir
# Use the last versions before Arch switched to zstd.
filenames=(
cairo-1.17.2%2B17%2Bg52a7c79fd-2-x86_64.pkg.tar.xz
fontconfig-2%3A2.13.91%2B24%2Bg75eadca-1-x86_64.pkg.tar.xz
freetype2-2.10.1-1-x86_64.pkg.tar.xz
libraqm-0.7.0-1-x86_64.pkg.tar.xz
python-cairo-1.18.2-3-x86_64.pkg.tar.xz
)
for filename in "${filenames[@]}"; do
name="$(rev <<<"$filename" | cut -d- -f4- | rev)"
mkdir "$name"
# In tar, ignore "ignoring unknown extended header keyword" warning.
curl -L "https://archive.org/download/archlinux_pkg_$name/$filename" |
xz -cd - |
(tar -C "$name" -xf - 2>/dev/null || true)
mv "$name/usr/include/"* /usr/include
done
# Shim pkg-config.
echo '#!/bin/sh' >/usr/bin/pkg-config
chmod a+x /usr/bin/pkg-config
# Shim access to pycairo's header.
mv "$(find python-cairo -name py3cairo.h)" /usr/include
)
(
cd /io/mplcairo
for py_ver in $PY_VERS; do
py_prefix=("/opt/python/cp${py_ver/./}-"*)
echo "Building the wheel for Python $py_ver."
"$py_prefix/bin/python" -mpip install build
# Force a rebuild of the extension.
# setuptools<72.2 reads CFLAGS, >=72.2 reads CXXFLAGS.
SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MPLCAIRO="$mplcairo_version" \
MPLCAIRO_NO_PYCAIRO=1 \
CFLAGS="-static-libgcc -static-libstdc++ -I/usr/include/cairo -I/usr/include/freetype2" \
CXXFLAGS="-static-libgcc -static-libstdc++ -I/usr/include/cairo -I/usr/include/freetype2" \
LDFLAGS="-static-libgcc -static-libstdc++" \
"$py_prefix/bin/python" -mbuild
done
auditwheel -v repair -wdist dist/*.whl
)
fi