diff --git a/www/nginx-module-form-input/Makefile b/www/nginx-module-form-input/Makefile index a4a89bd913b9..0b107f0713ec 100644 --- a/www/nginx-module-form-input/Makefile +++ b/www/nginx-module-form-input/Makefile @@ -1,36 +1,36 @@ PORTNAME= nginx-module-form-input DISTVERSIONPREFIX= v -DISTVERSION= 0.12 +DISTVERSION= 0.13.0 CATEGORIES= www MAINTAINER= joneum@FreeBSD.org COMMENT= Sources of the form_input module for the NGINX ports -WWW= https://github.com/calio/form-input-nginx-module +WWW= https://github.com/joneum/form-input-nginx-module LICENSE= BSD2CLAUSE -LICENSE_FILE= ${WRKSRC}/README.md +LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes -GH_ACCOUNT= calio +GH_ACCOUNT= joneum GH_PROJECT= form-input-nginx-module NO_ARCH= yes NO_BUILD= yes SUB_FILES= pkg-message _MODDIR= share/nginx/modules/${PORTNAME} MODULESDIR= ${PREFIX}/${_MODDIR} PLIST_FILES= ${_MODDIR}/config \ ${_MODDIR}/src/ddebug.h \ ${_MODDIR}/src/ngx_http_form_input_module.c do-install: @${MKDIR} ${STAGEDIR}${MODULESDIR}/src ${INSTALL_DATA} ${WRKSRC}/config ${STAGEDIR}${MODULESDIR} ${INSTALL_DATA} ${WRKSRC}/src/ddebug.h \ ${WRKSRC}/src/ngx_http_form_input_module.c \ ${STAGEDIR}${MODULESDIR}/src .include diff --git a/www/nginx-module-form-input/distinfo b/www/nginx-module-form-input/distinfo index 6948bc8a77f8..1efb8a6bec74 100644 --- a/www/nginx-module-form-input/distinfo +++ b/www/nginx-module-form-input/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1788898533 -SHA256 (calio-form-input-nginx-module-v0.12_GH0.tar.gz) = 5c1869d55897075adb3fdf840b21060dc54669a1f840a36d1539acc7e59dd106 -SIZE (calio-form-input-nginx-module-v0.12_GH0.tar.gz) = 11090 +TIMESTAMP = 1789318845 +SHA256 (joneum-form-input-nginx-module-v0.13.0_GH0.tar.gz) = 2fe2fbeaf3982a38367640799dde986dcc382f4a5ebe24e470e683e31a6a5b30 +SIZE (joneum-form-input-nginx-module-v0.13.0_GH0.tar.gz) = 26533 diff --git a/www/nginx-module-form-input/pkg-descr b/www/nginx-module-form-input/pkg-descr index 756f37c76960..eb040b10e3d8 100644 --- a/www/nginx-module-form-input/pkg-descr +++ b/www/nginx-module-form-input/pkg-descr @@ -1,6 +1,8 @@ -The form_input module reads HTTP POST and PUT request bodies encoded -as application/x-www-form-urlencoded and puts the parsed values into -nginx variables, using the ngx_devel_kit. +The form_input module reads the body of an HTTP POST or PUT request that +carries a form and puts the fields into nginx variables, using the +ngx_devel_kit. Bodies encoded as application/x-www-form-urlencoded are +read out of the box, multipart/form-data where the configuration asks +for it. This port only installs the module sources. The module itself is built by the nginx ports when their FORMINPUT option is enabled.