diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-07-13 12:26:41 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-07-13 12:26:41 +0100 |
commit | 482a48c0e1675b1e92663b8b5222bb7261aa7956 (patch) | |
tree | b81e02db1810214fc690a762e3a9c687d0f0c5ab /www-apache/modsec-flameeyes | |
parent | 37bccfe5e76c5740c4ef5ba1179e9488d8404075 (diff) |
gentoo auto-resync : 13:07:2024 - 12:26:41
Diffstat (limited to 'www-apache/modsec-flameeyes')
-rw-r--r-- | www-apache/modsec-flameeyes/Manifest | 3 | ||||
-rw-r--r-- | www-apache/modsec-flameeyes/metadata.xml | 8 | ||||
-rw-r--r-- | www-apache/modsec-flameeyes/modsec-flameeyes-20130216.ebuild | 55 |
3 files changed, 0 insertions, 66 deletions
diff --git a/www-apache/modsec-flameeyes/Manifest b/www-apache/modsec-flameeyes/Manifest deleted file mode 100644 index f8833d1e4460..000000000000 --- a/www-apache/modsec-flameeyes/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST modsec-flameeyes-20130216.tar.gz 18716 BLAKE2B 1466cd1bd943106609e80fec8251fe85f3ca5fc8e21fcaa3e0e264776b4aff21ef671fa75fed1c19aee76441e02211b88efdcdfc17bea21f3036526272eefe7e SHA512 196a8176da09340c5496a3056deb473c69721fdd6c891b6bec6dd5459063dbd61b00eb9559ba0e88413678633cd90496cb0e1b2828442635d31d68dc949013db -EBUILD modsec-flameeyes-20130216.ebuild 1282 BLAKE2B d32be195af654e59863564c4383cb214c98648a731e255ef00b6902bb17f4e0401fcce232e0caccd6857dd449963bd7718a529beba3d7d4272df3102d8f5a8ec SHA512 caa3e41e0dfb0065fdf9c5f04f9565a9735bfa7d79cb772cb214d9a8e5013c3d4e3f4a317f068edad7dc555ab4e9f81bd882e168ecd77c93874fccf1ce5a34f2 -MISC metadata.xml 262 BLAKE2B d3d94dbb77d97807f87d471a045ae52e5ce3425970e5d202990088f4d36151b6bd25d0618616aecde8db169c27809939feb421b6e23073f7868d453f8d623493 SHA512 c99e15c81d76ddfd4646bc41da74bcb4e4e6e1fae12fc076709d42189af867d9a5ceadc8e29982e6ad65ff148bf5ecf9812176cf0c9037f176c8fe42c135af84 diff --git a/www-apache/modsec-flameeyes/metadata.xml b/www-apache/modsec-flameeyes/metadata.xml deleted file mode 100644 index 87c5dce09990..000000000000 --- a/www-apache/modsec-flameeyes/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!--maintainer-needed--> - <upstream> - <remote-id type="github">Flameeyes/modsec-flameeyes</remote-id> - </upstream> -</pkgmetadata> diff --git a/www-apache/modsec-flameeyes/modsec-flameeyes-20130216.ebuild b/www-apache/modsec-flameeyes/modsec-flameeyes-20130216.ebuild deleted file mode 100644 index d52b04714b54..000000000000 --- a/www-apache/modsec-flameeyes/modsec-flameeyes-20130216.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit readme.gentoo-r1 - -DESCRIPTION="Flameeyes's Ruleset for ModSecurity" -HOMEPAGE="https://github.com/Flameeyes/modsec-flameeyes" -if [[ ${PV} == "99999999" ]]; then - EGIT_REPO_URI="https://github.com/Flameeyes/modsec-flameeyes.git" - inherit git-r3 -else - KEYWORDS="~amd64" - SRC_URI="https://github.com/Flameeyes/modsec-flameeyes/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi - -LICENSE="CC-BY-SA-3.0" -SLOT="0" - -RDEPEND=">=www-apache/mod_security-2.5.1" -DEPEND="" - -RULESDIR=/etc/modsecurity/flameeyes - -DOC_CONTENTS="To enable the ruleset, define MODSEC_FLAMEEYES in -/etc/conf.d/apache2. - -If you do not use www-apache/modsecurity-crs you want also to uncomment -the init configuration file in /etc/apache2/modules/81_${PN}.conf." - -src_install() { - insinto "${RULESDIR}" - doins -r rules optional - - dodoc README.md - - cat - > "${T}/81_${PN}.conf" <<EOF -<IfDefine MODSEC_FLAMEEYES> - -# Uncomment this if you don't use the CRS -# Include /etc/modsecurity/flameeyes/optional/flameeyes_init.conf - -Include /etc/modsecurity/flameeyes/rules/*.conf - -# -*- apache -*- -# vim: ts=4 filetype=apache - -EOF - - insinto /etc/apache2/modules.d/ - doins "${T}/81_${PN}.conf" - - readme.gentoo_create_doc -} |