Skip to content

Commit b87c62e

Browse files
authored
refactor: use pipx to install auditwheel & cmake (#1143)
1 parent 347adca commit b87c62e

9 files changed

+108
-25
lines changed

docker/Dockerfile

+11-9
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,17 @@ COPY --from=build_git /manylinux-rootfs /
148148
COPY --from=build_swig /manylinux-rootfs /
149149
COPY --from=build_cpython /manylinux-rootfs /
150150
COPY --from=all_python /opt/_internal /opt/_internal/
151-
COPY build_scripts/finalize.sh build_scripts/update-system-packages.sh \
152-
build_scripts/python-tag-abi-tag.py \
153-
build_scripts/requirements3.6.txt \
154-
build_scripts/requirements3.7.txt \
155-
build_scripts/requirements3.8.txt \
156-
build_scripts/requirements3.9.txt \
157-
build_scripts/requirements3.10.txt \
158-
build_scripts/requirements-tools.txt \
159-
/build_scripts/
151+
COPY build_scripts/finalize.sh \
152+
build_scripts/update-system-packages.sh \
153+
build_scripts/python-tag-abi-tag.py \
154+
build_scripts/requirements3.6.txt \
155+
build_scripts/requirements3.7.txt \
156+
build_scripts/requirements3.8.txt \
157+
build_scripts/requirements3.9.txt \
158+
build_scripts/requirements3.10.txt \
159+
build_scripts/requirements-base-tools.txt \
160+
/build_scripts/
161+
COPY build_scripts/requirements-tools/* /build_scripts/requirements-tools/
160162
RUN manylinux-entrypoint /build_scripts/finalize.sh && rm -rf /build_scripts
161163

162164
ENV SSL_CERT_FILE=/opt/_internal/certs.pem

docker/build_scripts/finalize.sh

+11-10
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,8 @@ source $TOOLS_PATH/bin/activate
4343

4444
# Install default packages
4545
pip install -U --require-hashes -r $MY_DIR/requirements3.9.txt
46-
# Install certifi and auditwheel
47-
pip install -U --require-hashes -r $MY_DIR/requirements-tools.txt
48-
49-
# Make auditwheel available in PATH
50-
ln -s $TOOLS_PATH/bin/auditwheel /usr/local/bin/auditwheel
51-
52-
# Make CMake available in PATH
53-
ln -s $TOOLS_PATH/bin/cmake /usr/local/bin/cmake
54-
ln -s $TOOLS_PATH/bin/cpack /usr/local/bin/cpack
55-
ln -s $TOOLS_PATH/bin/ctest /usr/local/bin/ctest
46+
# Install certifi and pipx
47+
pip install -U --require-hashes -r $MY_DIR/requirements-base-tools.txt
5648

5749
# Make pipx available in PATH,
5850
# Make sure when root installs apps, they're also in the PATH
@@ -62,6 +54,7 @@ cat <<EOF > /usr/local/bin/pipx
6254
set -euo pipefail
6355
6456
if [ \$(id -u) -eq 0 ]; then
57+
export PIPX_HOME=/opt/_internal/pipx
6558
export PIPX_BIN_DIR=/usr/local/bin
6659
fi
6760
${TOOLS_PATH}/bin/pipx "\$@"
@@ -79,6 +72,14 @@ export SSL_CERT_FILE=/opt/_internal/certs.pem
7972
# Deactivate the tools virtual environment
8073
deactivate
8174

75+
# install other tools with pipx
76+
pushd $MY_DIR/requirements-tools
77+
for TOOL_PATH in $(find . -type f); do
78+
TOOL=$(basename ${TOOL_PATH})
79+
pipx install --pip-args="--require-hashes -r" ${TOOL}
80+
done
81+
popd
82+
8283
# We do not need the precompiled .pyc and .pyo files.
8384
clean_pyc /opt/_internal
8485

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#
2+
# This file is autogenerated by pip-compile with python 3.9
3+
# To update, run:
4+
#
5+
# pip-compile --generate-hashes --output-file=docker/build_scripts/requirements-base-tools.txt requirements-base-tools.in
6+
#
7+
argcomplete==1.12.3 \
8+
--hash=sha256:291f0beca7fd49ce285d2f10e4c1c77e9460cf823eef2de54df0c0fec88b0d81 \
9+
--hash=sha256:2c7dbffd8c045ea534921e63b0be6fe65e88599990d8dc408ac8c542b72a5445
10+
# via pipx
11+
certifi==2021.5.30 \
12+
--hash=sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee \
13+
--hash=sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8
14+
# via -r requirements-base-tools.in
15+
click==8.0.1 \
16+
--hash=sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a \
17+
--hash=sha256:fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6
18+
# via userpath
19+
packaging==21.0 \
20+
--hash=sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7 \
21+
--hash=sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14
22+
# via pipx
23+
pipx==0.16.3 \
24+
--hash=sha256:51fa41281383212db3b2a6906713871edc1a7d597ae387873026402e281a0b25 \
25+
--hash=sha256:f8af81adaf55716a44f62197528ed3468e33ce53afa21f3b9fe812319bef851c
26+
# via -r requirements-base-tools.in
27+
pyparsing==2.4.7 \
28+
--hash=sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1 \
29+
--hash=sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b
30+
# via packaging
31+
userpath==1.6.0 \
32+
--hash=sha256:43569129eeecec6c567bcbd47120c161a43344712417de013b754191961426db \
33+
--hash=sha256:b2b9a5ca1478ecfa63514b48709d650f48bf7be89f62bd236db556b85b6deff6
34+
# via pipx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# This file is autogenerated by pip-compile with python 3.9
3+
# To update, run:
4+
#
5+
# pip-compile --generate-hashes --output-file=docker/build_scripts/requirements-tools/auditwheel .nox/tools/tmp/auditwheel.in
6+
#
7+
auditwheel==4.0.0 \
8+
--hash=sha256:03a079fe273f42336acdb5953ff5ce7578f93ca6a832b16c835fe337a1e2bd4a \
9+
--hash=sha256:96927695ddf27b4edb67291e326908d64ffe272b8a42b9504f283e7ae5ebbc14
10+
# via -r .nox/tools/tmp/auditwheel.in
11+
pyelftools==0.27 \
12+
--hash=sha256:5609aa6da1123fccfae2e8431a67b4146aa7fad5b3889f808df12b110f230937 \
13+
--hash=sha256:cde854e662774c5457d688ca41615f6594187ba7067af101232df889a6b7a66b
14+
# via auditwheel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# This file is autogenerated by pip-compile with python 3.9
3+
# To update, run:
4+
#
5+
# pip-compile --generate-hashes --output-file=docker/build_scripts/requirements-tools/cmake .nox/tools/tmp/cmake.in
6+
#
7+
cmake==3.21.0 \
8+
--hash=sha256:0a02fb58d782f403587f119535ef0905941308494547053b97cd7cb4df181a07 \
9+
--hash=sha256:10247eced45fd7cd82f8f45700a764822c7a768cbb53d54169ea9a9a79252b84 \
10+
--hash=sha256:68889247d5f78848bb87d3dec5716169f918c04b11a900084b3259ddeee64dba \
11+
--hash=sha256:6e6083d95872124beea93c3abd405f353ad2d870902866f7c92cdb370621c379 \
12+
--hash=sha256:73be00791abbf85a482417f10cd7fd9d352b25a5fbc89ab635a571578042278c \
13+
--hash=sha256:76e87e27e889f57cf5a2553754b16a6f16edcb8eadaa638506842c4324bdf4eb \
14+
--hash=sha256:cbc1768df88daee24ecdf98f263422a6d8862bbd126084287d80017f7e7af34c \
15+
--hash=sha256:cd51962b6021760bc5ac2eea5eaa5a8d8bec5820d6e299dee084f133c3440bba \
16+
--hash=sha256:e1f96e8ef7776d413669cec93e07437e201a0b84b325974fc3563edec4f2ad20
17+
# via -r .nox/tools/tmp/cmake.in

noxfile.py

+18-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
from pathlib import Path
2+
13
import nox
2-
import locale
34

45

56
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
67
def compile(session):
78
session.install("pip-tools")
8-
99
session.run(
1010
"pip-compile",
1111
"--generate-hashes",
@@ -23,8 +23,22 @@ def tools(session):
2323
session.run(
2424
"pip-compile",
2525
"--generate-hashes",
26-
"requirements-tools.in",
26+
"requirements-base-tools.in",
2727
"--upgrade",
2828
"--output-file",
29-
f"docker/build_scripts/requirements-tools.txt",
29+
"docker/build_scripts/requirements-base-tools.txt",
3030
)
31+
tools = Path("requirements-tools.in").read_text().split("\n")
32+
for tool in tools:
33+
if tool.strip() == "":
34+
continue
35+
tmp_file = Path(session.create_tmp()) / f"{tool}.in"
36+
tmp_file.write_text(f"{tool}\n")
37+
session.run(
38+
"pip-compile",
39+
"--generate-hashes",
40+
str(tmp_file),
41+
"--upgrade",
42+
"--output-file",
43+
f"docker/build_scripts/requirements-tools/{tool}",
44+
)

requirements-base-tools.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
certifi
2+
pipx

requirements-tools.in

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
auditwheel
2-
certifi
32
cmake
4-
pipx

tests/run_tests.sh

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ for PYTHON in /opt/python/*/bin/python; do
4141
done
4242

4343
# minimal tests for tools that should be present
44+
auditwheel --version
4445
autoconf --version
4546
automake --version
4647
libtoolize --version

0 commit comments

Comments
 (0)