Index: head/www/uwsgi/Makefile =================================================================== --- head/www/uwsgi/Makefile (revision 414932) +++ head/www/uwsgi/Makefile (revision 414933) @@ -1,42 +1,41 @@ # Created by: Daniel Gerzo # $FreeBSD$ PORTNAME= uwsgi -PORTVERSION= 2.0.12 -PORTREVISION= 1 +PORTVERSION= 2.0.13 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ MAINTAINER= demon@FreeBSD.org COMMENT= Developer-friendly WSGI server which uses uwsgi protocol LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= python USE_PYTHON= distutils USE_RC_SUBR= uwsgi OPTIONS_DEFINE= DEBUG DEBUG_VARS= PYDISTUTILS_BUILDARGS+=--debug LDFLAGS+= "-L${LOCALBASE}/lib" MAKE_ENV+= CPUCOUNT=${MAKE_JOBS_NUMBER} UWSGI_EMBED_PLUGINS=cgi PYSETUP= uwsgiconfig.py PYDISTUTILS_BUILD_TARGET= --build PYDISTUTILS_BUILDARGS= --verbose PLIST_FILES= bin/uwsgi \ %%PYTHON_SITELIBDIR%%/uwsgidecorators.py do-configure: @${DO_NADA} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ ${MKDIR} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/uwsgidecorators.py ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} .include Index: head/www/uwsgi/distinfo =================================================================== --- head/www/uwsgi/distinfo (revision 414932) +++ head/www/uwsgi/distinfo (revision 414933) @@ -1,2 +1,2 @@ -SHA256 (uwsgi-2.0.12.tar.gz) = 306b51db97648d6d23bb7eacd76e5a413434575f220dac1de231c8c26d33e409 -SIZE (uwsgi-2.0.12.tar.gz) = 784048 +SHA256 (uwsgi-2.0.13.tar.gz) = 038ba9c21ad71ab02a5b966b95ee8627af0aa4966e066865f7063a0ab1c0305e +SIZE (uwsgi-2.0.13.tar.gz) = 784960 Index: head/www/uwsgi/files/patch-2483e64.diff =================================================================== --- head/www/uwsgi/files/patch-2483e64.diff (revision 414932) +++ head/www/uwsgi/files/patch-2483e64.diff (nonexistent) @@ -1,61 +0,0 @@ -commit 2483e64e6dd504af5eefd4da94fc57c0f83b2563 -Author: Joerg Sonnenberger -Date: Wed Jan 13 17:00:53 2016 +0100 - - plugins: properly update loop indexes once - - Fix clang warning about changing the loop variable in both loop - body and header - -diff --git plugins/cgi/cgi_plugin.c plugins/cgi/cgi_plugin.c -index e4fe6e6..340886a 100644 ---- plugins/cgi/cgi_plugin.c -+++ plugins/cgi/cgi_plugin.c -@@ -763,12 +763,11 @@ clear2: - } - - // fill cgi env -- for(i=0;ivar_cnt;i++) { -+ for(i=0;ivar_cnt;i+=2) { - // no need to free the putenv() memory - if (putenv(uwsgi_concat3n(wsgi_req->hvec[i].iov_base, wsgi_req->hvec[i].iov_len, "=", 1, wsgi_req->hvec[i+1].iov_base, wsgi_req->hvec[i+1].iov_len))) { - uwsgi_error("putenv()"); - } -- i++; - } - - -diff --git plugins/gccgo/gccgo_plugin.c plugins/gccgo/gccgo_plugin.c -index 09cfd69..98d8f71 100644 ---- plugins/gccgo/gccgo_plugin.c -+++ plugins/gccgo/gccgo_plugin.c -@@ -233,9 +233,8 @@ static int uwsgi_gccgo_request(struct wsgi_request *wsgi_req) { - - wsgi_req->async_environ = uwsgigo_env(wsgi_req); - int i; -- for(i=0;ivar_cnt;i++) { -+ for(i=0;ivar_cnt;i+=2) { - uwsgigo_env_add(wsgi_req->async_environ, wsgi_req->hvec[i].iov_base, wsgi_req->hvec[i].iov_len, wsgi_req->hvec[i+1].iov_base, wsgi_req->hvec[i+1].iov_len); -- i++; - } - uwsgigo_request(wsgi_req->async_environ, wsgi_req); - end: -diff --git plugins/jwsgi/jwsgi_plugin.c plugins/jwsgi/jwsgi_plugin.c -index 8cdac16..3b98632 100644 ---- plugins/jwsgi/jwsgi_plugin.c -+++ plugins/jwsgi/jwsgi_plugin.c -@@ -71,13 +71,12 @@ static int uwsgi_jwsgi_request(struct wsgi_request *wsgi_req) { - if (!hm) return -1; - - int i; -- for(i=0;ivar_cnt;i++) { -+ for(i=0;ivar_cnt;i+=2) { - char *hk = wsgi_req->hvec[i].iov_base; - uint16_t hk_l = wsgi_req->hvec[i].iov_len; - char *hv = wsgi_req->hvec[i+1].iov_base; - uint16_t hv_l = wsgi_req->hvec[i+1].iov_len; - if (uwsgi_jwsgi_add_request_item(hm, hk, hk_l, hv, hv_l)) goto end; -- i++; - } - - if (uwsgi_jwsgi_add_request_input(hm, "jwsgi.input", 11)) goto end; Property changes on: head/www/uwsgi/files/patch-2483e64.diff ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property