python/werkzeug: Updated for version 0.16.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
1edad651ef
commit
ddb7e59b58
|
@ -4,12 +4,12 @@ Werkzeug started as simple collection of various utilities for WSGI
|
|||
applications and has become one of the most advanced WSGI utility modules.
|
||||
It includes a powerful debugger, full featured request and response objects,
|
||||
HTTP utilities to handle entity tags, cache control headers, HTTP dates,
|
||||
cookie handling, file uploads, a powerful URL routing system and a bunch
|
||||
of community contributed addon modules.
|
||||
cookie handling, file uploads, a powerful URL routing system and a bunch of
|
||||
community contributed addon modules.
|
||||
|
||||
Werkzeug is unicode aware and doesn't enforce a specific template engine,
|
||||
Werkzeug is Unicode aware and doesn't enforce a specific template engine,
|
||||
database adapter or anything else. It doesn't even enforce a specific way
|
||||
of handling requests and leaves all that up to the developer.
|
||||
|
||||
It's most useful for end user applications which should work on as many
|
||||
server environments as possible (such as blogs, wikis, bulletin boards, etc)
|
||||
It's most useful for end user applications which should work on as many server
|
||||
environments as possible (such as blogs, wikis, bulletin boards, etc).
|
||||
|
|
|
@ -11,7 +11,7 @@ werkzeug:
|
|||
werkzeug: Werkzeug started as simple collection of various utilities for WSGI
|
||||
werkzeug: and has become one of the most advanced WSGI utility modules.
|
||||
werkzeug: It includes a powerful debugger, fully featured request and response
|
||||
werkzeug: objects, HTTP utilities to handle entity tags, cache control headers
|
||||
werkzeug: objects, HTTP utilities to handle entity tags, cache control headers,
|
||||
werkzeug: HTTP dates, cookie handling, file uploads, a powerful URL routing
|
||||
werkzeug: system and a bunch of community contributed addon modules.
|
||||
werkzeug:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Slackware build script for werkzeug
|
||||
|
||||
# Copyright 2013 Mohamed LYAHYAOUI <mlyahyaoui@gmail.com>
|
||||
# Copyright 2018, 2019 Dominik Drobek <dominik.drobek (at) o2.pl>
|
||||
# Copyright 2018-2020 Dominik Drobek <dominik.drobek (at) o2.pl>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -25,7 +25,7 @@
|
|||
|
||||
PRGNAM=werkzeug
|
||||
SRCNAM=Werkzeug
|
||||
VERSION=${VERSION:-0.15.6}
|
||||
VERSION=${VERSION:-0.16.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -71,10 +71,10 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
python setup.py install --root $PKG
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
if $(python3 -c 'import sys' 2>/dev/null); then
|
||||
python3 setup.py install --root=$PKG
|
||||
python3 setup.py install --root=$PKG
|
||||
fi
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="werkzeug"
|
||||
VERSION="0.15.6"
|
||||
VERSION="0.16.1"
|
||||
HOMEPAGE="https://palletsprojects.com/p/werkzeug/"
|
||||
DOWNLOAD="https://files.pythonhosted.org/packages/a3/32/2c91f662d66d4ae8993987b56cd1706a9a526f3ac310dd7fca47d7851533/Werkzeug-0.15.6.tar.gz"
|
||||
MD5SUM="99f94e0271b8a60462dd1e0ad5ec65ba"
|
||||
DOWNLOAD="https://files.pythonhosted.org/packages/c3/1d/1c0761d9365d166dc9d882a48c437111d22b0df564d6d5768045d9a51fd0/Werkzeug-0.16.1.tar.gz"
|
||||
MD5SUM="bfa03955bdc885e8612493b5d2122e15"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue