python/gunicorn: Updated for version 19.9.0.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
be8f5f20b3
commit
a29134952d
|
@ -3,3 +3,5 @@ It's a pre-fork worker model ported from Ruby's Unicorn project.
|
|||
The Gunicorn server is broadly compatible with various web
|
||||
frameworks, simply implemented, light on server resource usage,
|
||||
and fairly speedy.
|
||||
|
||||
Optional dependency (autodetected): python3
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for gunicorn
|
||||
|
||||
# Copyright 2016-2018 Dimitris Zlatanidis Orestiada, Greece
|
||||
# Copyright 2016-2019 Dimitris Zlatanidis Orestiada, Greece
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=gunicorn
|
||||
VERSION=${VERSION:-19.8.0}
|
||||
VERSION=${VERSION:-19.9.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -71,6 +71,11 @@ find -L . \
|
|||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
# Python 3 support.
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="gunicorn"
|
||||
VERSION="19.8.0"
|
||||
VERSION="19.9.0"
|
||||
HOMEPAGE="https://gunicorn.org/"
|
||||
DOWNLOAD="https://files.pythonhosted.org/packages/ac/92/a906209497d6391ef8826bc2e5d8d7b164d7c6253cc8bda36bf03a8d0161/gunicorn-19.8.0.tar.gz"
|
||||
MD5SUM="e64872dc5f09726627ee5946d881eb3b"
|
||||
DOWNLOAD="https://files.pythonhosted.org/packages/47/52/68ba8e5e8ba251e54006a49441f7ccabca83b6bef5aedacb4890596c7911/gunicorn-19.9.0.tar.gz"
|
||||
MD5SUM="f581937e9d8569ebd3fd6af1f9ab809f"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue