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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 032F01382C5 for ; Thu, 11 Mar 2021 04:20:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CC46E0894; Thu, 11 Mar 2021 04:20:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CDB41E0894 for ; Thu, 11 Mar 2021 04:20:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92EAA335DC1 for ; Thu, 11 Mar 2021 04:20:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6D56573 for ; Thu, 11 Mar 2021 04:20:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615436390.9f513ee89c046aef6ca3c6f43ec999da0d2b4946.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_fastcgi_handler/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild X-VCS-Directories: www-apache/mod_fastcgi_handler/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9f513ee89c046aef6ca3c6f43ec999da0d2b4946 X-VCS-Branch: master Date: Thu, 11 Mar 2021 04:20:32 +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: 48db9be6-f301-4e86-93e7-4cff9418a289 X-Archives-Hash: dc7a5f2eccea6a884700fc3ad1d490f7 commit: 9f513ee89c046aef6ca3c6f43ec999da0d2b4946 Author: Sam James gentoo org> AuthorDate: Thu Mar 11 04:19:43 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 11 04:19:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f513ee8 www-apache/mod_fastcgi_handler: update EAPI 6 -> 7, fix apache workaround Thanks-to: Thomas Deutschmann gentoo.org> Signed-off-by: Sam James gentoo.org> .../mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild b/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild index 140492bd277..fb9676278d0 100644 --- a/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild +++ b/www-apache/mod_fastcgi_handler/mod_fastcgi_handler-0.6-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit apache-module @@ -12,7 +12,6 @@ SRC_URI="https://github.com/hollow/mod_fastcgi_handler/archive/v${PV}.tar.gz -> LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" APACHE2_MOD_CONF="20_${PN}" APACHE2_MOD_DEFINE="FASTCGI_HANDLER" @@ -21,10 +20,9 @@ APXS2_ARGS="-o ${PN}.so -c *.c" need_apache2 -src_install() { +pkg_setup() { # bug #653606 # but true cause seems to be bug #616612 - APACHE_BASEDIR="/usr/$(get_libdir)/apache2" - APACHE_MODULESDIR="${APACHE_BASEDIR}/modules" - default + _init_apache2 + _init_apache2_late }