mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 29775c020a | |||
| 50950c59df | |||
| 9817eb149e | |||
| a703d2febe | |||
| e304405410 | |||
| 17f992a106 | |||
| 24895082d3 | |||
| 002780c2d9 | |||
| df7f8f3507 | |||
| 312a468cce |
+20
-5
@@ -1,5 +1,20 @@
|
|||||||
# Python Buildpack Changelog
|
# Python Buildpack Changelog
|
||||||
|
|
||||||
|
# 118
|
||||||
|
|
||||||
|
Improvements to Pipenv support.
|
||||||
|
|
||||||
|
# 117
|
||||||
|
|
||||||
|
Bug fix.
|
||||||
|
|
||||||
|
# 116
|
||||||
|
|
||||||
|
Vendoring improvements.
|
||||||
|
|
||||||
|
- Geos libraries should work on Heroku-16 now.
|
||||||
|
- The libffi/libmemcached vendoring step is now skipped on Heroku-16 (since they are installed in the base image).
|
||||||
|
|
||||||
# 115
|
# 115
|
||||||
|
|
||||||
Revert a pull request.
|
Revert a pull request.
|
||||||
@@ -28,17 +43,17 @@ Linting, bugfixes.
|
|||||||
|
|
||||||
# 110
|
# 110
|
||||||
|
|
||||||
|
Update default Python to 3.6.2.
|
||||||
|
|
||||||
|
# 109
|
||||||
|
|
||||||
Update Default Python to 3.6.1, bugfixes.
|
Update Default Python to 3.6.1, bugfixes.
|
||||||
|
|
||||||
- Fixed automatic pip uninstall of dependencies removed from requirements.txt.
|
- Fixed automatic pip uninstall of dependencies removed from requirements.txt.
|
||||||
|
|
||||||
# 109
|
|
||||||
|
|
||||||
Fix output for collectstatic step.
|
|
||||||
|
|
||||||
# 108
|
# 108
|
||||||
|
|
||||||
Updated setuptools.
|
Fix output for collectstatic step.
|
||||||
|
|
||||||
# 107
|
# 107
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# This script serves as the Cryptography build step of the
|
# This script serves as the cffi build step of the
|
||||||
# [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
|
# [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
|
||||||
# compiler.
|
# compiler.
|
||||||
#
|
#
|
||||||
@@ -9,6 +9,11 @@
|
|||||||
#
|
#
|
||||||
# This script is invoked by [`bin/compile`](/).
|
# This script is invoked by [`bin/compile`](/).
|
||||||
|
|
||||||
|
if [[ "$STACK" == "heroku-16" ]]; then
|
||||||
|
# libffi is pre-installed in the stack image so there is no need to vendor it.
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
# The location of the pre-compiled libffi binary.
|
# The location of the pre-compiled libffi binary.
|
||||||
VENDORED_LIBFFI="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libffi.tar.gz"
|
VENDORED_LIBFFI="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libffi.tar.gz"
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,12 @@ if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
|
|||||||
curl "$VENDORED_GDAL" -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_GDAL" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
curl "$VENDORED_GEOS" -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_GEOS" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
curl "$VENDORED_PROJ" -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_PROJ" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
|
|
||||||
|
# Copy libjasper from build image to slug.
|
||||||
|
if [[ "$STACK" == "heroku-16" ]]; then
|
||||||
|
cp /usr/lib/x86_64-linux-gnu/libjasper.so* ".heroku/vendor/lib/."
|
||||||
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
GDAL=$(pwd)/vendor
|
GDAL=$(pwd)/vendor
|
||||||
|
|||||||
+7
-2
@@ -3,13 +3,18 @@
|
|||||||
# Pipenv support (Generate requriements.txt with pipenv).
|
# Pipenv support (Generate requriements.txt with pipenv).
|
||||||
if [[ -f Pipfile ]]; then
|
if [[ -f Pipfile ]]; then
|
||||||
if [[ ! -f requirements.txt ]]; then
|
if [[ ! -f requirements.txt ]]; then
|
||||||
puts-step "Installing requirements with latest pipenv..."
|
puts-step "Installing requirements with latest Pipenv..."
|
||||||
|
|
||||||
# Install pipenv.
|
# Install pipenv.
|
||||||
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
|
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
|
||||||
|
|
||||||
|
if [[ ! -f Pipfile.lock ]]; then
|
||||||
|
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
|
||||||
|
else
|
||||||
|
/app/.heroku/python/bin/pipenv install --system 2>&1 | indent
|
||||||
|
fi
|
||||||
# Install the dependencies.
|
# Install the dependencies.
|
||||||
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
|
|
||||||
|
|
||||||
# Skip pip install, later.
|
# Skip pip install, later.
|
||||||
export SKIP_PIP_INSTALL=1
|
export SKIP_PIP_INSTALL=1
|
||||||
|
|||||||
+5
-1
@@ -9,6 +9,11 @@
|
|||||||
#
|
#
|
||||||
# This script is invoked by [`bin/compile`](/).
|
# This script is invoked by [`bin/compile`](/).
|
||||||
|
|
||||||
|
if [[ "$STACK" == "heroku-16" ]]; then
|
||||||
|
# libmemcached is pre-installed in the stack image so there is no need to vendor it.
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
# The location of the pre-compiled libmemcached binary.
|
# The location of the pre-compiled libmemcached binary.
|
||||||
VENDORED_MEMCACHED="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libmemcache.tar.gz"
|
VENDORED_MEMCACHED="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libmemcache.tar.gz"
|
||||||
|
|
||||||
@@ -16,7 +21,6 @@ VENDORED_MEMCACHED="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor
|
|||||||
# shellcheck source=bin/utils
|
# shellcheck source=bin/utils
|
||||||
source "$BIN_DIR/utils"
|
source "$BIN_DIR/utils"
|
||||||
|
|
||||||
|
|
||||||
# If pylibmc exists within requirements, use vendored libmemcached.
|
# If pylibmc exists within requirements, use vendored libmemcached.
|
||||||
if (pip-grep -s requirements.txt pylibmc &> /dev/null) then
|
if (pip-grep -s requirements.txt pylibmc &> /dev/null) then
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-1
@@ -10,7 +10,7 @@ hash -r
|
|||||||
|
|
||||||
echo "Building gdal..."
|
echo "Building gdal..."
|
||||||
|
|
||||||
VERSION="1.11.5"
|
VERSION="2.2.1"
|
||||||
SOURCE_TARBALL="http://download.osgeo.org/gdal/${VERSION}/gdal-${VERSION}.tar.gz"
|
SOURCE_TARBALL="http://download.osgeo.org/gdal/${VERSION}/gdal-${VERSION}.tar.gz"
|
||||||
|
|
||||||
curl -L $SOURCE_TARBALL | tar zx
|
curl -L $SOURCE_TARBALL | tar zx
|
||||||
|
|||||||
Vendored
+5
-3
@@ -10,14 +10,16 @@ hash -r
|
|||||||
|
|
||||||
echo "Building geos..."
|
echo "Building geos..."
|
||||||
|
|
||||||
SOURCE_TARBALL='http://download.osgeo.org/geos/geos-3.4.3.tar.bz2'
|
VERSION=3.6.2
|
||||||
|
|
||||||
|
SOURCE_TARBALL="http://download.osgeo.org/geos/geos-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
curl -L $SOURCE_TARBALL | tar xj
|
curl -L $SOURCE_TARBALL | tar xj
|
||||||
|
|
||||||
cd geos-3.4.3
|
pushd "geos-${VERSION}"
|
||||||
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
cd ..
|
popd
|
||||||
|
|||||||
Vendored
+5
-4
@@ -10,14 +10,15 @@ hash -r
|
|||||||
|
|
||||||
echo "Building gdal..."
|
echo "Building gdal..."
|
||||||
|
|
||||||
SOURCE_TARBALL='http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
|
VERSION=4.9.3
|
||||||
|
SOURCE_TARBALL="http://download.osgeo.org/proj/proj-${VERSION}.tar.gz"
|
||||||
|
|
||||||
curl -L $SOURCE_TARBALL | tar zx
|
curl -L $SOURCE_TARBALL | tar zx
|
||||||
|
|
||||||
cd proj-4.8.0
|
pushd "proj-${VERSION}"
|
||||||
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
./configure --prefix=$OUT_PREFIX --enable-static=no
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
cd ..
|
popd
|
||||||
|
|||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
cffi
|
||||||
Reference in New Issue
Block a user