From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A627E158086 for ; Sat, 27 Nov 2021 13:35:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDCD3E0867; Sat, 27 Nov 2021 13:35:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36D66E0867 for ; Sat, 27 Nov 2021 13:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B8B5342E7D for ; Sat, 27 Nov 2021 13:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F10A1DC for ; Sat, 27 Nov 2021 13:34:57 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1638020077.c5e3c634012fada5ec84837b0dcb8f3cb7798cd7.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_bw/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_bw/mod_bw-0.9.2-r2.ebuild X-VCS-Directories: www-apache/mod_bw/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: c5e3c634012fada5ec84837b0dcb8f3cb7798cd7 X-VCS-Branch: master Date: Sat, 27 Nov 2021 13:34:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a6b3f9f-ce09-4142-a52a-cd5e9342f9e0 X-Archives-Hash: c545a8232a6e1cbc6e08b4b646899279 commit: c5e3c634012fada5ec84837b0dcb8f3cb7798cd7 Author: Marek Szuba gentoo org> AuthorDate: Sat Nov 27 13:12:29 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Nov 27 13:34:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5e3c634 www-apache/mod_bw: update EAPI 5 -> 7 Signed-off-by: Marek Szuba gentoo.org> www-apache/mod_bw/mod_bw-0.9.2-r2.ebuild | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/www-apache/mod_bw/mod_bw-0.9.2-r2.ebuild b/www-apache/mod_bw/mod_bw-0.9.2-r2.ebuild new file mode 100644 index 000000000000..ff0a685229cf --- /dev/null +++ b/www-apache/mod_bw/mod_bw-0.9.2-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit apache-module depend.apache + +MY_PV=$(ver_rs 2 '') +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Bandwidth Management Module for Apache2" +HOMEPAGE="http://wp.ivn.cl/apache-bandwidth-mod/" +SRC_URI="http://legacy.ivn.cl/files/source/${MY_P}.tgz" + +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="Apache-2.0" +SLOT="0" + +BDEPEND="sys-devel/libtool" + +PATCHES=( + "${FILESDIR}"/${PN}-0.9.2-apache24.patch +) + +APACHE2_MOD_CONF="11_${PN}" +APACHE2_MOD_DEFINE="BW" + +need_apache2 + +S="${WORKDIR}" + +# Work around Bug #616612 +pkg_setup() { + _init_apache2 + _init_apache2_late +}