Nikita Solianik
2025-09-30 19:34:12 +02:00
committed by Josef Schlehofer
parent 6a13be2220
commit 5eaf0e6c05
3 changed files with 5 additions and 5 deletions

View File

@@ -1,12 +1,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=uwsgi PKG_NAME:=uwsgi
PKG_VERSION:=2.0.26 PKG_VERSION:=2.0.30
PKG_RELEASE:=2 PKG_RELEASE:=1
PYPI_NAME:=uWSGI PYPI_NAME:=uWSGI
PYPI_SOURCE_NAME:=uwsgi PYPI_SOURCE_NAME:=uwsgi
PKG_HASH:=86e6bfcd4dc20529665f5b7777193cdc48622fb2c59f0a7f1e3dc32b3882e7f9 PKG_HASH:=c12aa652124f062ac216077da59f6d247bd7ef938234445881552e58afb1eb5f
PKG_LICENSE:=GPL-2.0-or-later PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=LICENSE PKG_LICENSE_FILES:=LICENSE

View File

@@ -1,6 +1,6 @@
--- a/uwsgiconfig.py --- a/uwsgiconfig.py
+++ b/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 os
import re import re
import time import time

View File

@@ -12,7 +12,7 @@ Given the changeset which introduced this option with the ssl-enable3 option whi
--- a/core/uwsgi.c --- a/core/uwsgi.c
+++ b/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-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-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}, {"ssl-enable-tlsv1", no_argument, 0, "enable TLSv1 (insecure)", uwsgi_opt_true, &uwsgi.tlsv1, 0},