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 7FFEB158086 for ; Sun, 2 Jan 2022 06:38:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D01FF2BC118; Sun, 2 Jan 2022 06:38:52 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59AD22BC118 for ; Sun, 2 Jan 2022 06:38:52 +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 20B81342D5C for ; Sun, 2 Jan 2022 06:38:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B45EF239 for ; Sun, 2 Jan 2022 06:38:49 +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: <1641105519.be4dd3d866ae5600ef7e788f4bdf38b32fcc0146.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_kerb/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r3.ebuild X-VCS-Directories: www-apache/mod_auth_kerb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: be4dd3d866ae5600ef7e788f4bdf38b32fcc0146 X-VCS-Branch: master Date: Sun, 2 Jan 2022 06:38:49 +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: 318b784d-91b1-4819-a4db-6ce9fe503fb0 X-Archives-Hash: fe2151705997dfe6d29ce2d0975ca473 commit: be4dd3d866ae5600ef7e788f4bdf38b32fcc0146 Author: Sam James gentoo org> AuthorDate: Sun Jan 2 06:38:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 2 06:38:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4dd3d8 www-apache/mod_auth_kerb: drop 5.4-r2, 5.4-r3 Closes: https://bugs.gentoo.org/827679 Signed-off-by: Sam James gentoo.org> .../mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild | 58 --------------------- .../mod_auth_kerb/mod_auth_kerb-5.4-r3.ebuild | 60 ---------------------- 2 files changed, 118 deletions(-) diff --git a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild deleted file mode 100644 index a83b2926d126..000000000000 --- a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit apache-module epatch tmpfiles - -DESCRIPTION="An Apache authentication module using Kerberos" -HOMEPAGE="http://modauthkerb.sourceforge.net/" -SRC_URI="mirror://sourceforge/modauthkerb/${P}.tar.gz - https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2" - -LICENSE="BSD openafs-krb5-a HPND" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="virtual/krb5" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="11_${PN}" -APACHE2_MOD_DEFINE="AUTH_KERB" - -DOCFILES="INSTALL README" - -need_apache2 - -PATCHES=( - "${WORKDIR}/${P}-gentoo-patchset"/${P}-rcopshack.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-fixes.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-s4u2proxy.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-httpd24.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-delegation.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-cachedir.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-longuser.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-handle-continue.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-heimdal.patch -) - -src_prepare() { - epatch "${PATCHES[@]}" -} - -src_configure() { - CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 -} - -src_compile() { - emake -} - -src_install() { - apache-module_src_install - dotmpfiles "${FILESDIR}/${PN}.conf" -} - -pkg_postinst() { - tmpfiles_process ${PN}.conf -} diff --git a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r3.ebuild b/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r3.ebuild deleted file mode 100644 index 0a59d3214ff2..000000000000 --- a/www-apache/mod_auth_kerb/mod_auth_kerb-5.4-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit apache-module depend.apache tmpfiles - -DESCRIPTION="An Apache authentication module using Kerberos" -HOMEPAGE="http://modauthkerb.sourceforge.net/" -SRC_URI="mirror://sourceforge/project/modauthkerb/${PN}/${P}/${P}.tar.gz - https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2" - -LICENSE="BSD openafs-krb5-a HPND" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="virtual/krb5" -RDEPEND="${DEPEND}" - -APACHE2_MOD_CONF="11_${PN}" -APACHE2_MOD_DEFINE="AUTH_KERB" - -DOCFILES="INSTALL README" - -need_apache2 - -PATCHES=( - "${WORKDIR}/${P}-gentoo-patchset"/${P}-rcopshack.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-fixes.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-s4u2proxy.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-httpd24.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-delegation.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-cachedir.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-longuser.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-handle-continue.patch - "${WORKDIR}/${P}-gentoo-patchset"/${P}-heimdal.patch -) - -# Work around Bug #616612 -pkg_setup() { - _init_apache2 - _init_apache2_late -} - -src_configure() { - CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4 -} - -src_compile() { - emake -} - -src_install() { - apache-module_src_install - dotmpfiles "${FILESDIR}/${PN}.conf" -} - -pkg_postinst() { - tmpfiles_process ${PN}.conf -}