diff options
author | 2025-01-03 12:50:54 -0500 | |
---|---|---|
committer | 2025-01-03 12:52:38 -0500 | |
commit | cde68e44baf736333711df335b096774a1a69095 (patch) | |
tree | 6a46aa4ba9c35f25f28ad88bc9ceb3aa58b2b7aa /www-apache | |
parent | www-apache/mod_qos: add 11.76 (diff) | |
download | gentoo-cde68e44baf736333711df335b096774a1a69095.tar.gz gentoo-cde68e44baf736333711df335b096774a1a69095.tar.bz2 gentoo-cde68e44baf736333711df335b096774a1a69095.zip |
www-apache/mod_qos: drop 11.75
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_qos/Manifest | 1 | ||||
-rw-r--r-- | www-apache/mod_qos/files/mod_qos-11.74-fix-incompatible-pointer-to-integer-conversion.diff | 12 | ||||
-rw-r--r-- | www-apache/mod_qos/mod_qos-11.75.ebuild | 66 |
3 files changed, 0 insertions, 79 deletions
diff --git a/www-apache/mod_qos/Manifest b/www-apache/mod_qos/Manifest index 79b46ed4d566..4c6d0d78c973 100644 --- a/www-apache/mod_qos/Manifest +++ b/www-apache/mod_qos/Manifest @@ -1,2 +1 @@ -DIST mod_qos-11.75.tar.gz 1289194 BLAKE2B b0353ac443fa7067e57ee4c4cd4b4804f58b163280d914509d4e6b68020e6791b6dc264ae3c017670efe62331355c88b95b51b630c1f42a817c780f1d0346d4b SHA512 ebb73196c94c6fa5874c179112b8dcb7283f961a04389e2c2a09191653c5112901ccf8d07cc6b90868c0233b06f49ce1ea608e0c5332351ddb29259bf342fd80 DIST mod_qos-11.76.tar.gz 1233631 BLAKE2B 0747fa68d2185a8b84cffabbbe981af536b04b8af66ed93474a8bf844a87b3565626a42d7b7cca6839183772950283f864c77e3c5754cb528deae3b16d21f8f8 SHA512 8a1a0abc041d8488fd6a1513b8a15c18d056d2c8b6173dfca4331caa1a3798384c9114e481661639722b9e8ebe12d741948ab8fb99fd088b0eb48fb5657fac73 diff --git a/www-apache/mod_qos/files/mod_qos-11.74-fix-incompatible-pointer-to-integer-conversion.diff b/www-apache/mod_qos/files/mod_qos-11.74-fix-incompatible-pointer-to-integer-conversion.diff deleted file mode 100644 index 51971667ee59..000000000000 --- a/www-apache/mod_qos/files/mod_qos-11.74-fix-incompatible-pointer-to-integer-conversion.diff +++ /dev/null @@ -1,12 +0,0 @@ -Bug: https://bugs.gentoo.org/898860 ---- a/tools/src/qsfilter2.c -+++ b/tools/src/qsfilter2.c -@@ -1800,7 +1800,7 @@ int main(int argc, const char * const argv[]) { - printf("# --------------------------------------------------------\n"); - - { -- STACK_OF(qs_rule_t) *st = sk_new(STACK_qs_cmp); -+ STACK_OF(qs_rule_t) *st = sk_new((qs_rule_t *)STACK_qs_cmp); - qs_rule_t *r; - int j = 1; - entry = (apr_table_entry_t *)apr_table_elts(rules)->elts; diff --git a/www-apache/mod_qos/mod_qos-11.75.ebuild b/www-apache/mod_qos/mod_qos-11.75.ebuild deleted file mode 100644 index 191594b4fb1e..000000000000 --- a/www-apache/mod_qos/mod_qos-11.75.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools apache-module - -DESCRIPTION="A QOS module for the apache webserver" -HOMEPAGE="http://mod-qos.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/mod-qos/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-libs/libpcre2 - dev-libs/openssl:0= - media-libs/libpng:0= - sys-libs/zlib:0= -" -DEPEND="${RDEPEND}" - -APXS2_S="${S}/apache2" -APACHE2_MOD_CONF="10_${PN}" -APACHE2_MOD_DEFINE="QOS" -DOCFILES="${S}/doc/*.txt ${S}/README.TXT" - -need_apache2 - -PATCHES=( - "${FILESDIR}"/${PN}-11.74-fix-incompatible-pointer-to-integer-conversion.diff -) - -pkg_setup() { - _init_apache2 - _init_apache2_late -} -src_prepare() { - default - - pushd "${S}"/tools &>/dev/null || die - eautoreconf - popd &>/dev/null || die -} - -src_configure() { - pushd "${S}"/tools &>/dev/null || die - econf - popd &>/dev/null || die -} - -src_compile() { - apache-module_src_compile - emake -C "${S}"/tools -} - -src_install() { - einfo "Installing Apache module ..." - pushd "${S}"/tools &>/dev/null || die - apache-module_src_install - popd &>/dev/null || die - - einfo "Installing module utilities ..." - emake -C "${S}"/tools install DESTDIR="${D}" -} |