summaryrefslogtreecommitdiff
path: root/etc/hstdp-2018.3a/tasks/001-python-packages.sh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2018-12-06 01:26:19 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2018-12-06 01:26:19 -0500
commitb66c4e1b676da43ad771ec06d4d54f274f038626 (patch)
tree1be737088c445d10bc2272ee4440371e56d75312 /etc/hstdp-2018.3a/tasks/001-python-packages.sh
parent2119eeef5d80ae1c14fdd1c45a9d81908ce14e3d (diff)
downloaddocker-pipeline-b66c4e1b676da43ad771ec06d4d54f274f038626.tar.gz
Change build order
Diffstat (limited to 'etc/hstdp-2018.3a/tasks/001-python-packages.sh')
-rwxr-xr-xetc/hstdp-2018.3a/tasks/001-python-packages.sh40
1 files changed, 0 insertions, 40 deletions
diff --git a/etc/hstdp-2018.3a/tasks/001-python-packages.sh b/etc/hstdp-2018.3a/tasks/001-python-packages.sh
deleted file mode 100755
index 3d89b6a..0000000
--- a/etc/hstdp-2018.3a/tasks/001-python-packages.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-set -e
-set -x
-
-# Uses GLOBAL environment variable: PYTHON_VERSION defined by `docker build` argument
-prefix="${TOOLCHAIN}"
-sysconfdir="${TOOLCHAIN_BUILD}/etc/${PIPELINE}"
-reqdir=${sysconfdir}/pip
-
-export PATH="${prefix}/bin:${PATH}"
-export CFLAGS="-I${prefix}/include"
-export LDFLAGS="-L${prefix}/lib -Wl,-rpath=${prefix}/lib"
-
-function pre()
-{
- if [[ ! -d ${reqdir} ]]; then
- # Nothing there, but maybe that's on purpose.
- exit 0
- fi
-}
-
-function build()
-{
- pre
- # Iterate over pip requirement files
- for req in ${reqdir}/*
- do
- pip install --upgrade --progress-bar=off -r "${req}"
- done
- post
-}
-
-function post()
-{
- rm -rf ~/.cache/pip
- [[ -d src ]] && rm -rf src
- [[ -f gmon.out ]] && rm -rf gmon.out
-}
-
-build