From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/modsecurity/
Date: Thu, 22 May 2025 15:59:17 +0000 (UTC) [thread overview]
Message-ID: <1747929529.10b7c0f58e44faf7bf70e2f16efe7baef68d74ba.sam@gentoo> (raw)
commit: 10b7c0f58e44faf7bf70e2f16efe7baef68d74ba
Author: Zurab Kvachadze <zurabid2016 <AT> gmail <DOT> com>
AuthorDate: Mon Apr 14 13:53:44 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 22 15:58:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b7c0f5
dev-libs/modsecurity: revbump 3.0.1{3,4}, drop libpcre dep, unbreak POSIX shells
The autotool-based build system uses a lot of Bash == comparison
operators, which obviously causes breakages on non-Bash POSIX-compliant
shells. This commit sets the CONFIG_SHELL environment variable for econf
and drops libpcre in favour for libpcre2.
Closes: https://bugs.gentoo.org/886539
Closes: https://bugs.gentoo.org/887135
Signed-off-by: Zurab Kvachadze <zurabid2016 <AT> gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41592
Closes: https://github.com/gentoo/gentoo/pull/41592
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/modsecurity/modsecurity-3.0.13-r1.ebuild | 71 +++++++++++++++++++++++
dev-libs/modsecurity/modsecurity-3.0.14-r1.ebuild | 71 +++++++++++++++++++++++
2 files changed, 142 insertions(+)
diff --git a/dev-libs/modsecurity/modsecurity-3.0.13-r1.ebuild b/dev-libs/modsecurity/modsecurity-3.0.13-r1.ebuild
new file mode 100644
index 000000000000..e26888ae15e4
--- /dev/null
+++ b/dev-libs/modsecurity/modsecurity-3.0.13-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} )
+
+inherit lua-single
+
+MY_P=${PN}-v${PV}
+
+DESCRIPTION="Application firewall and intrusion detection"
+HOMEPAGE="https://github.com/owasp-modsecurity/ModSecurity"
+SRC_URI="
+ https://github.com/owasp-modsecurity/ModSecurity/releases/download/v${PV}/${MY_P}.tar.gz
+"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Apache-2.0"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="doc fuzzyhash geoip geoip2 json lmdb lua"
+
+REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
+RDEPEND="
+ dev-libs/libpcre2:=
+ dev-libs/libxml2
+ net-misc/curl
+ fuzzyhash? ( app-crypt/ssdeep )
+ geoip? ( dev-libs/geoip )
+ geoip2? ( dev-libs/libmaxminddb )
+ json? ( dev-libs/yajl )
+ lmdb? ( dev-db/lmdb )
+ lua? ( ${LUA_DEPS} )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+ doc? ( app-text/doxygen[dot] )"
+
+DOCS=( AUTHORS CHANGES README.md modsecurity.conf-recommended unicode.mapping )
+
+pkg_setup() {
+ use lua && lua-single_pkg_setup
+}
+
+src_configure() {
+ local myconf=(
+ $(use_with fuzzyhash ssdeep)
+ $(use_with geoip )
+ $(use_with geoip2 maxmind)
+ $(use_with json yajl)
+ $(use_with lmdb)
+ $(use_with lua)
+ --with-pcre2
+ )
+
+ CONFIG_SHELL="${BROOT}/bin/bash" econf "${myconf[@]}"
+}
+
+src_compile() {
+ default
+
+ if use doc; then
+ cd doc && doxygen doxygen.cfg || die
+ fi
+}
+
+src_install() {
+ default
+ use doc && dodoc -r doc/html
+ find "${ED}" -name '*.la' -delete || die
+}
diff --git a/dev-libs/modsecurity/modsecurity-3.0.14-r1.ebuild b/dev-libs/modsecurity/modsecurity-3.0.14-r1.ebuild
new file mode 100644
index 000000000000..e26888ae15e4
--- /dev/null
+++ b/dev-libs/modsecurity/modsecurity-3.0.14-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..4} )
+
+inherit lua-single
+
+MY_P=${PN}-v${PV}
+
+DESCRIPTION="Application firewall and intrusion detection"
+HOMEPAGE="https://github.com/owasp-modsecurity/ModSecurity"
+SRC_URI="
+ https://github.com/owasp-modsecurity/ModSecurity/releases/download/v${PV}/${MY_P}.tar.gz
+"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Apache-2.0"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="doc fuzzyhash geoip geoip2 json lmdb lua"
+
+REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
+RDEPEND="
+ dev-libs/libpcre2:=
+ dev-libs/libxml2
+ net-misc/curl
+ fuzzyhash? ( app-crypt/ssdeep )
+ geoip? ( dev-libs/geoip )
+ geoip2? ( dev-libs/libmaxminddb )
+ json? ( dev-libs/yajl )
+ lmdb? ( dev-db/lmdb )
+ lua? ( ${LUA_DEPS} )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+ doc? ( app-text/doxygen[dot] )"
+
+DOCS=( AUTHORS CHANGES README.md modsecurity.conf-recommended unicode.mapping )
+
+pkg_setup() {
+ use lua && lua-single_pkg_setup
+}
+
+src_configure() {
+ local myconf=(
+ $(use_with fuzzyhash ssdeep)
+ $(use_with geoip )
+ $(use_with geoip2 maxmind)
+ $(use_with json yajl)
+ $(use_with lmdb)
+ $(use_with lua)
+ --with-pcre2
+ )
+
+ CONFIG_SHELL="${BROOT}/bin/bash" econf "${myconf[@]}"
+}
+
+src_compile() {
+ default
+
+ if use doc; then
+ cd doc && doxygen doxygen.cfg || die
+ fi
+}
+
+src_install() {
+ default
+ use doc && dodoc -r doc/html
+ find "${ED}" -name '*.la' -delete || die
+}
next reply other threads:[~2025-05-22 15:59 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-22 15:59 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-10 22:43 [gentoo-commits] repo/gentoo:master commit in: dev-libs/modsecurity/ Sam James
2025-03-10 17:42 Arthur Zamarin
2025-03-10 17:42 Arthur Zamarin
2025-03-10 2:54 Sam James
2025-03-10 2:54 Sam James
2024-11-29 22:01 Sam James
2024-10-21 12:42 Joonas Niilola
2024-10-21 12:42 Joonas Niilola
2024-10-21 12:42 Joonas Niilola
2024-02-06 5:18 Sam James
2024-02-06 5:18 Sam James
2024-02-06 5:04 Sam James
2024-02-06 5:04 Sam James
2024-02-06 3:26 Sam James
2024-01-11 14:06 Joonas Niilola
2024-01-05 5:24 Sam James
2023-09-05 10:01 Sam James
2023-09-05 10:01 Sam James
2023-09-05 10:01 Sam James
2023-09-05 10:01 Sam James
2023-09-01 17:19 Arthur Zamarin
2023-09-01 17:19 Arthur Zamarin
2023-06-23 20:28 Sam James
2023-06-23 20:16 Sam James
2023-06-23 20:03 Sam James
2023-06-23 20:03 Sam James
2023-04-26 4:03 Sam James
2022-12-02 17:19 John Helmert III
2022-12-02 3:38 Sam James
2022-12-02 3:34 Sam James
2022-12-02 3:23 Sam James
2022-12-02 3:23 Sam James
2022-11-10 16:15 Joonas Niilola
2022-09-10 6:43 Jakov Smolić
2022-09-09 7:36 Agostino Sarubbo
2022-09-09 7:36 Agostino Sarubbo
2022-09-09 7:34 Agostino Sarubbo
2022-07-27 8:11 Sam James
2022-07-20 17:01 Sam James
2022-07-19 21:38 Sam James
2022-07-19 20:20 Jakov Smolić
2022-07-19 17:21 Conrad Kostecki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1747929529.10b7c0f58e44faf7bf70e2f16efe7baef68d74ba.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox