From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/modsecurity/
Date: Mon, 10 Mar 2025 02:54:28 +0000 (UTC) [thread overview]
Message-ID: <1741575132.69f0841a5cbc3e33bfafd14787129f4077918acc.sam@gentoo> (raw)
commit: 69f0841a5cbc3e33bfafd14787129f4077918acc
Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Fri Feb 28 14:50:23 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 10 02:52:12 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69f0841a
dev-libs/modsecurity: drop 3.0.12
Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40816
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/modsecurity/Manifest | 2 -
dev-libs/modsecurity/modsecurity-3.0.12.ebuild | 82 --------------------------
2 files changed, 84 deletions(-)
diff --git a/dev-libs/modsecurity/Manifest b/dev-libs/modsecurity/Manifest
index 6d83ab6a6158..25f4d19a198d 100644
--- a/dev-libs/modsecurity/Manifest
+++ b/dev-libs/modsecurity/Manifest
@@ -1,4 +1,2 @@
-DIST modsecurity-slibtool.patch 6915 BLAKE2B 9d067a4285cf56cbe9c824601724ee9caaf43e1bce653e51c6f66165a96e034125d93c4c998ee27df4d753c5e176b21d1c524dd72710428aaff1e528bddf48dc SHA512 a4c413f376c19bd028f2824f837cfdd5dffa51fcfeb1bcd911ca36a2876372d47f5e225b22cf9416d45cfc65e9e476501917a2b5c6d785f650c918f81164a8be
-DIST modsecurity-v3.0.12.tar.gz 3504045 BLAKE2B 6ee7f56384452bef090b26b567cc229f690fafbff4cb704b87bc241f1ec827eafc5de8b236936c4e7d58ed2e5c3ed30472ff24b8d18744d3f1bdc346c41c5940 SHA512 34c87bd12e76d102e95b626113c4b0c9e971be196932e76f0703c9c4416925baf99ccf5f46b88e317dc284f12e00ec099d6842574cb785086fa43950487919b3
DIST modsecurity-v3.0.13.tar.gz 9677566 BLAKE2B 303bae03241192987d7376c978181bbfd85816c0dd4daade86fee42721e38b99e681c36b1ecbd685e21d7a0bf83bdd5000787df115189194212782d330c67312 SHA512 1e683f7be2454126dcbd689d990259114a12fa56dd82b5283809282b6a12001550b7527e8bde7a0864ea19600094c06be09497ad7be7977fa419efcf9359885a
DIST modsecurity-v3.0.14.tar.gz 9755566 BLAKE2B 6562ea68ec5901d0ae166a2cc97294e39bc97a44426b9b184b2d07b9d1efadf9dd56e7fc1cdb02a7358627f29c79716aa56da4a69891e8c3aa770f97bb034d6b SHA512 67d27d96be196d61eb75b039fbbbd5dc7ffdd29722cf8ff595123674e74a593b2e437ee6d3f00cd029d0c292989fcec1be8eae72f05c0dec055d7ca4bf758c1b
diff --git a/dev-libs/modsecurity/modsecurity-3.0.12.ebuild b/dev-libs/modsecurity/modsecurity-3.0.12.ebuild
deleted file mode 100644
index 88da9c4f2ae1..000000000000
--- a/dev-libs/modsecurity/modsecurity-3.0.12.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} )
-
-inherit autotools lua-single
-
-MY_P=${PN}-v${PV}
-
-DESCRIPTION="Application firewall and intrusion detection"
-HOMEPAGE="https://github.com/SpiderLabs/ModSecurity"
-SRC_URI="
- https://github.com/SpiderLabs/ModSecurity/releases/download/v${PV}/${MY_P}.tar.gz
- https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-slibtool.patch
-"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
-IUSE="doc fuzzyhash geoip geoip2 json lmdb lua pcre2"
-
-REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
-RDEPEND="dev-libs/libpcre:=
- 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} )
- pcre2? ( dev-libs/libpcre2:= )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig
- doc? ( app-text/doxygen[dot] )"
-
-DOCS=( AUTHORS CHANGES README.md modsecurity.conf-recommended unicode.mapping )
-
-PATCHES=(
- # https://github.com/SpiderLabs/ModSecurity/pull/2980
- "${DISTDIR}"/${PN}-slibtool.patch # 913484
-)
-
-pkg_setup() {
- use lua && lua-single_pkg_setup
-}
-
-src_prepare() {
- default
- eautoreconf # for the slibtool patch
-}
-
-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)
- $(use_with pcre2)
- )
-
- 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-03-10 2:54 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-10 2:54 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-10 2:54 [gentoo-commits] repo/gentoo:master commit in: dev-libs/modsecurity/ 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=1741575132.69f0841a5cbc3e33bfafd14787129f4077918acc.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