From owner-svn-ports-head@freebsd.org Thu Dec 27 01:18:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1ECDD1362D00; Thu, 27 Dec 2018 01:18:39 +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 B7C2376737; Thu, 27 Dec 2018 01:18:38 +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 AAB124050; Thu, 27 Dec 2018 01:18:38 +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 wBR1IcLc010528; Thu, 27 Dec 2018 01:18:38 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBR1IbYb010524; Thu, 27 Dec 2018 01:18:37 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201812270118.wBR1IbYb010524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Thu, 27 Dec 2018 01:18:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488501 - in head/www/nginx-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: in head/www/nginx-devel: . files X-SVN-Commit-Revision: 488501 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B7C2376737 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Dec 2018 01:18:39 -0000 Author: osa Date: Thu Dec 27 01:18:37 2018 New Revision: 488501 URL: https://svnweb.freebsd.org/changeset/ports/488501 Log: Update third-party modsecurity module from 2.9.2 to 2.9.3. Bump PORTREVISION. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/Makefile.extmod head/www/nginx-devel/distinfo head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Thu Dec 27 00:57:05 2018 (r488500) +++ head/www/nginx-devel/Makefile Thu Dec 27 01:18:37 2018 (r488501) @@ -3,6 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.15.8 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ \ LOCAL/osa Modified: head/www/nginx-devel/Makefile.extmod ============================================================================== --- head/www/nginx-devel/Makefile.extmod Thu Dec 27 00:57:05 2018 (r488500) +++ head/www/nginx-devel/Makefile.extmod Thu Dec 27 01:18:37 2018 (r488501) @@ -205,11 +205,12 @@ MODSECURITY_LIB_DEPENDS= libapr-1.so:devel/apr1 \ libpcre.so:devel/pcre \ libyajl.so:devel/yajl MODSECURITY_USE= GNOME=libxml2 +MODSECURITY_VERSION= 2.9.3 MODSECURITY_USES= apache:2.2+ pkgconfig shebangfix -MODSECURITY_MASTER_SITES= http://www.modsecurity.org/tarball/2.9.2/:modsecurity -MODSECURITY_DISTFILES= modsecurity-2.9.2.tar.gz:modsecurity +MODSECURITY_MASTER_SITES= http://www.modsecurity.org/tarball/${MODSECURITY_VERSION}/:modsecurity +MODSECURITY_DISTFILES= modsecurity-${MODSECURITY_VERSION}.tar.gz:modsecurity MODSECURITY_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-nginx-modsecurity-configure -MODSECURITY_VARS= WRKSRC_modsecurity=${WRKDIR}/modsecurity-2.9.2 +MODSECURITY_VARS= WRKSRC_modsecurity=${WRKDIR}/modsecurity-${MODSECURITY_VERSION} MODSECURITY3_LIB_DEPENDS= libmodsecurity.so:security/modsecurity3 MODSECURITY3_GH_TUPLE= SpiderLabs:ModSecurity-nginx:ecb255a:modsec Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Thu Dec 27 00:57:05 2018 (r488500) +++ head/www/nginx-devel/distinfo Thu Dec 27 01:18:37 2018 (r488501) @@ -1,4 +1,4 @@ -TIMESTAMP = 1545769559 +TIMESTAMP = 1545825792 SHA256 (nginx-1.15.8.tar.gz) = a8bdafbca87eb99813ae4fcac1ad0875bf725ce19eb265d28268c309b2b40787 SIZE (nginx-1.15.8.tar.gz) = 1027862 SHA256 (ngx_cache_purge-2.3.tar.gz) = 279e0d8a46d3b1521fd43b3f78bc1c08b263899142a7cc5058c1c0361a92c89c @@ -11,8 +11,8 @@ SHA256 (ngx_http_redis-0.3.9.tar.gz) = 21f87540f0a44b2 SIZE (ngx_http_redis-0.3.9.tar.gz) = 13051 SHA256 (ngx_http_response-0.3.tar.gz) = 0835584029f053051c624adbe33a826ab0205c9d85a02af6019e6b57607e9045 SIZE (ngx_http_response-0.3.tar.gz) = 2244 -SHA256 (modsecurity-2.9.2.tar.gz) = 41a8f73476ec891f3a9e8736b98b64ea5c2105f1ce15ea57a1f05b4bf2ffaeb5 -SIZE (modsecurity-2.9.2.tar.gz) = 4298993 +SHA256 (modsecurity-2.9.3.tar.gz) = 4192019d169d3f1dd82cc4714db6986df54c6ceb4ee1c8f253de78d1a6b62118 +SIZE (modsecurity-2.9.3.tar.gz) = 4307670 SHA256 (passenger-6.0.0.tar.gz) = 3f826e55065bb69ff5cc945b7b8ab5eb69f957e108053d15401c2ea059321b83 SIZE (passenger-6.0.0.tar.gz) = 7202705 SHA256 (ngx_slowfs_cache-1.10.tar.gz) = 1e81453942e5b0877de1f1f06c56ae82918ea9818255cb935bcb673c95a758a1 Modified: head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure ============================================================================== --- head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Thu Dec 27 00:57:05 2018 (r488500) +++ head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Thu Dec 27 01:18:37 2018 (r488501) @@ -1,5 +1,5 @@ ---- ../modsecurity-2.9.2/configure.orig 2016-02-07 12:45:53.346098000 -0500 -+++ ../modsecurity-2.9.2/configure 2016-02-07 12:47:50.081558000 -0500 +--- ../modsecurity-2.9.3/configure.orig 2016-02-07 12:45:53.346098000 -0500 ++++ ../modsecurity-2.9.3/configure 2016-02-07 12:47:50.081558000 -0500 @@ -14949,7 +14949,7 @@ LUA_LDADD="" LUA_LDFLAGS=""