From owner-svn-ports-all@freebsd.org Wed Dec 12 16:03:32 2018 Return-Path: Delivered-To: svn-ports-all@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 2F7AC1313911; Wed, 12 Dec 2018 16:03:32 +0000 (UTC) (envelope-from des@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 C7A8C6BA9F; Wed, 12 Dec 2018 16:03:31 +0000 (UTC) (envelope-from des@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 BBEE0A445; Wed, 12 Dec 2018 16:03:31 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBCG3Vpo017565; Wed, 12 Dec 2018 16:03:31 GMT (envelope-from des@FreeBSD.org) Received: (from des@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBCG3V1h017561; Wed, 12 Dec 2018 16:03:31 GMT (envelope-from des@FreeBSD.org) Message-Id: <201812121603.wBCG3V1h017561@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: des set sender to des@FreeBSD.org using -f From: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= Date: Wed, 12 Dec 2018 16:03:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487301 - head/security/modsecurity3 X-SVN-Group: ports-head X-SVN-Commit-Author: des X-SVN-Commit-Paths: head/security/modsecurity3 X-SVN-Commit-Revision: 487301 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C7A8C6BA9F X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-0.64 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.64)[-0.643,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Wed, 12 Dec 2018 16:03:32 -0000 Author: des Date: Wed Dec 12 16:03:30 2018 New Revision: 487301 URL: https://svnweb.freebsd.org/changeset/ports/487301 Log: Upgrade to 3.0.3. PR: 233566 Submitted by: Marius Halden (maintainer) Differential Revision: https://reviews.freebsd.org/D18357 Modified: head/security/modsecurity3/Makefile head/security/modsecurity3/distinfo head/security/modsecurity3/pkg-plist Modified: head/security/modsecurity3/Makefile ============================================================================== --- head/security/modsecurity3/Makefile Wed Dec 12 15:32:57 2018 (r487300) +++ head/security/modsecurity3/Makefile Wed Dec 12 16:03:30 2018 (r487301) @@ -2,39 +2,37 @@ PORTNAME= modsecurity DISTVERSIONPREFIX= v -DISTVERSION= 3.0.2 -PORTREVISION= 3 +DISTVERSION= 3.0.3 +PORTREVISION= 0 CATEGORIES= security www +MASTER_SITES= https://github.com/SpiderLabs/ModSecurity/releases/download/v${PORTVERSION}/ PKGNAMESUFFIX= 3 MAINTAINER= marius.halden@modirum.com COMMENT= Intrusion detection and prevention engine LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl \ libpcre.so:devel/pcre \ libyajl.so:devel/yajl \ libGeoIP.so:net/GeoIP -USES= autoreconf compiler:c++11-lang gmake gnome libtool pkgconfig:build +USES= compiler:c++11-lang gmake gnome libtool pkgconfig:build USE_GNOME= libxml2 # GCC because of https://github.com/SpiderLabs/ModSecurity/issues/1411 USE_GCC= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GITHUB= yes -GH_ACCOUNT= SpiderLabs -GH_PROJECT= ModSecurity +CONFIGURE_ARGS= --without-lmdb --without-ssdeep --without-lua -GH_TUPLE+= SpiderLabs:secrules-language-tests:add8f63:secrules_language_tests/test/test-cases/secrules-language-tests -GH_TUPLE+= client9:libinjection:da027ab:libinjection/others/libinjection -GH_TUPLE+= SpiderLabs:ModSecurity-Python-bindings:bc625d5:modsecurity_python_bindings/bindings/python - ETCDIR= ${PREFIX}/etc/modsecurity CONFLICTS_INSTALL= ap??-mod_security mod_security3 + +INSTALL_TARGET= install-strip post-install: @${MKDIR} ${STAGEDIR}${ETCDIR} Modified: head/security/modsecurity3/distinfo ============================================================================== --- head/security/modsecurity3/distinfo Wed Dec 12 15:32:57 2018 (r487300) +++ head/security/modsecurity3/distinfo Wed Dec 12 16:03:30 2018 (r487301) @@ -1,9 +1,3 @@ -TIMESTAMP = 1524855265 -SHA256 (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = a27c48a410870627c5d07aa8822b6459afff925b81b649905c7383bdee8fc1ce -SIZE (SpiderLabs-ModSecurity-v3.0.2_GH0.tar.gz) = 550800 -SHA256 (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 18894cf90d6a1ade441053b2aa89fff495a50eec0c632d346cc223c692973cba -SIZE (SpiderLabs-secrules-language-tests-add8f63_GH0.tar.gz) = 58901 -SHA256 (client9-libinjection-da027ab_GH0.tar.gz) = 7eaa6306d13427e002f976d4ce1bf3aaa3f94e7dd4ada02a69354fa482e6afca -SIZE (client9-libinjection-da027ab_GH0.tar.gz) = 1656633 -SHA256 (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 7b10d90ec76985ddbdc4ca15c0675254cb6d10af6eaba620d1785d1b24b017eb -SIZE (SpiderLabs-ModSecurity-Python-bindings-bc625d5_GH0.tar.gz) = 2647 +TIMESTAMP = 1543329304 +SHA256 (modsecurity-v3.0.3.tar.gz) = 8aa1300105d8cc23315a5e54421192bc617a66246ad004bd89e67c232208d0f4 +SIZE (modsecurity-v3.0.3.tar.gz) = 3246882 Modified: head/security/modsecurity3/pkg-plist ============================================================================== --- head/security/modsecurity3/pkg-plist Wed Dec 12 15:32:57 2018 (r487300) +++ head/security/modsecurity3/pkg-plist Wed Dec 12 16:03:30 2018 (r487301) @@ -20,5 +20,6 @@ include/modsecurity/variable_value.h lib/libmodsecurity.a lib/libmodsecurity.so lib/libmodsecurity.so.3 -lib/libmodsecurity.so.3.0.2 +lib/libmodsecurity.so.3.0.3 +libdata/pkgconfig/modsecurity.pc @sample %%ETCDIR%%/modsecurity.conf.sample