From owner-svn-ports-all@freebsd.org Thu Mar 12 20:37:11 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D89A526AB41; Thu, 12 Mar 2020 20:37:11 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48dgc74l7Jz47hy; Thu, 12 Mar 2020 20:37:11 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91AA82ADE7; Thu, 12 Mar 2020 20:37:11 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02CKbBTb072324; Thu, 12 Mar 2020 20:37:11 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02CKbBSR072323; Thu, 12 Mar 2020 20:37:11 GMT (envelope-from osa@FreeBSD.org) Message-Id: <202003122037.02CKbBSR072323@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Thu, 12 Mar 2020 20:37:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528319 - head/www/unit X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: head/www/unit X-SVN-Commit-Revision: 528319 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2020 20:37:11 -0000 Author: osa Date: Thu Mar 12 20:37:10 2020 New Revision: 528319 URL: https://svnweb.freebsd.org/changeset/ports/528319 Log: Update from 1.15.0 to 1.16.0. Sort knobs, configure arguments, and sub list. This release improves the functionality related to proxying and static media asset handling, please visit http://mailman.nginx.org/pipermail/unit/2020-March/000195.html to get more details. *) Feature: basic load-balancing support with round-robin. *) Feature: a "fallback" option that performs an alternative action if a request can't be served from the "share" directory. *) Feature: reduced memory consumption by dumping large request bodies to disk. *) Feature: stripping UTF-8 BOM and JavaScript-style comments from uploaded JSON. *) Bugfix: negative address matching in router might work improperly in combination with non-negative patterns. *) Bugfix: Java Spring applications failed to run; the bug had appeared in 1.10.0. *) Bugfix: PHP 7.4 was broken if it was built with thread safety enabled. *) Bugfix: compatibility issues with some Python applications. Modified: head/www/unit/Makefile head/www/unit/distinfo Modified: head/www/unit/Makefile ============================================================================== --- head/www/unit/Makefile Thu Mar 12 19:39:24 2020 (r528318) +++ head/www/unit/Makefile Thu Mar 12 20:37:10 2020 (r528319) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= unit -PORTVERSION= 1.15.0 -PORTREVISION= 1 +PORTVERSION= 1.16.0 CATEGORIES= www MASTER_SITES= https://unit.nginx.org/download/ @@ -36,27 +35,29 @@ UNIXSOCK_DESC= Enable unix sockets HAS_CONFIGURE= yes UNIT_VARDIR?= /var -UNIT_RUNDIR?= ${UNIT_VARDIR}/run/unit UNIT_LOGDIR?= ${UNIT_VARDIR}/log/${PORTNAME} UNIT_LOGFILE?= ${UNIT_LOGDIR}/${PORTNAME}.log UNIT_PIDFILE?= ${UNIT_RUNDIR}/${PORTNAME}.pid +UNIT_RUNDIR?= ${UNIT_VARDIR}/run/unit UNIT_SOCK?= ${UNIT_RUNDIR}/control.unit.sock +UNIT_TMPDIR?= ${UNIT_VARDIR}/tmp/unit CONFIGURE_ARGS= --prefix=${PREFIX} \ - --modules=libexec/unit/modules \ - --state=libexec/unit \ + --ld-opt="-L${LOCALBASE}/lib" \ --log=${UNIT_LOGFILE} \ + --modules=libexec/unit/modules \ --pid=${UNIT_PIDFILE} \ - --ld-opt="-L${LOCALBASE}/lib" + --state=libexec/unit \ + --tmp=${UNIT_TMPDIR} PLIST_FILES?= sbin/unitd PLIST_DIRS?= libexec/unit/modules \ libexec/unit USE_RC_SUBR?= unitd -SUB_LIST= UNIT_PIDFILE=${UNIT_PIDFILE} \ - UNIT_SOCK=${UNIT_SOCK} \ - PREFIX=${PREFIX} +SUB_LIST= PREFIX=${PREFIX} \ + UNIT_PIDFILE=${UNIT_PIDFILE} \ + UNIT_SOCK=${UNIT_SOCK} .if ${PORT_OPTIONS:MDEBUG} CONFIGURE_ARGS+=--debug @@ -97,8 +98,10 @@ post-build-DEVKIT-on: post-install: ${MKDIR} ${STAGEDIR}${UNIT_LOGDIR} ${MKDIR} ${STAGEDIR}${UNIT_RUNDIR} + ${MKDIR} ${STAGEDIR}${UNIT_TMPDIR} ${ECHO_CMD} @dir ${UNIT_LOGDIR} >> ${TMPPLIST} ${ECHO_CMD} @dir ${UNIT_RUNDIR} >> ${TMPPLIST} + ${ECHO_CMD} @dir ${UNIT_TMPDIR} >> ${TMPPLIST} ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unit/modules post-install-DEVKIT-on: Modified: head/www/unit/distinfo ============================================================================== --- head/www/unit/distinfo Thu Mar 12 19:39:24 2020 (r528318) +++ head/www/unit/distinfo Thu Mar 12 20:37:10 2020 (r528319) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581010116 -SHA256 (unit-1.15.0.tar.gz) = f8b231d02865b5695825a2a77ecbfd0cff33c0954c0d351d2d773d7e5f6237dd -SIZE (unit-1.15.0.tar.gz) = 712284 +TIMESTAMP = 1584043767 +SHA256 (unit-1.16.0.tar.gz) = 6a5954c16a9f940b4ef6e40331e854f5ae7b954838991fef1db4148b8b97d563 +SIZE (unit-1.16.0.tar.gz) = 722942