@@ -43,16 +43,8 @@ source $TOOLS_PATH/bin/activate
43
43
44
44
# Install default packages
45
45
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
56
48
57
49
# Make pipx available in PATH,
58
50
# Make sure when root installs apps, they're also in the PATH
@@ -62,6 +54,7 @@ cat <<EOF > /usr/local/bin/pipx
62
54
set -euo pipefail
63
55
64
56
if [ \$ (id -u) -eq 0 ]; then
57
+ export PIPX_HOME=/opt/_internal/pipx
65
58
export PIPX_BIN_DIR=/usr/local/bin
66
59
fi
67
60
${TOOLS_PATH} /bin/pipx "\$ @"
@@ -79,6 +72,14 @@ export SSL_CERT_FILE=/opt/_internal/certs.pem
79
72
# Deactivate the tools virtual environment
80
73
deactivate
81
74
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
+
82
83
# We do not need the precompiled .pyc and .pyo files.
83
84
clean_pyc /opt/_internal
84
85
0 commit comments