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 57789158086 for ; Sat, 27 Nov 2021 15:02:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4661A2BC031; Sat, 27 Nov 2021 15:02:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2EE112BC031 for ; Sat, 27 Nov 2021 15:02:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 331BB342E88 for ; Sat, 27 Nov 2021 15:02:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C23BF1D6 for ; Sat, 27 Nov 2021 15:02:07 +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: <1638025319.767953cf7c81c5cfcee32751dc838cabb098c6f1.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_limitipconn/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_limitipconn/mod_limitipconn-0.24-r4.ebuild X-VCS-Directories: www-apache/mod_limitipconn/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 767953cf7c81c5cfcee32751dc838cabb098c6f1 X-VCS-Branch: master Date: Sat, 27 Nov 2021 15:02:07 +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: 230428bb-bb93-481b-9976-3920cfa86ff2 X-Archives-Hash: 8492b292e8d32a8e61d3a9b50a37e45b commit: 767953cf7c81c5cfcee32751dc838cabb098c6f1 Author: Marek Szuba gentoo org> AuthorDate: Sat Nov 27 14:38:26 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Nov 27 15:01:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767953cf www-apache/mod_limitipconn: update EAPI 5 -> 7 Signed-off-by: Marek Szuba gentoo.org> .../mod_limitipconn/mod_limitipconn-0.24-r4.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/www-apache/mod_limitipconn/mod_limitipconn-0.24-r4.ebuild b/www-apache/mod_limitipconn/mod_limitipconn-0.24-r4.ebuild new file mode 100644 index 000000000000..df72cd42b1c4 --- /dev/null +++ b/www-apache/mod_limitipconn/mod_limitipconn-0.24-r4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit apache-module depend.apache + +DESCRIPTION="Limit the number of simultaneous apache connections" +HOMEPAGE="https://dominia.org/djao/limitipconn2.html" +SRC_URI="https://dominia.org/djao/limit/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="www-servers/apache[apache2_modules_status]" + +need_apache2 + +RESTRICT="test" + +APACHE2_MOD_CONF="27_${PN}" +APACHE2_MOD_DEFINE="LIMITIPCONN STATUS" + +DOCFILES="ChangeLog README" + +# Work around Bug #616612 +pkg_setup() { + _init_apache2 + _init_apache2_late +}