repo/gentoo:master commit in: app-admin/apache-tools/

"Sam James" <[email protected]>
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1786667095.1a7291857b47cf1eb8dc0552c59d96388497e572.sam@gentoo>
commit:     1a7291857b47cf1eb8dc0552c59d96388497e572
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 00:24:55 2026 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 00:24:55 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a729185

app-admin/apache-tools: drop 2.4.67

Bug: https://bugs.gentoo.org/977098
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-admin/apache-tools/Manifest                   |   1 -
 app-admin/apache-tools/apache-tools-2.4.67.ebuild | 115 ----------------------
 2 files changed, 116 deletions(-)

diff --git a/app-admin/apache-tools/Manifest b/app-admin/apache-tools/Manifest
index 1f4f9c7bb8c6..7cfca4943e8a 100644
--- a/app-admin/apache-tools/Manifest
+++ b/app-admin/apache-tools/Manifest
@@ -1,2 +1 @@
-DIST httpd-2.4.67.tar.bz2 7493067 BLAKE2B c7f389588b8081080bf81b2f2ffcc585742811a5c7ddc3b63838bb8aad61586e7b8e8854cdb20b56963cc70a952124849b499a7affbf2bad44162f236bb5fbed SHA512 5ae29fc8edb253453271613cb18754de0d943d1f82361059c81f8ebe1f057b894675506550bd1341bfa9416226b569a7bac08f497c53e8bb6dede87f4f41eae4
 DIST httpd-2.4.68.tar.bz2 7738512 BLAKE2B 5c2d4b21915db3ca62ee374e89bb04dcec21a6f2f1334f6306db079de03a974709ef71f3728c56e020c844e331b800306fcf5a865dcd2e02576d41ae6cac6b70 SHA512 134a5bbd3ffe97523ac750490531bcb9441c532cedf0229aa006aa1368e9d25040507c6f519bed6754044f62c371f7c7f9a11b6a311f79b9680d478bf4373eb3

diff --git a/app-admin/apache-tools/apache-tools-2.4.67.ebuild b/app-admin/apache-tools/apache-tools-2.4.67.ebuild
deleted file mode 100644
index a39b6665c637..000000000000
--- a/app-admin/apache-tools/apache-tools-2.4.67.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm"
-HOMEPAGE="https://httpd.apache.org/"
-SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
-S="${WORKDIR}/httpd-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-IUSE="ssl"
-
-RDEPEND=">=dev-libs/apr-1.5.0:1=
-	dev-libs/apr-util:1=
-	dev-libs/expat
-	dev-libs/libpcre2
-	virtual/libcrypt:=
-	kernel_linux? ( sys-apps/util-linux )
-	ssl? ( dev-libs/openssl:0= )"
-DEPEND="${RDEPEND}
-	dev-build/libtool"
-BDEPEND="
-	virtual/pkgconfig
-"
-
-RESTRICT="test"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-2.4.54-Makefile.patch" #459446
-	"${FILESDIR}/${PN}-2.4.54-no-which.patch" #844868
-	"${FILESDIR}/${PN}-2.4.54-libtool.patch" #858833
-	"${FILESDIR}/${PN}-2.4.67-constness.patch"
-)
-
-src_prepare() {
-	default
-
-	tc-export PKG_CONFIG
-	# This package really should upgrade to using pcre's .pc file.
-	cat <<-\EOF > "${T}"/pcre2-config
-	#!/usr/bin/env bash
-	flags=()
-	for flag; do
-		if [[ ${flag} == "--version" ]]; then
-			flags+=( --modversion )
-		else
-			flags+=( "${flag}" )
-		fi
-	done
-	exec ${PKG_CONFIG} libpcre2-8 "${flags[@]}"
-	EOF
-	chmod a+x "${T}"/pcre2-config || die
-
-	# Only here for libtool and which patches
-	eautoreconf
-}
-
-src_configure() {
-	# Silly check.
-	tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no"
-
-	export ac_cv_path_PKGCONFIG="${PKG_CONFIG}"
-	export PCRE_CONFIG="${T}"/pcre2-config
-	export ac_cv_prog_ac_ct_PCRE_CONFIG="${T}"/pcre2-config
-
-	local myeconfargs=(
-		--libexecdir="${EPREFIX}"/usr/$(get_libdir)/apache2/modules
-		--sbindir="${EPREFIX}"/usr/sbin
-		--with-z="${EPREFIX}"/usr
-		--with-apr="${ESYSROOT}"/usr
-		--with-apr-util="${ESYSROOT}"/usr
-		--without-pcre
-		--with-pcre2="${T}"/pcre2-config
-		$(use_enable ssl)
-		$(usex ssl '--with-ssl="${EPREFIX}"/usr' '')
-	)
-
-	# econf overwrites the stuff from config.layout.
-	econf "${myeconfargs[@]}"
-
-	sed -i \
-		-e '/^LTFLAGS/s:--silent::' \
-		build/rules.mk build/config_vars.mk || die
-}
-
-src_compile() {
-	emake -C support
-}
-
-src_install() {
-	emake -C support DESTDIR="${D}" install
-	dodoc CHANGES
-	doman docs/man/{dbmmanage,htdigest,htpasswd,htdbm,ab,logresolve}.1 \
-		docs/man/{htcacheclean,rotatelogs}.8
-
-	# Providing compatiblity symlinks for #177697 (which we'll stop to install
-	# at some point).
-	pushd "${ED}"/usr/sbin >/dev/null || die
-	local i
-	for i in *; do
-		dosym ${i} /usr/sbin/${i}2
-	done
-	popd >/dev/null || die
-
-	# Provide a symlink for ab-ssl
-	if use ssl ; then
-		dosym ab /usr/bin/ab-ssl
-		dosym ab /usr/bin/ab2-ssl
-	fi
-}
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.