2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Python'da yazılmış (green unicorn) WSGI HTTP sunucu
|
2017-03-19 02:02:24 +01:00
|
|
|
|
# URL: http://pypi.python.org/pypi/six/
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: python python3 python-pip python3-pip
|
2017-03-19 02:02:24 +01:00
|
|
|
|
|
|
|
|
|
name=gunicorn
|
|
|
|
|
version=19.7.0
|
|
|
|
|
release=1
|
|
|
|
|
|
|
|
|
|
source=(https://github.com/benoitc/${name}/archive/${version}.tar.gz)
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-03-19 02:02:24 +01:00
|
|
|
|
cd "${name}-${version}"
|
|
|
|
|
python3 setup.py install --root="${PKG}" --prefix=/usr --optimize=1
|
2017-03-19 02:14:46 +01:00
|
|
|
|
mv "${PKG}/usr/bin/gunicorn" "${PKG}/usr/bin/gunicorn3"
|
|
|
|
|
python setup.py install --root="${PKG}" --prefix=/usr --optimize=1
|
2017-03-19 02:02:24 +01:00
|
|
|
|
rm -r "${PKG}/usr/bin/gunicorn_paster"
|
|
|
|
|
}
|
|
|
|
|
|