mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
d39b8c19b2
* basics of metrics * pin to stdlib v2 * measure python installation size * lots of additional metrics * add old output methods * $ * empty commit
82 lines
1.7 KiB
Bash
Executable File
82 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
shopt -s extglob
|
|
|
|
# The standard library.
|
|
if [[ ! -f /tmp/stdlib.sh ]]; then
|
|
curl -s https://raw.githubusercontent.com/heroku/buildpack-stdlib/v2/stdlib.sh > /tmp/stdlib.sh
|
|
fi
|
|
source /tmp/stdlib.sh
|
|
|
|
if [ $(uname) == Darwin ]; then
|
|
sed() { command sed -l "$@"; }
|
|
else
|
|
sed() { command sed -u "$@"; }
|
|
fi
|
|
|
|
# Syntax sugar.
|
|
indent() {
|
|
sed "s/^/ /"
|
|
}
|
|
|
|
|
|
# Clean up pip output
|
|
cleanup() {
|
|
sed -e 's/\.\.\.\+/.../g' | sed -e '/already satisfied/Id' | sed -e '/No files were found to uninstall/Id' | sed -e '/Overwriting/Id' | sed -e '/python executable/Id' | sed -e '/no previously-included files/Id'
|
|
}
|
|
|
|
# Buildpack Steps.
|
|
puts-step() {
|
|
echo "-----> $@"
|
|
}
|
|
|
|
# Buildpack Warnings.
|
|
puts-warn() {
|
|
echo " ! $@"
|
|
}
|
|
|
|
# Does some serious copying.
|
|
deep-cp() {
|
|
declare source="$1" target="$2"
|
|
|
|
mkdir -p "$target"
|
|
|
|
# cp doesn't like being called without source params,
|
|
# so make sure they expand to something first.
|
|
# subshell to avoid surprising caller with shopts.
|
|
(
|
|
shopt -s nullglob dotglob
|
|
set -- "$source"/!(tmp|.|..)
|
|
[[ $# == 0 ]] || cp -a "$@" "$target"
|
|
)
|
|
}
|
|
|
|
|
|
sub-env() {
|
|
|
|
WHITELIST=${2:-''}
|
|
BLACKLIST=${3:-'^(GIT_DIR|STACK|PYTHONHOME|LD_LIBRARY_PATH|LIBRARY_PATH|PATH)$'}
|
|
|
|
# Python-specific variables.
|
|
export PYHONHOME=$BUILD_DIR/.heroku/python
|
|
export PYTHONPATH=$BUILD_DIR/
|
|
|
|
(
|
|
if [ -d "$ENV_DIR" ]; then
|
|
for e in $(ls $ENV_DIR); do
|
|
echo "$e" | grep -E "$WHITELIST" | grep -qvE "$BLACKLIST" &&
|
|
export "$e=$(cat $ENV_DIR/$e)"
|
|
:
|
|
done
|
|
fi
|
|
|
|
$1
|
|
|
|
)
|
|
}
|
|
|
|
# Measure the size of the Python installation.
|
|
measure-size() {
|
|
echo "$((du -s .heroku/python 2>/dev/null || echo 0) | awk '{print $1}')"
|
|
}
|
|
|