summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomáš Mózes <hydrapolic@gmail.com>2023-11-10 15:48:42 +0000
committerJoonas Niilola <juippis@gentoo.org>2024-01-11 16:05:46 +0200
commit109c8703e5aea74b079a2e0d85484aca2b78ee5f (patch)
tree283e7589bc98e9b0cc774a71fced40df6f58afb5 /www-apache
parentwww-apache/mod_security: drop vulnerable (diff)
downloadgentoo-109c8703e5aea74b079a2e0d85484aca2b78ee5f.tar.gz
gentoo-109c8703e5aea74b079a2e0d85484aca2b78ee5f.tar.bz2
gentoo-109c8703e5aea74b079a2e0d85484aca2b78ee5f.zip
www-apache/modsecurity-crs: drop vulnerable
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/modsecurity-crs/Manifest1
-rw-r--r--www-apache/modsecurity-crs/modsecurity-crs-3.3.4.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/www-apache/modsecurity-crs/Manifest b/www-apache/modsecurity-crs/Manifest
index 5f0b906c869b..a078ff818686 100644
--- a/www-apache/modsecurity-crs/Manifest
+++ b/www-apache/modsecurity-crs/Manifest
@@ -1,2 +1 @@
-DIST modsecurity-crs-3.3.4.tar.gz 301112 BLAKE2B 0df4b70c5ecc1852fe3cde74783494636c530cc8a2b8ddc0269da25703521532ee3ed6ba1e572b854fe6912f31d2ed1fe4c917b13dc22b37763dbe73ef8c7b72 SHA512 a8b8b210054a9a4e3f8e45a5a9428110bb4075e40430e3fc16f4717e363af141265b1fb5c173ff96abeff0ac61ef5eef667a4b9cb703f8edc15e48deb3342827
DIST modsecurity-crs-3.3.5.tar.gz 299458 BLAKE2B b8617de77cf5168c7b95fab46eae45e2101b4ec7a537d8d471b9b1b27a856b1d370a9de43ee262c07dc9371b3ff79cd86b7328b171fde003da9110897206e91e SHA512 001f9afe25f479dd988aaec1a4a2c0197b2d27e00d2cd10b70892e4889b399259cd0655f42a96965ae655855abdb7f9d8295c225ae17bf1e47361b70232633e5
diff --git a/www-apache/modsecurity-crs/modsecurity-crs-3.3.4.ebuild b/www-apache/modsecurity-crs/modsecurity-crs-3.3.4.ebuild
deleted file mode 100644
index 867ab1147f42..000000000000
--- a/www-apache/modsecurity-crs/modsecurity-crs-3.3.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature
-
-DESCRIPTION="OWASP ModSecurity Core Rule Set"
-HOMEPAGE="https://coreruleset.org/"
-SRC_URI="https://github.com/coreruleset/coreruleset/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/coreruleset-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+apache2"
-
-RDEPEND="apache2? ( >=www-apache/mod_security-2.9.6 )"
-
-DOCS=( CHANGES CONTRIBUTORS.md crs-setup.conf.example KNOWN_BUGS README.md )
-
-src_install() {
- insinto "/usr/share/${PN}"
- doins -r rules
-
- einstalldocs
-
- if use apache2; then
- # I don't think it's worth pulling in apache-module.eclass just for
- # this path...
- insinto /etc/apache2/modules.d
- doins "${FILESDIR}/80_mod_security-crs.conf"
- fi
-}
-
-pkg_postinst() {
- if use apache2; then
- einfo "The CRS configuration file has been installed to:"
- einfo " ${ROOT}/etc/apache2/modules.d/80_mod_security-crs.conf"
- fi
-
- optfeature "apache-less installations, e.g. nginx" dev-libs/modsecurity
-}