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 5E43915817D for ; Mon, 10 Jun 2024 15:32:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C214E29F2; Mon, 10 Jun 2024 15:32:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 24E99E29F2 for ; Mon, 10 Jun 2024 15:32:51 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5FD4B33BEED for ; Mon, 10 Jun 2024 15:32:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5B331C56 for ; Mon, 10 Jun 2024 15:32:48 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1718033514.86d645d1ab1d7ca5fe4310f3df23f3e09a735a0d.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_authz_unixgroup/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild X-VCS-Directories: www-apache/mod_authz_unixgroup/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 86d645d1ab1d7ca5fe4310f3df23f3e09a735a0d X-VCS-Branch: master Date: Mon, 10 Jun 2024 15:32:48 +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: 4bc97d08-e443-45e8-a5dc-d95c40137d51 X-Archives-Hash: 8d29f1f1fad89b7f9899a2df1cca7434 commit: 86d645d1ab1d7ca5fe4310f3df23f3e09a735a0d Author: Craig Andrews gentoo org> AuthorDate: Mon Jun 10 15:31:54 2024 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Jun 10 15:31:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d645d1 www-apache/mod_authz_unixgroup: update EAPI 7 -> 8 Bug: https://bugs.gentoo.org/933847 Signed-off-by: Craig Andrews gentoo.org> .../mod_authz_unixgroup-1.1.0-r2.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild b/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild new file mode 100644 index 000000000000..e445b9e407d1 --- /dev/null +++ b/www-apache/mod_authz_unixgroup/mod_authz_unixgroup-1.1.0-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit apache-module + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/phokz/mod-auth-external.git" + inherit git-r3 + S="${WORKDIR}/${P}/${PN}" +else + SRC_URI="https://github.com/phokz/mod-auth-external/archive/${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/mod-auth-external-${P}" +fi + +DESCRIPTION="An Apache2 authorization DSO using unix groups" +HOMEPAGE="https://github.com/phokz/mod-auth-external" + +LICENSE="Apache-1.1" +SLOT="0" +need_apache2_4 + +DOCFILES="CHANGES INSTALL README NOTICE" + +APACHE2_MOD_CONF="10_${PN}" +APACHE2_MOD_DEFINE="AUTHZ_UNIXGROUP" + +pkg_setup() { + _init_apache2 + _init_apache2_late +}