mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
122 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c8142b02d | |||
| 590d10ea60 | |||
| 4723abb896 | |||
| 98b2c904c3 | |||
| 155b5eecb9 | |||
| fb52d1bf59 | |||
| 845635d667 | |||
| 12c1d0b1d2 | |||
| 0c26eae214 | |||
| 325a3165e4 | |||
| bf378916af | |||
| 38dbb17313 | |||
| c029e44dc8 | |||
| 0dd9911e91 | |||
| f74d4db8c5 | |||
| 2b00650c01 | |||
| 2512694df9 | |||
| d380d949b7 | |||
| f289984061 | |||
| 1d37749ec1 | |||
| d6ccb1aa57 | |||
| da13bf1f3d | |||
| 78767e7199 | |||
| 194932889d | |||
| 4293ec5564 | |||
| 57baab9f68 | |||
| a7c20eea42 | |||
| 0a4cc2c476 | |||
| cbb718bb8b | |||
| db95cdd3f3 | |||
| 04f3ddbc86 | |||
| f06f5676e8 | |||
| c8c8995d70 | |||
| 4ee3baaded | |||
| ff94908505 | |||
| 5496c02f9f | |||
| 8d6d14b671 | |||
| 98dc586a99 | |||
| 9b185f99d5 | |||
| e8a79bbda5 | |||
| e621ff4d5e | |||
| 7a579e4eb7 | |||
| a1ed1d7b42 | |||
| 9157111d44 | |||
| 48f67ac5a6 | |||
| f6d63ea53d | |||
| 668219ae59 | |||
| 18c404f72d | |||
| 84f2fb5396 | |||
| d39b8c19b2 | |||
| 9a24c9d17d | |||
| 29abb059b6 | |||
| eb056bc58d | |||
| 70a152bd46 | |||
| 0b580d997e | |||
| 9f63582a23 | |||
| 5f33811357 | |||
| 3bd0a0e7cc | |||
| b7c3cdb607 | |||
| 3a89a84399 | |||
| 59a70d2c63 | |||
| 26ed6daeaa | |||
| cafd418220 | |||
| dded42350f | |||
| 65648fb7a8 | |||
| 45b0d18532 | |||
| 8f258ae0b8 | |||
| b80f7a953f | |||
| f27a84e015 | |||
| 5794bacbbf | |||
| e29b60dcfd | |||
| 7c95b156ce | |||
| e05346e8c1 | |||
| 9deea01360 | |||
| c19f0f83ee | |||
| 8b88d655c4 | |||
| 0e8c0077ff | |||
| cfda557b31 | |||
| 44c2b75b8d | |||
| c3849fb6d3 | |||
| 5608ed9f3c | |||
| e9108858fc | |||
| c85f5d015c | |||
| 321543d4ae | |||
| 8bd209de13 | |||
| 58e9c84347 | |||
| dcfff15151 | |||
| 9426dc8668 | |||
| cdbeb6419e | |||
| 858113cf76 | |||
| a547da0b52 | |||
| df52fd46e5 | |||
| 2e37a96984 | |||
| 12c3b8cb1d | |||
| 0fadebf7d8 | |||
| 33ccaa9e45 | |||
| 6b5ec50ab9 | |||
| 63810f29d3 | |||
| 0de749a6a2 | |||
| 2df1131d3c | |||
| af0795264b | |||
| 327daa5f32 | |||
| 09b7e44841 | |||
| e26a0f04d9 | |||
| c92f379f78 | |||
| 893bdec066 | |||
| 607dcfda07 | |||
| 26a0b9678f | |||
| e58e5d2b74 | |||
| 6faa5a4efc | |||
| 2881d65e4e | |||
| 1696e7cee6 | |||
| 35b89386ed | |||
| 3634eb1dbf | |||
| 66f5a66740 | |||
| 6e2a504fc1 | |||
| 124aff5ea6 | |||
| c44ab4cd03 | |||
| d1ab87748b | |||
| 6844d1252d | |||
| 1346c29089 | |||
| 3bc1b5e697 |
@@ -0,0 +1 @@
|
|||||||
|
.git/
|
||||||
@@ -1,2 +1,5 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
site
|
site
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
/.envrc
|
||||||
|
|||||||
+22
-5
@@ -1,6 +1,23 @@
|
|||||||
language: bash
|
language: bash
|
||||||
sudo: required
|
dist: trusty
|
||||||
services:
|
jobs:
|
||||||
- docker
|
include:
|
||||||
install: docker pull heroku/cedar:14
|
- stage: "Bash linting (shellcheck)"
|
||||||
script: make test
|
sudo: false
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources:
|
||||||
|
- debian-sid # Grab shellcheck from the Debian repo (o_O)
|
||||||
|
packages:
|
||||||
|
- shellcheck
|
||||||
|
script: make check
|
||||||
|
|
||||||
|
- stage: "Stack Tests"
|
||||||
|
services: docker
|
||||||
|
env: STACK=heroku-16
|
||||||
|
script: ./tests.sh
|
||||||
|
|
||||||
|
- stage: "Stack Tests"
|
||||||
|
services: docker
|
||||||
|
env: STACK=cedar-14
|
||||||
|
script: ./tests.sh
|
||||||
|
|||||||
@@ -1,5 +1,89 @@
|
|||||||
# Python Buildpack Changelog
|
# Python Buildpack Changelog
|
||||||
|
|
||||||
|
# 113
|
||||||
|
|
||||||
|
- Updates to Pipenv support.
|
||||||
|
|
||||||
|
# 112
|
||||||
|
|
||||||
|
Bugfix.
|
||||||
|
|
||||||
|
- Fixed grep output bug.
|
||||||
|
|
||||||
|
# 111
|
||||||
|
|
||||||
|
Linting, bugfixes.
|
||||||
|
|
||||||
|
# 110
|
||||||
|
|
||||||
|
Update Default Python to 3.6.1, bugfixes.
|
||||||
|
|
||||||
|
- Fixed automatic pip uninstall of dependencies removed from requirements.txt.
|
||||||
|
|
||||||
|
# 109
|
||||||
|
|
||||||
|
Fix output for collectstatic step.
|
||||||
|
|
||||||
|
# 108
|
||||||
|
|
||||||
|
Updated setuptools.
|
||||||
|
|
||||||
|
# 107
|
||||||
|
|
||||||
|
Bugfix for C dependency installation.
|
||||||
|
|
||||||
|
# 106
|
||||||
|
|
||||||
|
Don't install packages that could mess up packaging.
|
||||||
|
|
||||||
|
- The Python buildpack will automatically remove `six`, `pyparsing`, `appdirs`,
|
||||||
|
`setuptools`, and `distribute` from a `requirements.txt` file now, as these
|
||||||
|
packages are provided by the Python buildpack.
|
||||||
|
|
||||||
|
# 105
|
||||||
|
|
||||||
|
Improvements to output messaging.
|
||||||
|
|
||||||
|
# 104
|
||||||
|
|
||||||
|
General improvements.
|
||||||
|
|
||||||
|
- Fix for Heroku CI.
|
||||||
|
- Use `pkg_resources` to check if a distribution is installed instead of
|
||||||
|
parsing `requirements.txt`. ([#395][395])
|
||||||
|
|
||||||
|
[395]: https://github.com/heroku/heroku-buildpack-python/pull/395
|
||||||
|
|
||||||
|
## 103
|
||||||
|
|
||||||
|
Bug fixes and improvements.
|
||||||
|
|
||||||
|
- Fix for Pipenv.
|
||||||
|
- Fix for Heroku CI.
|
||||||
|
- Improve handling of WEB_CONCURRENCY when using multiple buildpacks.
|
||||||
|
- Adjust environment variables set during the build to more closely match those in the dyno environment (DYNO is now available, STACK is not).
|
||||||
|
- Restore the build cache prior to running bin/pre_compile.
|
||||||
|
|
||||||
|
## 102
|
||||||
|
|
||||||
|
Buildpack code cleanup.
|
||||||
|
|
||||||
|
- Improved messaging around NLTK.
|
||||||
|
|
||||||
|
## 101
|
||||||
|
|
||||||
|
Updated setuptools installation method.
|
||||||
|
|
||||||
|
- Improved pipenv support.
|
||||||
|
|
||||||
|
## 100
|
||||||
|
|
||||||
|
Preliminary pipenv support.
|
||||||
|
|
||||||
|
## 99
|
||||||
|
|
||||||
|
Cleanup.
|
||||||
|
|
||||||
## 98
|
## 98
|
||||||
|
|
||||||
Official NLTK support and other improvements.
|
Official NLTK support and other improvements.
|
||||||
|
|||||||
+7
-5
@@ -1,11 +1,13 @@
|
|||||||
FROM heroku/heroku:16-build
|
FROM heroku/heroku:16-build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
ENV WORKSPACE_DIR=/app/builds
|
ENV WORKSPACE_DIR="/app/builds" \
|
||||||
|
S3_BUCKET="lang-python" \
|
||||||
|
S3_PREFIX="heroku-16/"
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y python-pip
|
RUN apt-get update && apt-get install -y python-pip && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install bob-builder application
|
COPY requirements.txt /app/
|
||||||
RUN pip install bob-builder==0.0.5
|
RUN pip install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt
|
||||||
|
|
||||||
COPY . /app
|
COPY . /app
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
MIT License:
|
MIT License:
|
||||||
|
|
||||||
Copyright (C) 2016 Heroku, Inc.
|
Copyright (C) 2017 Heroku, Inc.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,37 @@
|
|||||||
# These targets are not files
|
# These targets are not files
|
||||||
.PHONY: tests
|
.PHONY: tests
|
||||||
|
|
||||||
test: test-cedar-14
|
test: test-heroku-16
|
||||||
|
|
||||||
|
check:
|
||||||
|
@shellcheck -x bin/compile bin/detect bin/release bin/test-compile bin/utils bin/warnings
|
||||||
|
@shellcheck -x bin/steps/collectstatic bin/steps/cryptography bin/steps/eggpath-fix bin/steps/eggpath-fix2 bin/steps/gdal bin/steps/geo-libs bin/steps/mercurial bin/steps/nltk bin/steps/pip-install bin/steps/pip-uninstall bin/steps/pipenv bin/steps/pipenv-python-version bin/steps/pylibmc bin/steps/python
|
||||||
|
@shellcheck -x bin/steps/hooks/*
|
||||||
|
|
||||||
test-cedar-14:
|
test-cedar-14:
|
||||||
@echo "Running tests in docker (cedar-14)..."
|
@echo "Running tests in docker (cedar-14)..."
|
||||||
@docker run -v $(shell pwd):/buildpack:ro --rm -it -e "STACK=cedar-14" heroku/cedar:14 bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
|
@docker run -v $(shell pwd):/buildpack:ro --rm -it -e "STACK=cedar-14" heroku/cedar:14 bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
|
||||||
@echo ""
|
@echo ""
|
||||||
|
|
||||||
|
test-heroku-16:
|
||||||
|
@echo "Running tests in docker (heroku-16)..."
|
||||||
|
@docker run -v $(shell pwd):/buildpack:ro --rm -it -e "STACK=heroku-16" heroku/heroku:16-build bash -c 'cp -r /buildpack /buildpack_test; cd /buildpack_test/; test/run;'
|
||||||
|
@echo ""
|
||||||
|
|
||||||
|
buildenv-heroku-16:
|
||||||
|
@echo "Creating build environment (heroku-16)..."
|
||||||
|
@echo
|
||||||
|
@docker build --pull -t python-buildenv-heroku-16 .
|
||||||
|
@echo
|
||||||
|
@echo "Usage..."
|
||||||
|
@echo
|
||||||
|
@echo " $$ export AWS_ACCESS_KEY_ID=foo AWS_SECRET_ACCESS_KEY=bar # Optional unless deploying"
|
||||||
|
@echo " $$ bob build runtimes/python-2.7.13"
|
||||||
|
@echo " $$ bob deploy runtimes/python-2.7.13"
|
||||||
|
@echo
|
||||||
|
@docker run -it --rm python-buildenv-heroku-16
|
||||||
|
|
||||||
tools:
|
tools:
|
||||||
git clone https://github.com/kennethreitz/pip-pop.git
|
git clone https://github.com/kennethreitz/pip-pop.git
|
||||||
mv pip-pop/bin/* vendor/pip-pop/
|
mv pip-pop/bin/* vendor/pip-pop/
|
||||||
rm -fr pip-pop
|
rm -fr pip-pop
|
||||||
|
|||||||
@@ -0,0 +1,137 @@
|
|||||||
|
This buildpack includes some vendorized packages to ease installation.
|
||||||
|
|
||||||
|
jq license
|
||||||
|
----------
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
shunit2 license
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
|
||||||
|
|
||||||
|
0. Additional Definitions.
|
||||||
|
|
||||||
|
As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
|
||||||
|
|
||||||
|
An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
|
||||||
|
|
||||||
|
A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”.
|
||||||
|
|
||||||
|
The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
|
||||||
|
|
||||||
|
The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
|
||||||
|
|
||||||
|
1. Exception to Section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
2. Conveying Modified Versions.
|
||||||
|
|
||||||
|
If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
|
||||||
|
|
||||||
|
a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
|
||||||
|
b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
|
||||||
|
3. Object Code Incorporating Material from Library Header Files.
|
||||||
|
|
||||||
|
The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
|
||||||
|
b) Accompany the object code with a copy of the GNU GPL and this license document.
|
||||||
|
4. Combined Works.
|
||||||
|
|
||||||
|
You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
|
||||||
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
|
||||||
|
c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
|
||||||
|
d) Do one of the following:
|
||||||
|
0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
|
||||||
|
1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
|
||||||
|
e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
|
||||||
|
5. Combined Libraries.
|
||||||
|
|
||||||
|
You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
|
||||||
|
|
||||||
|
a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
|
||||||
|
b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
|
||||||
|
6. Revised Versions of the GNU Lesser General Public License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
|
||||||
|
|
||||||
|
get-pip.py license
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Copyright (c) 2008-2016 The pip developers (see AUTHORS.txt file)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
pip-pop license
|
||||||
|
---------------
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Kenneth Reitz.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
@@ -8,7 +8,7 @@ This is the official [Heroku buildpack](https://devcenter.heroku.com/articles/bu
|
|||||||
|
|
||||||
Recommended web frameworks include **Django** and **Flask**. The recommended webserver is **Gunicorn**. There are no restrictions around what software can be used (as long as it's pip-installable). Web processes must bind to `$PORT`, and only the HTTP protocol is permitted for incoming connections.
|
Recommended web frameworks include **Django** and **Flask**. The recommended webserver is **Gunicorn**. There are no restrictions around what software can be used (as long as it's pip-installable). Web processes must bind to `$PORT`, and only the HTTP protocol is permitted for incoming connections.
|
||||||
|
|
||||||
Some Python packages with obscure C dependencies (e.g. scipy) are [not compatible](https://devcenter.heroku.com/articles/python-c-deps).
|
Some Python packages with obscure C dependencies are [not compatible](https://devcenter.heroku.com/articles/python-c-deps).
|
||||||
|
|
||||||
See it in Action
|
See it in Action
|
||||||
----------------
|
----------------
|
||||||
@@ -23,13 +23,13 @@ Deploying a Python application couldn't be easier:
|
|||||||
$ git push heroku master
|
$ git push heroku master
|
||||||
...
|
...
|
||||||
-----> Python app detected
|
-----> Python app detected
|
||||||
-----> Installing python-2.7.13
|
-----> Installing python-3.6.2
|
||||||
$ pip install -r requirements.txt
|
$ pip install -r requirements.txt
|
||||||
Collecting requests (from -r requirements.txt (line 1))
|
Collecting requests (from -r requirements.txt (line 1))
|
||||||
Downloading requests-2.12.4-py2.py3-none-any.whl (576KB)
|
Downloading requests-2.12.4-py2.py3-none-any.whl (576KB)
|
||||||
Installing collected packages: requests
|
Installing collected packages: requests
|
||||||
Successfully installed requests-2.12.4
|
Successfully installed requests-2.12.4
|
||||||
|
|
||||||
-----> Discovering process types
|
-----> Discovering process types
|
||||||
Procfile declares types -> (none)
|
Procfile declares types -> (none)
|
||||||
|
|
||||||
@@ -46,11 +46,11 @@ Specify a Python Runtime
|
|||||||
Specific versions of the Python runtime can be specified with a `runtime.txt` file:
|
Specific versions of the Python runtime can be specified with a `runtime.txt` file:
|
||||||
|
|
||||||
$ cat runtime.txt
|
$ cat runtime.txt
|
||||||
python-3.6.0
|
python-2.7.13
|
||||||
|
|
||||||
Runtime options include:
|
Runtime options include:
|
||||||
|
|
||||||
|
- `python-3.6.2`
|
||||||
- `python-2.7.13`
|
- `python-2.7.13`
|
||||||
- `python-3.6.0`
|
- `pypy-5.7.1` (unsupported, experimental)
|
||||||
- `pypy-5.6.0` (unsupported, experimental)
|
- `pypy3-5.5.1` (unsupported, experimental)
|
||||||
- `pypy3-5.5.0` (unsupported, experimental)
|
|
||||||
|
|||||||
+132
-124
@@ -15,40 +15,38 @@
|
|||||||
# Fail fast and fail hard.
|
# Fail fast and fail hard.
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
|
|
||||||
|
# Standard Library.
|
||||||
|
export BPLOG_PREFIX="buildpack.python"
|
||||||
|
export BUILDPACK_LOG_FILE=${BUILDPACK_LOG_FILE:-/dev/null}
|
||||||
|
|
||||||
[ "$BUILDPACK_XTRACE" ] && set -o xtrace
|
[ "$BUILDPACK_XTRACE" ] && set -o xtrace
|
||||||
|
|
||||||
# Prepend proper path for virtualenv hackery. This will be deprecated soon.
|
# Prepend proper path for virtualenv hackery. This will be deprecated soon.
|
||||||
export PATH=:/usr/local/bin:$PATH
|
export PATH=:/usr/local/bin:$PATH
|
||||||
|
|
||||||
# Paths.
|
# Paths.
|
||||||
BIN_DIR=$(cd $(dirname $0); pwd) # absolute path
|
BIN_DIR=$(cd "$(dirname "$0")"; pwd) # absolute path
|
||||||
ROOT_DIR=$(dirname $BIN_DIR)
|
ROOT_DIR=$(dirname "$BIN_DIR")
|
||||||
BUILD_DIR=$1
|
BUILD_DIR=$1
|
||||||
CACHE_DIR=$2
|
CACHE_DIR=$2
|
||||||
ENV_DIR=$3
|
ENV_DIR=$3
|
||||||
|
|
||||||
# Static configurations for virtualenv caches.
|
export BUILD_DIR CACHE_DIR ENV_DIR
|
||||||
VIRTUALENV_LOC=".heroku/venv"
|
|
||||||
LEGACY_TRIGGER="lib/python2.7"
|
|
||||||
|
|
||||||
DEFAULT_PYTHON_VERSION="python-2.7.13"
|
# Python defaults
|
||||||
|
DEFAULT_PYTHON_VERSION="python-3.6.2"
|
||||||
DEFAULT_PYTHON_STACK="cedar-14"
|
DEFAULT_PYTHON_STACK="cedar-14"
|
||||||
PYTHON_EXE="/app/.heroku/python/bin/python"
|
PIP_UPDATE="9.0.1"
|
||||||
PIP_VERSION="9.0.1"
|
|
||||||
SETUPTOOLS_VERSION="32.1.0"
|
export DEFAULT_PYTHON_VERSION DEFAULT_PYTHON_STACK PIP_UPDATE
|
||||||
|
|
||||||
# Common Problem Warnings
|
# Common Problem Warnings
|
||||||
export WARNINGS_LOG=$(mktemp)
|
WARNINGS_LOG=$(mktemp)
|
||||||
|
export WARNINGS_LOG
|
||||||
export RECOMMENDED_PYTHON_VERSION=$DEFAULT_PYTHON_VERSION
|
export RECOMMENDED_PYTHON_VERSION=$DEFAULT_PYTHON_VERSION
|
||||||
|
|
||||||
# Setup bpwatch
|
# Setup vendored tools and pip-pop (pip-diff)
|
||||||
export PATH=$PATH:$ROOT_DIR/vendor/bpwatch
|
export PATH=$PATH:$ROOT_DIR/vendor/:$ROOT_DIR/vendor/pip-pop
|
||||||
LOGPLEX_KEY="t.b90d9d29-5388-4908-9737-b4576af1d4ce"
|
|
||||||
export BPWATCH_STORE_PATH=$CACHE_DIR/bpwatch.json
|
|
||||||
BUILDPACK_VERSION=v28
|
|
||||||
|
|
||||||
# Setup pip-pop (pip-diff)
|
|
||||||
export PATH=$PATH:$ROOT_DIR/vendor/pip-pop
|
|
||||||
|
|
||||||
# Support Anvil Build_IDs
|
# Support Anvil Build_IDs
|
||||||
[ ! "$SLUG_ID" ] && SLUG_ID="defaultslug"
|
[ ! "$SLUG_ID" ] && SLUG_ID="defaultslug"
|
||||||
@@ -57,20 +55,16 @@ export PATH=$PATH:$ROOT_DIR/vendor/pip-pop
|
|||||||
|
|
||||||
# Sanitizing environment variables.
|
# Sanitizing environment variables.
|
||||||
unset GIT_DIR PYTHONHOME PYTHONPATH
|
unset GIT_DIR PYTHONHOME PYTHONPATH
|
||||||
unset RECEIVE_DATA RUN_KEY BUILD_INFO DEPLOY LOG_TOKEN DYNO
|
unset RECEIVE_DATA RUN_KEY BUILD_INFO DEPLOY LOG_TOKEN
|
||||||
unset CYTOKINE_LOG_FILE GEM_PATH
|
unset CYTOKINE_LOG_FILE GEM_PATH
|
||||||
|
|
||||||
# Setup buildpack instrumentation.
|
|
||||||
bpwatch init $LOGPLEX_KEY
|
|
||||||
bpwatch build python $BUILDPACK_VERSION $REQUEST_ID
|
|
||||||
|
|
||||||
bpwatch start compile
|
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
|
|
||||||
# Import collection of warnings.
|
# Import collection of warnings.
|
||||||
source $BIN_DIR/warnings
|
# shellcheck source=bin/warnings
|
||||||
|
source "$BIN_DIR/warnings"
|
||||||
|
|
||||||
# we need to put a bunch of symlinks in there later
|
# we need to put a bunch of symlinks in there later
|
||||||
mkdir -p /app/.heroku
|
mkdir -p /app/.heroku
|
||||||
@@ -79,6 +73,7 @@ mkdir -p /app/.heroku
|
|||||||
PROFILE_PATH="$BUILD_DIR/.profile.d/python.sh"
|
PROFILE_PATH="$BUILD_DIR/.profile.d/python.sh"
|
||||||
EXPORT_PATH="$BIN_DIR/../export"
|
EXPORT_PATH="$BIN_DIR/../export"
|
||||||
GUNICORN_PROFILE_PATH="$BUILD_DIR/.profile.d/python.gunicorn.sh"
|
GUNICORN_PROFILE_PATH="$BUILD_DIR/.profile.d/python.gunicorn.sh"
|
||||||
|
WEB_CONCURRENCY_PROFILE_PATH="$BUILD_DIR/.profile.d/WEB_CONCURRENCY.sh"
|
||||||
|
|
||||||
# We'll need to send these statics to other scripts we `source`.
|
# We'll need to send these statics to other scripts we `source`.
|
||||||
export BUILD_DIR CACHE_DIR BIN_DIR PROFILE_PATH EXPORT_PATH
|
export BUILD_DIR CACHE_DIR BIN_DIR PROFILE_PATH EXPORT_PATH
|
||||||
@@ -94,7 +89,7 @@ export LD_LIBRARY_PATH=/app/.heroku/vendor/lib:/app/.heroku/python/lib:$LD_LIBRA
|
|||||||
export PKG_CONFIG_PATH=/app/.heroku/vendor/lib/pkg-config:/app/.heroku/python/lib/pkg-config:$PKG_CONFIG_PATH
|
export PKG_CONFIG_PATH=/app/.heroku/vendor/lib/pkg-config:/app/.heroku/python/lib/pkg-config:$PKG_CONFIG_PATH
|
||||||
|
|
||||||
# Switch to the repo's context.
|
# Switch to the repo's context.
|
||||||
cd $BUILD_DIR
|
cd "$BUILD_DIR"
|
||||||
|
|
||||||
# Warn for lack of Procfile.
|
# Warn for lack of Procfile.
|
||||||
if [[ ! -f Procfile ]]; then
|
if [[ ! -f Procfile ]]; then
|
||||||
@@ -102,156 +97,169 @@ if [[ ! -f Procfile ]]; then
|
|||||||
puts-warn 'Learn more: https://devcenter.heroku.com/articles/procfile'
|
puts-warn 'Learn more: https://devcenter.heroku.com/articles/procfile'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Experimental pre_compile hook.
|
# Prepare the cache.
|
||||||
bpwatch start pre_compile
|
mkdir -p "$CACHE_DIR"
|
||||||
source $BIN_DIR/steps/hooks/pre_compile
|
|
||||||
bpwatch stop pre_compile
|
|
||||||
|
|
||||||
# If no requirements.txt file given, assume `setup.py develop` is intended.
|
# Restore old artifacts from the cache.
|
||||||
if [ ! -f requirements.txt ]; then
|
mkdir -p .heroku
|
||||||
echo "-e ." > requirements.txt
|
|
||||||
|
cp -R "$CACHE_DIR/.heroku/python" .heroku/ &> /dev/null || true
|
||||||
|
cp -R "$CACHE_DIR/.heroku/python-stack" .heroku/ &> /dev/null || true
|
||||||
|
cp -R "$CACHE_DIR/.heroku/python-version" .heroku/ &> /dev/null || true
|
||||||
|
cp -R "$CACHE_DIR/.heroku/vendor" .heroku/ &> /dev/null || true
|
||||||
|
if [[ -d "$CACHE_DIR/.heroku/src" ]]; then
|
||||||
|
cp -R "$CACHE_DIR/.heroku/src" .heroku/ &> /dev/null || true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Experimental pre_compile hook.
|
||||||
|
# shellcheck source=bin/steps/hooks/pre_compile
|
||||||
|
source "$BIN_DIR/steps/hooks/pre_compile"
|
||||||
|
|
||||||
# Sticky runtimes.
|
# Sticky runtimes.
|
||||||
if [ -f $CACHE_DIR/.heroku/python-version ]; then
|
if [ -f "$CACHE_DIR/.heroku/python-version" ]; then
|
||||||
DEFAULT_PYTHON_VERSION=$(cat $CACHE_DIR/.heroku/python-version)
|
DEFAULT_PYTHON_VERSION=$(cat "$CACHE_DIR/.heroku/python-version")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Stack fallback for non-declared caches.
|
# Stack fallback for non-declared caches.
|
||||||
if [ -f $CACHE_DIR/.heroku/python-stack ]; then
|
if [ -f "$CACHE_DIR/.heroku/python-stack" ]; then
|
||||||
CACHED_PYTHON_STACK=$(cat $CACHE_DIR/.heroku/python-stack)
|
CACHED_PYTHON_STACK=$(cat "$CACHE_DIR/.heroku/python-stack")
|
||||||
else
|
else
|
||||||
CACHED_PYTHON_STACK=$STACK
|
CACHED_PYTHON_STACK=$STACK
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
export CACHED_PYTHON_STACK
|
||||||
|
|
||||||
|
# Pipenv Python version support.
|
||||||
|
# shellcheck source=bin/steps/pipenv-python-version
|
||||||
|
source "$BIN_DIR/steps/pipenv-python-version"
|
||||||
|
|
||||||
# If no runtime given, assume default version.
|
# If no runtime given, assume default version.
|
||||||
if [ ! -f runtime.txt ]; then
|
if [ ! -f runtime.txt ]; then
|
||||||
echo $DEFAULT_PYTHON_VERSION > runtime.txt
|
echo "$DEFAULT_PYTHON_VERSION" > runtime.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Prepare the cache.
|
mkdir -p "$(dirname "$PROFILE_PATH")"
|
||||||
mkdir -p $CACHE_DIR
|
|
||||||
|
|
||||||
# Purge "old-style" virtualenvs.
|
|
||||||
bpwatch start clear_old_venvs
|
|
||||||
[ -d $CACHE_DIR/$LEGACY_TRIGGER ] && rm -fr $CACHE_DIR/.heroku/bin $CACHE_DIR/.heroku/lib $CACHE_DIR/.heroku/include
|
|
||||||
[ -d $CACHE_DIR/$VIRTUALENV_LOC ] && rm -fr $CACHE_DIR/.heroku/venv $CACHE_DIR/.heroku/src
|
|
||||||
bpwatch stop clear_old_venvs
|
|
||||||
|
|
||||||
# Restore old artifacts from the cache.
|
|
||||||
bpwatch start restore_cache
|
|
||||||
mkdir -p .heroku
|
|
||||||
|
|
||||||
cp -R $CACHE_DIR/.heroku/python .heroku/ &> /dev/null || true
|
|
||||||
cp -R $CACHE_DIR/.heroku/python-stack .heroku/ &> /dev/null || true
|
|
||||||
cp -R $CACHE_DIR/.heroku/python-version .heroku/ &> /dev/null || true
|
|
||||||
cp -R $CACHE_DIR/.heroku/vendor .heroku/ &> /dev/null || true
|
|
||||||
cp -R $CACHE_DIR/.heroku/venv .heroku/ &> /dev/null || true
|
|
||||||
if [[ -d $CACHE_DIR/.heroku/src ]]; then
|
|
||||||
cp -R $CACHE_DIR/.heroku/src .heroku/ &> /dev/null || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
bpwatch stop restore_cache
|
|
||||||
|
|
||||||
mkdir -p $(dirname $PROFILE_PATH)
|
|
||||||
mkdir -p /app/.heroku/src
|
mkdir -p /app/.heroku/src
|
||||||
|
|
||||||
if [[ $BUILD_DIR != '/app' ]]; then
|
if [[ $BUILD_DIR != '/app' ]]; then
|
||||||
# python expects to reside in /app, so set up symlinks
|
# python expects to reside in /app, so set up symlinks
|
||||||
# we will not remove these later so subsequent buildpacks can still invoke it
|
# we will not remove these later so subsequent buildpacks can still invoke it
|
||||||
ln -nsf $BUILD_DIR/.heroku/python /app/.heroku/python
|
ln -nsf "$BUILD_DIR/.heroku/python" /app/.heroku/python
|
||||||
ln -nsf $BUILD_DIR/.heroku/vendor /app/.heroku/vendor
|
ln -nsf "$BUILD_DIR/.heroku/vendor" /app/.heroku/vendor
|
||||||
ln -nsf $BUILD_DIR/.heroku/venv /app/.heroku/venv
|
|
||||||
# Note: .heroku/src is copied in later.
|
# Note: .heroku/src is copied in later.
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install Python.
|
# Install Python.
|
||||||
source $BIN_DIR/steps/python
|
let start=$(nowms)
|
||||||
|
# shellcheck source=bin/steps/python
|
||||||
|
source "$BIN_DIR/steps/python"
|
||||||
|
mtime "python.install.time" "${start}"
|
||||||
|
|
||||||
# Sanity check for setuptools/distribute.
|
# Pipenv support.
|
||||||
source $BIN_DIR/steps/setuptools
|
# shellcheck source=bin/steps/pipenv
|
||||||
|
source "$BIN_DIR/steps/pipenv"
|
||||||
|
|
||||||
# Uninstall removed dependencies with Pip.
|
# If no requirements.txt file given, assume `setup.py develop` is intended.
|
||||||
source $BIN_DIR/steps/pip-uninstall
|
if [ ! -f requirements.txt ] && [ ! -f Pipfile ]; then
|
||||||
|
echo "-e ." > requirements.txt
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Fix egg-links.
|
||||||
|
# shellcheck source=bin/steps/eggpath-fix
|
||||||
|
source "$BIN_DIR/steps/eggpath-fix"
|
||||||
|
|
||||||
# Mercurial support.
|
# Mercurial support.
|
||||||
source $BIN_DIR/steps/mercurial
|
# shellcheck source=bin/steps/mercurial
|
||||||
|
source "$BIN_DIR/steps/mercurial"
|
||||||
|
|
||||||
# Pylibmc support.
|
# Pylibmc support.
|
||||||
source $BIN_DIR/steps/pylibmc
|
# shellcheck source=bin/steps/pylibmc
|
||||||
|
source "$BIN_DIR/steps/pylibmc"
|
||||||
|
|
||||||
# Libffi support.
|
# Libffi support.
|
||||||
source $BIN_DIR/steps/cryptography
|
# shellcheck source=bin/steps/cryptography
|
||||||
|
source "$BIN_DIR/steps/cryptography"
|
||||||
|
|
||||||
# Support for Geo libraries.
|
# Support for Geo libraries.
|
||||||
sub-env $BIN_DIR/steps/geo-libs
|
# shellcheck source=bin/steps/geo-libs
|
||||||
|
sub_env "$BIN_DIR/steps/geo-libs"
|
||||||
|
|
||||||
# GDAL support.
|
# GDAL support.
|
||||||
source $BIN_DIR/steps/gdal
|
# shellcheck source=bin/steps/gdal
|
||||||
|
source "$BIN_DIR/steps/gdal"
|
||||||
|
|
||||||
|
# Uninstall removed dependencies with Pip.
|
||||||
|
let start=$(nowms)
|
||||||
|
# shellcheck source=bin/steps/pip-uninstall
|
||||||
|
source "$BIN_DIR/steps/pip-uninstall"
|
||||||
|
mtime "pip.uninstall.time" "${start}"
|
||||||
|
|
||||||
# Install dependencies with Pip (where the magic happens).
|
# Install dependencies with Pip (where the magic happens).
|
||||||
source $BIN_DIR/steps/pip-install
|
let start=$(nowms)
|
||||||
|
# shellcheck source=bin/steps/pip-install
|
||||||
|
source "$BIN_DIR/steps/pip-install"
|
||||||
|
mtime "pip.install.time" "${start}"
|
||||||
|
|
||||||
# Support for NLTK corpora.
|
# Support for NLTK corpora.
|
||||||
sub-env $BIN_DIR/steps/nltk
|
let start=$(nowms)
|
||||||
|
sub_env "$BIN_DIR/steps/nltk"
|
||||||
|
mtime "nltk.download.time" "${start}"
|
||||||
|
|
||||||
# Support for pip install -e.
|
# Support for pip install -e.
|
||||||
rm -fr $BUILD_DIR/.heroku/src
|
# In CI, $BUILD_DIR is /app.
|
||||||
deep-cp /app/.heroku/src $BUILD_DIR/.heroku/src
|
if [[ ! "$BUILD_DIR" == "/app" ]]; then
|
||||||
|
rm -fr "$BUILD_DIR/.heroku/src"
|
||||||
|
deep-cp /app/.heroku/src "$BUILD_DIR/.heroku/src"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Django collectstatic support.
|
# Django collectstatic support.
|
||||||
sub-env $BIN_DIR/steps/collectstatic
|
let start=$(nowms)
|
||||||
|
sub_env "$BIN_DIR/steps/collectstatic"
|
||||||
|
mtime "collectstatic.time" "${start}"
|
||||||
|
|
||||||
# Create .profile script for application runtime environment variables.
|
# Create .profile script for application runtime environment variables.
|
||||||
set-env PATH '$HOME/.heroku/python/bin:$PATH'
|
set_env PATH "\$HOME/.heroku/python/bin:\$PATH"
|
||||||
set-env PYTHONUNBUFFERED true
|
set_env PYTHONUNBUFFERED true
|
||||||
set-env PYTHONHOME /app/.heroku/python
|
set_env PYTHONHOME /app/.heroku/python
|
||||||
set-env LIBRARY_PATH '/app/.heroku/vendor/lib:/app/.heroku/python/lib:$LIBRARY_PATH'
|
|
||||||
set-env LD_LIBRARY_PATH '/app/.heroku/vendor/lib:/app/.heroku/python/lib:$LD_LIBRARY_PATH'
|
set_env LIBRARY_PATH "/app/.heroku/vendor/lib:/app/.heroku/python/lib:\$LIBRARY_PATH"
|
||||||
set-default-env LANG en_US.UTF-8
|
set_env LD_LIBRARY_PATH "/app/.heroku/vendor/lib:/app/.heroku/python/lib:\$LD_LIBRARY_PATH"
|
||||||
set-default-env PYTHONHASHSEED random
|
|
||||||
set-default-env PYTHONPATH /app/
|
set_default_env LANG en_US.UTF-8
|
||||||
|
set_default_env PYTHONHASHSEED random
|
||||||
|
set_default_env PYTHONPATH /app/
|
||||||
|
|
||||||
# Install sane-default script for $WEB_CONCURRENCY and $FORWARDED_ALLOW_IPS.
|
# Install sane-default script for $WEB_CONCURRENCY and $FORWARDED_ALLOW_IPS.
|
||||||
cp $ROOT_DIR/vendor/python.gunicorn.sh $GUNICORN_PROFILE_PATH
|
cp "$ROOT_DIR/vendor/WEB_CONCURRENCY.sh" "$WEB_CONCURRENCY_PROFILE_PATH"
|
||||||
|
cp "$ROOT_DIR/vendor/python.gunicorn.sh" "$GUNICORN_PROFILE_PATH"
|
||||||
|
|
||||||
|
|
||||||
# Experimental post_compile hook.
|
# Experimental post_compile hook.
|
||||||
bpwatch start post_compile
|
# shellcheck source=bin/steps/hooks/post_compile
|
||||||
source $BIN_DIR/steps/hooks/post_compile
|
source "$BIN_DIR/steps/hooks/post_compile"
|
||||||
bpwatch stop post_compile
|
|
||||||
|
|
||||||
set +e
|
# Fix egg-links, again.
|
||||||
# rewrite build dir in egg links to /app so things are found at runtime
|
# shellcheck source=bin/steps/eggpath-fix2
|
||||||
find .heroku/python/lib/python*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#$(pwd)#/app#" &> /dev/null
|
source "$BIN_DIR/steps/eggpath-fix2"
|
||||||
set -e
|
|
||||||
|
|
||||||
set +e
|
|
||||||
# Support for PyPy
|
|
||||||
find .heroku/python/lib-python/*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#$(pwd)#/app#" &> /dev/null
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Store new artifacts in cache.
|
# Store new artifacts in cache.
|
||||||
bpwatch start dump_cache
|
|
||||||
|
|
||||||
rm -rf $CACHE_DIR/.heroku/python
|
rm -rf "$CACHE_DIR/.heroku/python"
|
||||||
rm -rf $CACHE_DIR/.heroku/python-version
|
rm -rf "$CACHE_DIR/.heroku/python-version"
|
||||||
rm -rf $CACHE_DIR/.heroku/python-stack
|
rm -rf "$CACHE_DIR/.heroku/python-stack"
|
||||||
rm -rf $CACHE_DIR/.heroku/vendor
|
rm -rf "$CACHE_DIR/.heroku/vendor"
|
||||||
rm -rf $CACHE_DIR/.heroku/venv
|
rm -rf "$CACHE_DIR/.heroku/src"
|
||||||
rm -rf $CACHE_DIR/.heroku/src
|
|
||||||
|
|
||||||
mkdir -p $CACHE_DIR/.heroku
|
mkdir -p "$CACHE_DIR/.heroku"
|
||||||
cp -R .heroku/python $CACHE_DIR/.heroku/
|
cp -R .heroku/python "$CACHE_DIR/.heroku/"
|
||||||
cp -R .heroku/python-version $CACHE_DIR/.heroku/
|
cp -R .heroku/python-version "$CACHE_DIR/.heroku/"
|
||||||
cp -R .heroku/python-stack $CACHE_DIR/.heroku/ &> /dev/null || true
|
cp -R .heroku/python-stack "$CACHE_DIR/.heroku/" &> /dev/null || true
|
||||||
cp -R .heroku/vendor $CACHE_DIR/.heroku/ &> /dev/null || true
|
cp -R .heroku/vendor "$CACHE_DIR/.heroku/" &> /dev/null || true
|
||||||
cp -R .heroku/venv $CACHE_DIR/.heroku/ &> /dev/null || true
|
if [[ -d .heroku/src ]]; then
|
||||||
if [[ -d .heroku/src ]]; then
|
cp -R .heroku/src "$CACHE_DIR/.heroku/" &> /dev/null || true
|
||||||
cp -R .heroku/src $CACHE_DIR/.heroku/ &> /dev/null || true
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
bpwatch stop dump_cache
|
# Measure the size of the Python installation.
|
||||||
|
# shellcheck disable=SC2119
|
||||||
# Fin.
|
mmeasure 'python.size' "$(measure-size)"
|
||||||
bpwatch stop compile
|
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@
|
|||||||
BUILD_DIR=$1
|
BUILD_DIR=$1
|
||||||
|
|
||||||
# Exit early if app is clearly not Python.
|
# Exit early if app is clearly not Python.
|
||||||
if [ ! -f $BUILD_DIR/requirements.txt ] && [ ! -f $BUILD_DIR/setup.py ]; then
|
if [ ! -f "$BUILD_DIR/requirements.txt" ] && [ ! -f "$BUILD_DIR/setup.py" ] && [ ! -f "$BUILD_DIR/Pipfile" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
+1
-2
@@ -1,10 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# bin/release <build-dir>
|
# bin/release <build-dir>
|
||||||
|
|
||||||
BIN_DIR=$(cd $(dirname $0); pwd) # absolute path
|
|
||||||
BUILD_DIR=$1
|
BUILD_DIR=$1
|
||||||
|
|
||||||
MANAGE_FILE=$(cd $BUILD_DIR && find . -maxdepth 3 -type f -name 'manage.py' | head -1)
|
MANAGE_FILE=$(cd "$BUILD_DIR" && find . -maxdepth 3 -type f -name 'manage.py' | head -1)
|
||||||
MANAGE_FILE=${MANAGE_FILE:2}
|
MANAGE_FILE=${MANAGE_FILE:2}
|
||||||
|
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
# - $DISABLE_COLLECTSTATIC: disables this functionality.
|
# - $DISABLE_COLLECTSTATIC: disables this functionality.
|
||||||
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
|
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
|
||||||
|
|
||||||
|
# shellcheck source=bin/utils
|
||||||
source $BIN_DIR/utils
|
source $BIN_DIR/utils
|
||||||
|
|
||||||
# Location of 'manage.py', if it exists.
|
# Location of 'manage.py', if it exists.
|
||||||
@@ -20,23 +21,22 @@ MANAGE_FILE=${MANAGE_FILE:-fakepath}
|
|||||||
[ -f .heroku/collectstatic_disabled ] && DISABLE_COLLECTSTATIC=1
|
[ -f .heroku/collectstatic_disabled ] && DISABLE_COLLECTSTATIC=1
|
||||||
|
|
||||||
# Ensure that Django is explicitly specified in requirements.txt
|
# Ensure that Django is explicitly specified in requirements.txt
|
||||||
pip-grep -s requirements.txt django Django && DJANGO_INSTALLED=1
|
sp-grep -s django && DJANGO_INSTALLED=1
|
||||||
|
|
||||||
bpwatch start collectstatic # metrics collection
|
|
||||||
|
|
||||||
if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALLED" ]; then
|
if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALLED" ]; then
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
puts-cmd "python $MANAGE_FILE collectstatic --noinput"
|
puts-step "$ python $MANAGE_FILE collectstatic --noinput"
|
||||||
|
|
||||||
# Run collectstatic, cleanup some of the noisy output.
|
# Run collectstatic, cleanup some of the noisy output.
|
||||||
python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d' | indent
|
python "$MANAGE_FILE" collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d' | indent
|
||||||
COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
|
COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Display a warning if collectstatic failed.
|
# Display a warning if collectstatic failed.
|
||||||
[ $COLLECTSTATIC_STATUS -ne 0 ] && {
|
[ "$COLLECTSTATIC_STATUS" -ne 0 ] && {
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo " ! Error while running '$ python $MANAGE_FILE collectstatic --noinput'."
|
echo " ! Error while running '$ python $MANAGE_FILE collectstatic --noinput'."
|
||||||
@@ -63,5 +63,3 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
|
|||||||
|
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop collectstatic # metrics collection
|
|
||||||
|
|||||||
@@ -15,9 +15,8 @@ VENDORED_LIBFFI="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/li
|
|||||||
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
bpwatch start libffi_install
|
|
||||||
|
|
||||||
# If a package using cffi exists within requirements, use vendored libffi.
|
# If a package using cffi exists within requirements, use vendored libffi.
|
||||||
if (pip-grep -s requirements.txt argon2-cffi bcrypt cffi cryptography django[argon2] Django[argon2] django[bcrypt] Django[bcrypt] PyNaCl pyOpenSSL PyOpenSSL requests[security] misaka &> /dev/null) then
|
if (pip-grep -s requirements.txt argon2-cffi bcrypt cffi cryptography django[argon2] Django[argon2] django[bcrypt] Django[bcrypt] PyNaCl pyOpenSSL PyOpenSSL requests[security] misaka &> /dev/null) then
|
||||||
@@ -26,10 +25,9 @@ if (pip-grep -s requirements.txt argon2-cffi bcrypt cffi cryptography django[arg
|
|||||||
echo "-----> Noticed cffi. Bootstrapping libffi."
|
echo "-----> Noticed cffi. Bootstrapping libffi."
|
||||||
mkdir -p .heroku/vendor
|
mkdir -p .heroku/vendor
|
||||||
# Download and extract libffi into target vendor directory.
|
# Download and extract libffi into target vendor directory.
|
||||||
curl $VENDORED_LIBFFI -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_LIBFFI" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export LIBFFI=$(pwd)/vendor
|
LIBFFI=$(pwd)/vendor
|
||||||
|
export LIBFFI
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop libffi_install
|
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set +e
|
||||||
|
# delete any existing egg links, to uninstall exisisting installations.
|
||||||
|
find .heroku/python/lib/python*/site-packages/ -name "*.egg-link" -delete 2> /dev/null
|
||||||
|
find .heroku/python/lib/python*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#/$(pwd)/#" &> /dev/null
|
||||||
|
set -e
|
||||||
|
|
||||||
|
set +e
|
||||||
|
# Support for the above, for PyPy.
|
||||||
|
find .heroku/python/lib-python/*/site-packages/ -name "*.egg-link" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#$(pwd)/#" &> /dev/null
|
||||||
|
find .heroku/python/lib-python/*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#/$(pwd)/#" &> /dev/null
|
||||||
|
set -e
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set +e
|
||||||
|
# rewrite build dir in egg links to /app so things are found at runtime
|
||||||
|
find .heroku/python/lib/python*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#$(pwd)#/app#" &> /dev/null
|
||||||
|
set -e
|
||||||
|
|
||||||
|
set +e
|
||||||
|
# Support for PyPy
|
||||||
|
find .heroku/python/lib-python/*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#$(pwd)#/app#" &> /dev/null
|
||||||
|
set -e
|
||||||
+5
-6
@@ -15,9 +15,8 @@ VENDORED_GDAL="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/gdal
|
|||||||
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
bpwatch start gdal_install
|
|
||||||
|
|
||||||
# If GDAL exists within requirements, use vendored gdal.
|
# If GDAL exists within requirements, use vendored gdal.
|
||||||
if (pip-grep -s requirements.txt GDAL gdal pygdal &> /dev/null) then
|
if (pip-grep -s requirements.txt GDAL gdal pygdal &> /dev/null) then
|
||||||
@@ -26,10 +25,10 @@ if (pip-grep -s requirements.txt GDAL gdal pygdal &> /dev/null) then
|
|||||||
echo "-----> Noticed GDAL. Bootstrapping gdal."
|
echo "-----> Noticed GDAL. Bootstrapping gdal."
|
||||||
mkdir -p .heroku/vendor
|
mkdir -p .heroku/vendor
|
||||||
# Download and extract cryptography into target vendor directory.
|
# Download and extract cryptography into target vendor directory.
|
||||||
curl $VENDORED_GDAL -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_GDAL" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export GDAL=$(pwd)/vendor
|
GDAL=$(pwd)/vendor
|
||||||
|
export GDAL
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop gdal_install
|
|
||||||
|
|||||||
+7
-8
@@ -17,9 +17,8 @@ VENDORED_PROJ="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/proj
|
|||||||
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
bpwatch start geo_libs_install
|
|
||||||
|
|
||||||
# If GDAL exists within requirements, use vendored gdal.
|
# If GDAL exists within requirements, use vendored gdal.
|
||||||
if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
|
if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
|
||||||
@@ -28,12 +27,12 @@ if [[ "$BUILD_WITH_GEO_LIBRARIES" ]]; then
|
|||||||
echo "-----> Bootstrapping gdal, geos, proj."
|
echo "-----> Bootstrapping gdal, geos, proj."
|
||||||
mkdir -p .heroku/vendor
|
mkdir -p .heroku/vendor
|
||||||
# Download and extract cryptography into target vendor directory.
|
# Download and extract cryptography into target vendor directory.
|
||||||
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
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export GDAL=$(pwd)/vendor
|
GDAL=$(pwd)/vendor
|
||||||
|
export GDAL
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop geo_libs_install
|
|
||||||
|
|||||||
@@ -3,5 +3,5 @@
|
|||||||
if [ -f bin/post_compile ]; then
|
if [ -f bin/post_compile ]; then
|
||||||
echo "-----> Running post-compile hook"
|
echo "-----> Running post-compile hook"
|
||||||
chmod +x bin/post_compile
|
chmod +x bin/post_compile
|
||||||
sub-env bin/post_compile
|
sub_env bin/post_compile
|
||||||
fi
|
fi
|
||||||
@@ -3,5 +3,5 @@
|
|||||||
if [ -f bin/pre_compile ]; then
|
if [ -f bin/pre_compile ]; then
|
||||||
echo "-----> Running pre-compile hook"
|
echo "-----> Running pre-compile hook"
|
||||||
chmod +x bin/pre_compile
|
chmod +x bin/pre_compile
|
||||||
sub-env bin/pre_compile
|
sub_env bin/pre_compile
|
||||||
fi
|
fi
|
||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Install Mercurial if it appears to be required.
|
# Install Mercurial if it appears to be required.
|
||||||
if (grep -Fiq "hg+" requirements.txt) then
|
if (grep -Fiq "hg+" requirements.txt) then
|
||||||
bpwatch start mercurial_install
|
|
||||||
/app/.heroku/python/bin/pip install mercurial | cleanup | indent
|
/app/.heroku/python/bin/pip install mercurial | cleanup | indent
|
||||||
bpwatch stop mercurial_install
|
|
||||||
fi
|
fi
|
||||||
|
|||||||
+12
-12
@@ -10,26 +10,26 @@
|
|||||||
# This script is invoked by [`bin/compile`](/).
|
# This script is invoked by [`bin/compile`](/).
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
bpwatch start nltk_download
|
|
||||||
|
|
||||||
# Check that nltk was installed by pip, otherwise obviously not needed
|
# Check that nltk was installed by pip, otherwise obviously not needed
|
||||||
python -m nltk.downloader -h >/dev/null 2>&1
|
if sp-grep -s nltk; then
|
||||||
if [ $? -eq 0 ]; then
|
|
||||||
puts-step "Downloading NLTK corpora..."
|
puts-step "Downloading NLTK corpora..."
|
||||||
|
|
||||||
nltk_packages_definition="$BUILD_DIR/nltk.txt"
|
nltk_packages_definition="$BUILD_DIR/nltk.txt"
|
||||||
|
|
||||||
if [ -f "$nltk_packages_definition" ]; then
|
if [ -f "$nltk_packages_definition" ]; then
|
||||||
|
|
||||||
nltk_packages=$(tr "\n" " " < "$nltk_packages_definition")
|
nltk_packages=$(tr "\n" " " < "$nltk_packages_definition")
|
||||||
puts-step "Downloading NLTK packages: $nltk_packages"
|
puts-step "Downloading NLTK packages: $nltk_packages"
|
||||||
python -m nltk.downloader -d $BUILD_DIR/.heroku/python/nltk_data $nltk_packages | indent
|
|
||||||
set-env NLTK_DATA "/app/.heroku/python/nltk_data"
|
python -m nltk.downloader -d "$BUILD_DIR/.heroku/python/nltk_data" "$nltk_packages" | indent
|
||||||
|
set_env NLTK_DATA "/app/.heroku/python/nltk_data"
|
||||||
|
|
||||||
else
|
else
|
||||||
puts-warn "nltk.txt not found, not downloading any corpora"
|
puts-warn "'nltk.txt' not found, not downloading any corpora"
|
||||||
|
puts-warn "Learn more: https://devcenter.heroku.com/articles/python-nltk"
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
puts-warn "nltk not apparently installed, not downloading packages"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
bpwatch stop nltk_download
|
|
||||||
|
|||||||
+18
-31
@@ -1,38 +1,25 @@
|
|||||||
# Install dependencies with Pip.
|
#!/usr/bin/env bash
|
||||||
puts-cmd "pip install -r requirements.txt"
|
|
||||||
|
|
||||||
set +e
|
if [ ! "$SKIP_PIP_INSTALL" ]; then
|
||||||
# delete any existing egg links, to uninstall exisisting installations.
|
|
||||||
find .heroku/python/lib/python*/site-packages/ -name "*.egg-link" -delete 2> /dev/null
|
|
||||||
find .heroku/python/lib/python*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#/$(pwd)/#" &> /dev/null
|
|
||||||
set -e
|
|
||||||
|
|
||||||
set +e
|
# Install dependencies with Pip.
|
||||||
# Support for the above, for PyPy.
|
puts-step "Installing requirements with pip"
|
||||||
find .heroku/python/lib-python/*/site-packages/ -name "*.egg-link" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#$(pwd)/#" &> /dev/null
|
|
||||||
find .heroku/python/lib-python/*/site-packages/ -name "*.pth" -print0 2> /dev/null | xargs -r -0 -n 1 sed -i -e "s#/app/#/$(pwd)/#" &> /dev/null
|
|
||||||
set -e
|
|
||||||
|
|
||||||
[ ! "$FRESH_PYTHON" ] && bpwatch start pip_install
|
set +e
|
||||||
[ "$FRESH_PYTHON" ] && bpwatch start pip_install_first
|
sub_env /app/.heroku/python/bin/pip install -r "$BUILD_DIR/requirements.txt" --exists-action=w --src=/app/.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee "$WARNINGS_LOG" | cleanup | indent
|
||||||
|
PIP_STATUS="${PIPESTATUS[0]}"
|
||||||
|
set -e
|
||||||
|
|
||||||
set +e
|
show-warnings
|
||||||
/app/.heroku/python/bin/pip install -r $BUILD_DIR/requirements.txt --exists-action=w --src=/app/.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee $WARNINGS_LOG | cleanup | indent
|
|
||||||
PIP_STATUS="${PIPESTATUS[0]}"
|
|
||||||
set -e
|
|
||||||
|
|
||||||
show-warnings
|
if [[ ! $PIP_STATUS -eq 0 ]]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ! $PIP_STATUS -eq 0 ]]; then
|
|
||||||
exit 1
|
# Smart Requirements handling
|
||||||
|
cp requirements.txt .heroku/python/requirements-declared.txt
|
||||||
|
/app/.heroku/python/bin/pip freeze --disable-pip-version-check > .heroku/python/requirements-installed.txt
|
||||||
|
|
||||||
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Smart Requirements handling
|
|
||||||
cp requirements.txt .heroku/python/requirements-declared.txt
|
|
||||||
/app/.heroku/python/bin/pip freeze --disable-pip-version-check > .heroku/python/requirements-installed.txt
|
|
||||||
|
|
||||||
[ ! "$FRESH_PYTHON" ] && bpwatch stop pip_install
|
|
||||||
[ "$FRESH_PYTHON" ] && bpwatch stop pip_install_first
|
|
||||||
|
|
||||||
echo
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
# Install dependencies with Pip.
|
# Install dependencies with Pip.
|
||||||
bpwatch start pip_uninstall
|
|
||||||
if [[ -f .heroku/python/requirements-declared.txt ]]; then
|
if [[ -f .heroku/python/requirements-declared.txt ]]; then
|
||||||
|
|
||||||
cp .heroku/python/requirements-declared.txt requirements-declared.txt
|
cp .heroku/python/requirements-declared.txt requirements-declared.txt
|
||||||
@@ -14,5 +16,5 @@ if [[ -f .heroku/python/requirements-declared.txt ]]; then
|
|||||||
/app/.heroku/python/bin/pip uninstall -r .heroku/python/requirements-stale.txt -y --exists-action=w | cleanup | indent
|
/app/.heroku/python/bin/pip uninstall -r .heroku/python/requirements-stale.txt -y --exists-action=w | cleanup | indent
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
bpwatch stop pip_uninstall
|
|
||||||
set -e
|
set -e
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Pipenv support (Generate requriements.txt with pipenv).
|
||||||
|
if [[ -f Pipfile ]]; then
|
||||||
|
if [[ ! -f requirements.txt ]]; then
|
||||||
|
puts-step "Installing requirements with latest pipenv..."
|
||||||
|
|
||||||
|
# Install pipenv.
|
||||||
|
/app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
|
||||||
|
|
||||||
|
# Install the dependencies.
|
||||||
|
/app/.heroku/python/bin/pipenv install --system --skip-lock 2>&1 | indent
|
||||||
|
|
||||||
|
# Skip pip install, later.
|
||||||
|
export SKIP_PIP_INSTALL=1
|
||||||
|
|
||||||
|
# Pip freeze, for compatibility.
|
||||||
|
/app/.heroku/python/bin/pip freeze > requirements.txt
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
Executable
+25
@@ -0,0 +1,25 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Detect Python-version with Pipenv.
|
||||||
|
|
||||||
|
if [[ -f $BUILD_DIR/Pipfile ]]; then
|
||||||
|
|
||||||
|
if [[ ! -f $BUILD_DIR/runtime.txt ]]; then
|
||||||
|
if [[ ! -f $BUILD_DIR/Pipfile.lock ]]; then
|
||||||
|
puts-warn "No 'pipfile.lock' found! We recommend you commit this into your repository."
|
||||||
|
fi
|
||||||
|
if [[ -f $BUILD_DIR/Pipfile.lock ]]; then
|
||||||
|
set +e
|
||||||
|
PYTHON=$(jq -r '._meta.requires.python_version' "$BUILD_DIR/Pipfile.lock")
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$PYTHON" = 2.7 ]; then
|
||||||
|
echo "python-2.7.13" > "$BUILD_DIR/runtime.txt"
|
||||||
|
fi
|
||||||
|
if [ "$PYTHON" = 3.6 ]; then
|
||||||
|
echo "python-3.6.2" > "$BUILD_DIR/runtime.txt"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
+5
-7
@@ -13,11 +13,10 @@
|
|||||||
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"
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
source $BIN_DIR/utils
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
|
|
||||||
|
|
||||||
bpwatch start pylibmc_install
|
|
||||||
|
|
||||||
# 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
|
||||||
|
|
||||||
@@ -25,10 +24,9 @@ if (pip-grep -s requirements.txt pylibmc &> /dev/null) then
|
|||||||
echo "-----> Noticed pylibmc. Bootstrapping libmemcached."
|
echo "-----> Noticed pylibmc. Bootstrapping libmemcached."
|
||||||
mkdir -p .heroku/vendor
|
mkdir -p .heroku/vendor
|
||||||
# Download and extract libmemcached into target vendor directory.
|
# Download and extract libmemcached into target vendor directory.
|
||||||
curl $VENDORED_MEMCACHED -s | tar zxv -C .heroku/vendor &> /dev/null
|
curl "$VENDORED_MEMCACHED" -s | tar zxv -C .heroku/vendor &> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export LIBMEMCACHED=$(pwd)/vendor
|
LIBMEMCACHED=$(pwd)/vendor
|
||||||
|
export LIBMEMCACHED
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop pylibmc_install
|
|
||||||
|
|||||||
+20
-41
@@ -1,77 +1,56 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
|
runtime-fixer runtime.txt
|
||||||
PYTHON_VERSION=$(cat runtime.txt)
|
PYTHON_VERSION=$(cat runtime.txt)
|
||||||
|
|
||||||
# Install Python.
|
if [[ "$STACK" != "$CACHED_PYTHON_STACK" ]]; then
|
||||||
|
puts-step "Stack has changed from $CACHED_PYTHON_STACK to $STACK, clearing cache"
|
||||||
|
rm -fr .heroku/python-stack .heroku/python-version .heroku/python .heroku/vendor
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f .heroku/python-version ]; then
|
if [ -f .heroku/python-version ]; then
|
||||||
if [ ! $(cat .heroku/python-version) = $PYTHON_VERSION ]; then
|
if [ ! "$(cat .heroku/python-version)" = "$PYTHON_VERSION" ]; then
|
||||||
bpwatch start uninstall_python
|
|
||||||
puts-step "Found $(cat .heroku/python-version), removing"
|
puts-step "Found $(cat .heroku/python-version), removing"
|
||||||
rm -fr .heroku/python
|
rm -fr .heroku/python
|
||||||
bpwatch stop uninstall_python
|
|
||||||
else
|
else
|
||||||
SKIP_INSTALL=1
|
SKIP_INSTALL=1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! $STACK = $CACHED_PYTHON_STACK ]; then
|
|
||||||
bpwatch start uninstall_python
|
|
||||||
rm -fr .heroku/python .heroku/python-stack .heroku/vendor
|
|
||||||
unset SKIP_INSTALL
|
|
||||||
bpwatch stop uninstall_python
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if [ ! "$SKIP_INSTALL" ]; then
|
if [ ! "$SKIP_INSTALL" ]; then
|
||||||
bpwatch start install_python
|
|
||||||
puts-step "Installing $PYTHON_VERSION"
|
puts-step "Installing $PYTHON_VERSION"
|
||||||
|
|
||||||
# Prepare destination directory.
|
# Prepare destination directory.
|
||||||
mkdir -p .heroku/python
|
mkdir -p .heroku/python
|
||||||
|
|
||||||
curl https://lang-python.s3.amazonaws.com/$STACK/runtimes/$PYTHON_VERSION.tar.gz -s | tar zxv -C .heroku/python &> /dev/null
|
mcount "version.python.$PYTHON_VERSION"
|
||||||
if [[ $? != 0 ]] ; then
|
|
||||||
|
if ! curl "https://lang-python.s3.amazonaws.com/$STACK/runtimes/$PYTHON_VERSION.tar.gz" -s | tar zxv -C .heroku/python &> /dev/null; then
|
||||||
puts-warn "Requested runtime ($PYTHON_VERSION) is not available for this stack ($STACK)."
|
puts-warn "Requested runtime ($PYTHON_VERSION) is not available for this stack ($STACK)."
|
||||||
puts-warn "Aborting. More info: https://devcenter.heroku.com/articles/python-support"
|
puts-warn "Aborting. More info: https://devcenter.heroku.com/articles/python-support"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
bpwatch stop install_python
|
|
||||||
|
|
||||||
# Record for future reference.
|
# Record for future reference.
|
||||||
echo $PYTHON_VERSION > .heroku/python-version
|
echo "$PYTHON_VERSION" > .heroku/python-version
|
||||||
echo $STACK > .heroku/python-stack
|
echo "$STACK" > .heroku/python-stack
|
||||||
FRESH_PYTHON=true
|
FRESH_PYTHON=true
|
||||||
|
|
||||||
hash -r
|
hash -r
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If Pip isn't up to date:
|
# If Pip isn't up to date:
|
||||||
if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_VERSION* ]]; then
|
if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_UPDATE* ]]; then
|
||||||
WORKING_DIR=$(pwd)
|
|
||||||
|
|
||||||
bpwatch start prepare_environment
|
puts-step "Installing pip"
|
||||||
|
|
||||||
TMPTARDIR=$(mktemp -d)
|
# Remove old installations.
|
||||||
trap "rm -rf $TMPTARDIR" RETURN
|
rm -fr /app/.heroku/python/lib/python2.7/site-packages/pip-*
|
||||||
|
rm -fr /app/.heroku/python/lib/python2.7/site-packages/setuptools-*
|
||||||
|
|
||||||
bpwatch start install_setuptools
|
/app/.heroku/python/bin/python "$ROOT_DIR/vendor/get-pip.py" &> /dev/null
|
||||||
# Prepare it for the real world
|
|
||||||
# puts-step "Installing Setuptools ($SETUPTOOLS_VERSION)"
|
|
||||||
tar zxf $ROOT_DIR/vendor/setuptools-$SETUPTOOLS_VERSION.tar.gz -C $TMPTARDIR
|
|
||||||
cd $TMPTARDIR/setuptools-$SETUPTOOLS_VERSION/
|
|
||||||
python setup.py install &> /dev/null
|
|
||||||
cd $WORKING_DIR
|
|
||||||
bpwatch stop install_setuptoools
|
|
||||||
|
|
||||||
bpwatch start install_pip
|
|
||||||
# puts-step "Installing Pip ($PIP_VERSION)"
|
|
||||||
tar zxf $ROOT_DIR/vendor/pip-$PIP_VERSION.tar.gz -C $TMPTARDIR
|
|
||||||
cd $TMPTARDIR/pip-$PIP_VERSION/
|
|
||||||
python setup.py install &> /dev/null
|
|
||||||
cd $WORKING_DIR
|
|
||||||
|
|
||||||
bpwatch stop install_pip
|
|
||||||
bpwatch stop prepare_environment
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Syntax sugar.
|
|
||||||
source $BIN_DIR/utils
|
|
||||||
|
|
||||||
if (pip-grep -s requirements.txt setuptools distribute &> /dev/null) then
|
|
||||||
|
|
||||||
puts-warn 'The package setuptools/distribute is listed in requirements.txt.'
|
|
||||||
puts-warn 'Please remove to ensure expected behavior. '
|
|
||||||
|
|
||||||
fi
|
|
||||||
+5
-3
@@ -1,10 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Syntax sugar.
|
# Syntax sugar.
|
||||||
BIN_DIR=$(cd $(dirname $0); pwd) # absolute path
|
BIN_DIR=$(cd "$(dirname "$0")" || return; pwd) # absolute path
|
||||||
source $BIN_DIR/utils
|
|
||||||
|
|
||||||
DISABLE_COLLECTSTATIC=1 "$(dirname ${0:-})/compile" "$1" "$2" "$3"
|
# shellcheck source=bin/utils
|
||||||
|
source "$BIN_DIR/utils"
|
||||||
|
|
||||||
|
DISABLE_COLLECTSTATIC=1 "$(dirname "${0:-}")/compile" "$1" "$2" "$3"
|
||||||
|
|
||||||
if [[ -f "$1/requirements-test.txt" ]]; then
|
if [[ -f "$1/requirements-test.txt" ]]; then
|
||||||
/app/.heroku/python/bin/pip install -r "$1/requirements-test.txt" --exists-action=w --src=./.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | cleanup | indent
|
/app/.heroku/python/bin/pip install -r "$1/requirements-test.txt" --exists-action=w --src=./.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | cleanup | indent
|
||||||
|
|||||||
@@ -1,6 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
shopt -s extglob
|
shopt -s extglob
|
||||||
|
shopt -s nullglob
|
||||||
|
|
||||||
if [ $(uname) == Darwin ]; then
|
# The standard library.
|
||||||
|
if [[ ! -f /tmp/stdlib.sh ]]; then
|
||||||
|
curl --retry 3 -s https://lang-common.s3.amazonaws.com/buildpack-stdlib/v8/stdlib.sh > /tmp/stdlib.sh
|
||||||
|
fi
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
source /tmp/stdlib.sh
|
||||||
|
|
||||||
|
if [ "$(uname)" == Darwin ]; then
|
||||||
sed() { command sed -l "$@"; }
|
sed() { command sed -l "$@"; }
|
||||||
else
|
else
|
||||||
sed() { command sed -u "$@"; }
|
sed() { command sed -u "$@"; }
|
||||||
@@ -11,46 +20,20 @@ indent() {
|
|||||||
sed "s/^/ /"
|
sed "s/^/ /"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# Clean up pip output
|
# Clean up pip output
|
||||||
cleanup() {
|
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'
|
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 Indented line.
|
|
||||||
puts-line() {
|
|
||||||
echo " $@"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Buildpack Steps.
|
# Buildpack Steps.
|
||||||
puts-step() {
|
puts-step() {
|
||||||
echo "-----> $@"
|
echo "-----> $*"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Buildpack Warnings.
|
# Buildpack Warnings.
|
||||||
puts-warn() {
|
puts-warn() {
|
||||||
echo " ! $@"
|
echo " ! $*"
|
||||||
}
|
|
||||||
|
|
||||||
# Buildpack Commands.
|
|
||||||
puts-cmd() {
|
|
||||||
echo " $ $@"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Usage: $ set-env key value
|
|
||||||
set-env() {
|
|
||||||
echo "export $1=$2" >> $PROFILE_PATH
|
|
||||||
echo "export $1=$2" >> $EXPORT_PATH
|
|
||||||
}
|
|
||||||
|
|
||||||
# Usage: $ set-default-env key value
|
|
||||||
set-default-env() {
|
|
||||||
echo "export $1=\${$1:-$2}" >> $PROFILE_PATH
|
|
||||||
echo "export $1=\${$1:-$2}" >> $EXPORT_PATH
|
|
||||||
}
|
|
||||||
|
|
||||||
# Usage: $ un-set-env key
|
|
||||||
un-set-env() {
|
|
||||||
echo "unset $1" >> $PROFILE_PATH
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Does some serious copying.
|
# Does some serious copying.
|
||||||
@@ -69,42 +52,9 @@ deep-cp() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
# Does some serious moving.
|
|
||||||
deep-mv() {
|
# Measure the size of the Python installation.
|
||||||
deep-cp "$1" "$2"
|
measure-size() {
|
||||||
deep-rm "$1"
|
echo "$(du -s .heroku/python 2>/dev/null || echo 0) | awk '{print $1}')"
|
||||||
}
|
|
||||||
|
|
||||||
# Does some serious deleting.
|
|
||||||
deep-rm() {
|
|
||||||
# subshell to avoid surprising caller with shopts.
|
|
||||||
(
|
|
||||||
shopt -s dotglob
|
|
||||||
rm -rf "$1"/!(.curlrc|.netrc|tmp|.|..)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
sub-env() {
|
|
||||||
|
|
||||||
WHITELIST=${2:-''}
|
|
||||||
BLACKLIST=${3:-'^(GIT_DIR|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
|
|
||||||
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
shopt -s extglob
|
shopt -s extglob
|
||||||
|
|
||||||
old-platform() {
|
old-platform() {
|
||||||
@@ -7,6 +8,7 @@ old-platform() {
|
|||||||
puts-warn "This caused the security warning you saw above during the 'pip install' step."
|
puts-warn "This caused the security warning you saw above during the 'pip install' step."
|
||||||
puts-warn "We recommend '$RECOMMENDED_PYTHON_VERSION', which you can specify in a 'runtime.txt' file."
|
puts-warn "We recommend '$RECOMMENDED_PYTHON_VERSION', which you can specify in a 'runtime.txt' file."
|
||||||
puts-warn " -- Much Love, Heroku."
|
puts-warn " -- Much Love, Heroku."
|
||||||
|
mcount 'warnings.python.old'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -16,6 +18,7 @@ pylibmc-missing() {
|
|||||||
puts-warn "Hello! There was a problem with your build related to libmemcache."
|
puts-warn "Hello! There was a problem with your build related to libmemcache."
|
||||||
puts-warn "The Python library 'pylibmc' must be explicitly specified in 'requirements.txt' in order to build correctly."
|
puts-warn "The Python library 'pylibmc' must be explicitly specified in 'requirements.txt' in order to build correctly."
|
||||||
puts-warn "Once you do that, everything should work as expected. -- Much Love, Heroku."
|
puts-warn "Once you do that, everything should work as expected. -- Much Love, Heroku."
|
||||||
|
mcount 'warnings.libmemcache'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -27,6 +30,7 @@ scipy-included() {
|
|||||||
puts-warn "There is, however, a buildpack available that makes it possible to use it on Heroku."
|
puts-warn "There is, however, a buildpack available that makes it possible to use it on Heroku."
|
||||||
puts-warn "You can learn more here: https://devcenter.heroku.com/articles/python-c-deps"
|
puts-warn "You can learn more here: https://devcenter.heroku.com/articles/python-c-deps"
|
||||||
puts-warn "Sorry for the inconvenience. -- Much Love, Heroku."
|
puts-warn "Sorry for the inconvenience. -- Much Love, Heroku."
|
||||||
|
mcount 'warnings.scipy'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -37,6 +41,18 @@ distribute-included() {
|
|||||||
puts-warn "This library is automatically installed by Heroku and shouldn't be in"
|
puts-warn "This library is automatically installed by Heroku and shouldn't be in"
|
||||||
puts-warn "Your requirements.txt file. This can cause unexpected behavior."
|
puts-warn "Your requirements.txt file. This can cause unexpected behavior."
|
||||||
puts-warn " -- Much Love, Heroku."
|
puts-warn " -- Much Love, Heroku."
|
||||||
|
mcount 'warnings.distribute'
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
six-included() {
|
||||||
|
if grep -qi 'Running setup.py install for six' "$WARNINGS_LOG"; then
|
||||||
|
echo
|
||||||
|
puts-warn "Hello! Your requirements.txt file contains the six package."
|
||||||
|
puts-warn "This library is automatically installed by Heroku and shouldn't be in"
|
||||||
|
puts-warn "Your requirements.txt file. This can cause unexpected behavior."
|
||||||
|
puts-warn " -- Much Love, Heroku."
|
||||||
|
mcount 'warnings.six'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,5 +61,6 @@ show-warnings() {
|
|||||||
pylibmc-missing
|
pylibmc-missing
|
||||||
scipy-included
|
scipy-included
|
||||||
distribute-included
|
distribute-included
|
||||||
|
six-included
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+11
-1
@@ -1,5 +1,7 @@
|
|||||||
# Python Buildpack Binaries
|
# Python Buildpack Binaries
|
||||||
|
|
||||||
|
For Cedar-14 stack
|
||||||
|
------------------
|
||||||
|
|
||||||
To get started with it, create an app on Heroku inside a clone of this repository, and set your S3 config vars:
|
To get started with it, create an app on Heroku inside a clone of this repository, and set your S3 config vars:
|
||||||
|
|
||||||
@@ -28,4 +30,12 @@ If this works, run `bob deploy` instead of `bob build` to have the result upload
|
|||||||
|
|
||||||
To speed things up drastically, it'll usually be a good idea to `heroku run bash --size PX` instead.
|
To speed things up drastically, it'll usually be a good idea to `heroku run bash --size PX` instead.
|
||||||
|
|
||||||
Enjoy :)
|
For Heroku-16 stack
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
1. Ensure GNU Make and Docker are installed.
|
||||||
|
2. From the root of the buildpack repository, run: `make buildenv-heroku-16`
|
||||||
|
3. Follow the instructions displayed!
|
||||||
|
|
||||||
|
|
||||||
|
Enjoy :)
|
||||||
|
|||||||
Vendored
+5
-4
@@ -10,14 +10,15 @@ hash -r
|
|||||||
|
|
||||||
echo "Building gdal..."
|
echo "Building gdal..."
|
||||||
|
|
||||||
SOURCE_TARBALL='http://download.osgeo.org/gdal/1.11.1/gdal-1.11.1.tar.gz'
|
VERSION="1.11.5"
|
||||||
|
SOURCE_TARBALL="http://download.osgeo.org/gdal/${VERSION}/gdal-${VERSION}.tar.gz"
|
||||||
|
|
||||||
curl -L $SOURCE_TARBALL | tar zx
|
curl -L $SOURCE_TARBALL | tar zx
|
||||||
|
|
||||||
cd gdal-1.11.1
|
pushd "gdal-${VERSION}"
|
||||||
./configure --prefix=$OUT_PREFIX &&
|
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
cd ..
|
popd
|
||||||
|
|||||||
Vendored
+3
-3
@@ -10,12 +10,12 @@ hash -r
|
|||||||
|
|
||||||
echo "Building geos..."
|
echo "Building geos..."
|
||||||
|
|
||||||
SOURCE_TARBALL='http://download.osgeo.org/geos/geos-3.4.2.tar.bz2'
|
SOURCE_TARBALL='http://download.osgeo.org/geos/geos-3.4.3.tar.bz2'
|
||||||
|
|
||||||
curl -L $SOURCE_TARBALL | tar xj
|
curl -L $SOURCE_TARBALL | tar xj
|
||||||
|
|
||||||
cd geos-3.4.2
|
cd geos-3.4.3
|
||||||
./configure --prefix=$OUT_PREFIX &&
|
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-1
@@ -15,7 +15,7 @@ SOURCE_TARBALL='http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
|
|||||||
curl -L $SOURCE_TARBALL | tar zx
|
curl -L $SOURCE_TARBALL | tar zx
|
||||||
|
|
||||||
cd proj-4.8.0
|
cd proj-4.8.0
|
||||||
./configure --prefix=$OUT_PREFIX &&
|
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
|
|||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
# NOTICE: This formula only works for the cedar-14 and heroku-16 stacks, not cedar.
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building PyPy..."
|
||||||
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.7.0-linux64.tar.bz2'
|
||||||
|
curl -L $SOURCE_TARBALL | tar jx
|
||||||
|
cp -R pypy2-v5.7.0-linux64/* $OUT_PREFIX
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python
|
||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
# NOTICE: This formula only works for the cedar-14 stack, not cedar.
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building PyPy..."
|
||||||
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.7.1-linux64.tar.bz2'
|
||||||
|
curl -L $SOURCE_TARBALL | tar jx
|
||||||
|
cp -R pypy2-v5.7.1-linux64/* $OUT_PREFIX
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python
|
||||||
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building PyPy..."
|
||||||
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.8.0-linux64.tar.bz2'
|
||||||
|
curl -L $SOURCE_TARBALL | tar jx
|
||||||
|
cp -R pypy2-v5.8.0-linux64/* $OUT_PREFIX
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python
|
||||||
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building PyPy..."
|
||||||
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.7.1-linux64.tar.bz2'
|
||||||
|
curl -L $SOURCE_TARBALL | tar jx
|
||||||
|
cp -R pypy3-v5.7.1-linux64/* $OUT_PREFIX
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/pypy3 $OUT_PREFIX/bin/python
|
||||||
Executable
+12
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building PyPy..."
|
||||||
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.8.0-linux64.tar.bz2'
|
||||||
|
curl -L $SOURCE_TARBALL | tar jx
|
||||||
|
cp -R pypy3-v5.8.0-linux64/* $OUT_PREFIX
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/pypy3 $OUT_PREFIX/bin/python
|
||||||
@@ -13,3 +13,7 @@ cd src
|
|||||||
./configure --prefix=$OUT_PREFIX --enable-unicode=ucs4 --with-ensurepip=no
|
./configure --prefix=$OUT_PREFIX --enable-unicode=ucs4 --with-ensurepip=no
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
|
# Remove unneeded test directories, similar to the official Docker Python images:
|
||||||
|
# https://github.com/docker-library/python
|
||||||
|
find "${OUT_PREFIX}" \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf '{}' +
|
||||||
|
|||||||
Executable
+18
@@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building Python..."
|
||||||
|
SOURCE_TARBALL='https://python.org/ftp/python/3.5.3/Python-3.5.3.tgz'
|
||||||
|
curl -L $SOURCE_TARBALL | tar xz
|
||||||
|
mv Python-3.5.3 src
|
||||||
|
cd src
|
||||||
|
|
||||||
|
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
|
||||||
|
# ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
|
||||||
|
|
||||||
Executable
+18
@@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building Python..."
|
||||||
|
SOURCE_TARBALL='https://python.org/ftp/python/3.6.1/Python-3.6.1.tgz'
|
||||||
|
curl -L $SOURCE_TARBALL | tar xz
|
||||||
|
mv Python-3.6.1 src
|
||||||
|
cd src
|
||||||
|
|
||||||
|
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
|
||||||
|
|
||||||
Executable
+21
@@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build Path: /app/.heroku/python/
|
||||||
|
# Build Deps: libraries/sqlite
|
||||||
|
|
||||||
|
OUT_PREFIX=$1
|
||||||
|
|
||||||
|
echo "Building Python..."
|
||||||
|
SOURCE_TARBALL='https://python.org/ftp/python/3.6.2/Python-3.6.2.tgz'
|
||||||
|
curl -L $SOURCE_TARBALL | tar xz
|
||||||
|
mv Python-3.6.2 src
|
||||||
|
cd src
|
||||||
|
|
||||||
|
./configure --prefix=$OUT_PREFIX --with-ensurepip=no
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
|
||||||
|
# Remove unneeded test directories, similar to the official Docker Python images:
|
||||||
|
# https://github.com/docker-library/python
|
||||||
|
find "${OUT_PREFIX}" \( -type d -a \( -name test -o -name tests \) \) -exec rm -rf '{}' +
|
||||||
|
|
||||||
|
ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
bob-builder==0.0.5
|
bob-builder==0.0.13
|
||||||
|
|||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
django
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
wordnet
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
nltk
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
python-2.7.13
|
||||||
Vendored
+9
@@ -0,0 +1,9 @@
|
|||||||
|
[[source]]
|
||||||
|
url = "https://pypi.python.org/simple"
|
||||||
|
verify_ssl = true
|
||||||
|
|
||||||
|
[packages]
|
||||||
|
requests = "*"
|
||||||
|
|
||||||
|
[requires]
|
||||||
|
python_version = "3.6"
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"default": {
|
||||||
|
"requests": {
|
||||||
|
"version": "==2.13.0",
|
||||||
|
"hash": "sha256:1a720e8862a41aa22e339373b526f508ef0c8988baf48b84d3fc891a8e237efb"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"develop": {},
|
||||||
|
"_meta": {
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"url": "https://pypi.python.org/simple",
|
||||||
|
"verify_ssl": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"requires": {
|
||||||
|
"python_version": "3.6"
|
||||||
|
},
|
||||||
|
"hash": {
|
||||||
|
"sha256": "5866990104fc8f27d13cdf01abc2a32c553129e03f666316cacc5b42d3e0884e"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+2
@@ -0,0 +1,2 @@
|
|||||||
|
[packages]
|
||||||
|
"delegator.py" = "*"
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
pylibmc
|
||||||
Vendored
-1
@@ -1 +0,0 @@
|
|||||||
python-3.6.0
|
|
||||||
@@ -1,10 +1,32 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
testPipenv() {
|
||||||
|
compile "pipenv"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
|
testPipenvVersion() {
|
||||||
|
compile "pipenv-version"
|
||||||
|
assertCaptured "3.6.2"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
testNoRequirements() {
|
testNoRequirements() {
|
||||||
compile "no-requirements"
|
compile "no-requirements"
|
||||||
assertCapturedError
|
assertCapturedError
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testGEOS() {
|
||||||
|
BUILD_WITH_GEO_LIBRARIES=1 compile "geos"
|
||||||
|
assertCaptured "geos"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
|
testNLTK() {
|
||||||
|
compile "nltk"
|
||||||
|
assertCaptured "wordnet"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
testSetupPy() {
|
testSetupPy() {
|
||||||
compile "setup-py"
|
compile "setup-py"
|
||||||
@@ -25,6 +47,12 @@ testPsycopg2() {
|
|||||||
assertCapturedSuccess
|
assertCapturedSuccess
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testPylibmc() {
|
||||||
|
compile "pylibmc"
|
||||||
|
assertCaptured "pylibmc"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
testPython2() {
|
testPython2() {
|
||||||
compile "python2"
|
compile "python2"
|
||||||
assertCaptured "python-2.7.13"
|
assertCaptured "python-2.7.13"
|
||||||
@@ -33,11 +61,30 @@ testPython2() {
|
|||||||
|
|
||||||
testPython3() {
|
testPython3() {
|
||||||
compile "python3"
|
compile "python3"
|
||||||
assertCaptured "python-3.6.0"
|
assertCaptured "python-3.6.2"
|
||||||
assertCapturedSuccess
|
assertCapturedSuccess
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testSmartRequirements() {
|
||||||
|
local cache_dir="$(mktmpdir)"
|
||||||
|
compile "requirements-standard" "$cache_dir"
|
||||||
|
assertFile "requests" ".heroku/python/requirements-declared.txt"
|
||||||
|
assertCapturedSuccess
|
||||||
|
compile "psycopg2" "$cache_dir"
|
||||||
|
assertCaptured "Uninstalling requests"
|
||||||
|
assertFile "psycopg2" ".heroku/python/requirements-declared.txt"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
|
testStackChange() {
|
||||||
|
local cache_dir="$(mktmpdir)"
|
||||||
|
mkdir -p "${cache_dir}/.heroku"
|
||||||
|
echo "different-stack" > "${cache_dir}/.heroku/python-stack"
|
||||||
|
compile "requirements-standard" "$cache_dir"
|
||||||
|
assertCaptured "clearing cache"
|
||||||
|
assertFile "$STACK" ".heroku/python-stack"
|
||||||
|
assertCapturedSuccess
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
pushd $(dirname 0) >/dev/null
|
pushd $(dirname 0) >/dev/null
|
||||||
|
|||||||
+10
-2
@@ -93,8 +93,14 @@ assertNotCaptured()
|
|||||||
|
|
||||||
assertCapturedSuccess()
|
assertCapturedSuccess()
|
||||||
{
|
{
|
||||||
assertEquals "Expected captured exit code to be 0; was <${RETURN}>" "0" "${RETURN}"
|
assertEquals "Captured exit code -" "0" "${RETURN}"
|
||||||
assertEquals "Expected STD_ERR to be empty; was <$(cat ${STD_ERR})>" "" "$(cat ${STD_ERR})"
|
assertEquals "STD_ERR -" "" "$(cat ${STD_ERR})"
|
||||||
|
|
||||||
|
if [ $RETURN -ne 0 -a -z "$(cat ${STD_ERR})" ]; then
|
||||||
|
# Failing exit code but stderr was empty. Display stdout to help debugging.
|
||||||
|
cat $STD_OUT
|
||||||
|
echo
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# assertCapturedError [[expectedErrorCode] expectedErrorMsg]
|
# assertCapturedError [[expectedErrorCode] expectedErrorMsg]
|
||||||
@@ -150,6 +156,8 @@ _assertContains()
|
|||||||
debug()
|
debug()
|
||||||
{
|
{
|
||||||
cat $STD_OUT
|
cat $STD_OUT
|
||||||
|
echo '^^^^^^'
|
||||||
|
cat $STD_ERR
|
||||||
}
|
}
|
||||||
|
|
||||||
assertContains()
|
assertContains()
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if [[ ! "$STACK" ]]; then
|
||||||
|
echo '$STACK must be set! (heroku-16 | cedar-14)'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$STACK" == "cedar-14" ]]; then
|
||||||
|
make test-cedar-14
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$STACK" == "heroku-16" ]]; then
|
||||||
|
make test-heroku-16
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
+29
@@ -0,0 +1,29 @@
|
|||||||
|
case $(ulimit -u) in
|
||||||
|
|
||||||
|
# Automatic configuration for Gunicorn's Workers setting.
|
||||||
|
|
||||||
|
# Standard-1X (+Free, +Hobby) Dyno
|
||||||
|
256)
|
||||||
|
export DYNO_RAM=512
|
||||||
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-2}
|
||||||
|
;;
|
||||||
|
|
||||||
|
# Standard-2X Dyno
|
||||||
|
512)
|
||||||
|
export DYNO_RAM=1024
|
||||||
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-4}
|
||||||
|
;;
|
||||||
|
|
||||||
|
# Performance-M Dyno
|
||||||
|
16384)
|
||||||
|
export DYNO_RAM=2560
|
||||||
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-8}
|
||||||
|
;;
|
||||||
|
|
||||||
|
# Performance-L Dyno
|
||||||
|
32768)
|
||||||
|
export DYNO_RAM=14336
|
||||||
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-11}
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
Vendored
-14
@@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_PATH = '{0}.zip'.format(os.path.abspath(__file__))
|
|
||||||
BPWATCH_DISTRO_PATH = os.environ.get('BPWATCH_DISTRO_PATH', DEFAULT_PATH)
|
|
||||||
|
|
||||||
sys.path.insert(0, BPWATCH_DISTRO_PATH)
|
|
||||||
|
|
||||||
import bp_cli
|
|
||||||
bp_cli.main()
|
|
||||||
Vendored
BIN
Binary file not shown.
Vendored
+20061
File diff suppressed because it is too large
Load Diff
Vendored
BIN
Binary file not shown.
+38
@@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
"""Usage:
|
||||||
|
sp-grep [-s] <package>...
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-h --help Show this screen.
|
||||||
|
"""
|
||||||
|
from docopt import docopt
|
||||||
|
from pkg_resources import DistributionNotFound, get_distribution
|
||||||
|
|
||||||
|
|
||||||
|
def has_any_distribution(names, silent=False):
|
||||||
|
for name in names:
|
||||||
|
try:
|
||||||
|
get_distribution(name)
|
||||||
|
except DistributionNotFound:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not silent:
|
||||||
|
print('Package {name} found!'.format(name=name))
|
||||||
|
|
||||||
|
exit(0)
|
||||||
|
|
||||||
|
if not silent:
|
||||||
|
print('Not found.')
|
||||||
|
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
args = docopt(__doc__, version='sp-grep')
|
||||||
|
has_any_distribution(names=args['<package>'], silent=args['-s'])
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
Vendored
-36
@@ -1,38 +1,2 @@
|
|||||||
if [[ "${WEB_CONCURRENCY:-}" == 0* ]]; then
|
|
||||||
# another buildpack set a default value, with leading zero
|
|
||||||
unset WEB_CONCURRENCY
|
|
||||||
fi
|
|
||||||
|
|
||||||
case $(ulimit -u) in
|
|
||||||
|
|
||||||
# Automatic configuration for Gunicorn's Workers setting.
|
|
||||||
# Leading zero padding so a subsequent buildpack can figure out that we set a value, and not the user
|
|
||||||
|
|
||||||
# Standard-1X (+Free, +Hobby) Dyno
|
|
||||||
256)
|
|
||||||
export DYNO_RAM=512
|
|
||||||
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-02}
|
|
||||||
;;
|
|
||||||
|
|
||||||
# Standard-2X Dyno
|
|
||||||
512)
|
|
||||||
export DYNO_RAM=1024
|
|
||||||
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-04}
|
|
||||||
;;
|
|
||||||
|
|
||||||
# Performance-M Dyno
|
|
||||||
16384)
|
|
||||||
export DYNO_RAM=2560
|
|
||||||
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-08}
|
|
||||||
;;
|
|
||||||
|
|
||||||
# Performance-L Dyno
|
|
||||||
32768)
|
|
||||||
export DYNO_RAM=6656
|
|
||||||
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-011}
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Automatic configuration for Gunicorn's ForwardedAllowIPS setting.
|
# Automatic configuration for Gunicorn's ForwardedAllowIPS setting.
|
||||||
export FORWARDED_ALLOW_IPS='*'
|
export FORWARDED_ALLOW_IPS='*'
|
||||||
|
|||||||
+11
@@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
runtime_file = sys.argv[1]
|
||||||
|
|
||||||
|
with open(runtime_file, 'r') as f:
|
||||||
|
r = f.read().strip()
|
||||||
|
|
||||||
|
with open(runtime_file, 'w') as f:
|
||||||
|
f.write(r)
|
||||||
Vendored
BIN
Binary file not shown.
Reference in New Issue
Block a user