diff --git a/net/uwsgi/Makefile b/net/uwsgi/Makefile index 58605b4edb..ad03af9eab 100644 --- a/net/uwsgi/Makefile +++ b/net/uwsgi/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uwsgi -PKG_VERSION:=2.0.26 -PKG_RELEASE:=2 +PKG_VERSION:=2.0.30 +PKG_RELEASE:=1 PYPI_NAME:=uWSGI PYPI_SOURCE_NAME:=uwsgi -PKG_HASH:=86e6bfcd4dc20529665f5b7777193cdc48622fb2c59f0a7f1e3dc32b3882e7f9 +PKG_HASH:=c12aa652124f062ac216077da59f6d247bd7ef938234445881552e58afb1eb5f PKG_LICENSE:=GPL-2.0-or-later PKG_LICENSE_FILES:=LICENSE diff --git a/net/uwsgi/patches/003-hard-code-Linux-as-compilation-os.patch b/net/uwsgi/patches/003-hard-code-Linux-as-compilation-os.patch index c85dbb56b8..d783b6f74e 100644 --- a/net/uwsgi/patches/003-hard-code-Linux-as-compilation-os.patch +++ b/net/uwsgi/patches/003-hard-code-Linux-as-compilation-os.patch @@ -1,6 +1,6 @@ --- a/uwsgiconfig.py +++ b/uwsgiconfig.py -@@ -5,9 +5,9 @@ uwsgi_version = '2.0.26' +@@ -5,9 +5,9 @@ uwsgi_version = '2.0.30' import os import re import time diff --git a/net/uwsgi/patches/005-ssl-option-can_t-be-set.patch b/net/uwsgi/patches/005-ssl-option-can_t-be-set.patch index efdbd47e67..f3290f2117 100644 --- a/net/uwsgi/patches/005-ssl-option-can_t-be-set.patch +++ b/net/uwsgi/patches/005-ssl-option-can_t-be-set.patch @@ -12,7 +12,7 @@ Given the changeset which introduced this option with the ssl-enable3 option whi --- a/core/uwsgi.c +++ b/core/uwsgi.c -@@ -678,7 +678,7 @@ static struct uwsgi_option uwsgi_base_op +@@ -679,7 +679,7 @@ static struct uwsgi_option uwsgi_base_op {"ssl-enable3", no_argument, 0, "enable SSLv3 (insecure)", uwsgi_opt_true, &uwsgi.sslv3, 0}, {"ssl-enable-sslv3", no_argument, 0, "enable SSLv3 (insecure)", uwsgi_opt_true, &uwsgi.sslv3, 0}, {"ssl-enable-tlsv1", no_argument, 0, "enable TLSv1 (insecure)", uwsgi_opt_true, &uwsgi.tlsv1, 0},