www-apache/mod_h2: drop 2.0.38

Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews
2026-02-20 09:39:29 -05:00
parent a9ef89ee45
commit a6a2a23356
2 changed files with 0 additions and 50 deletions

View File

@@ -1,2 +1 @@
DIST mod_h2-2.0.38.tar.gz 701695 BLAKE2B 5c28e1e7499cd0b4f37c9c4e81f157e5b8c3c6984a84dd74799442d31c9d58db79162a3bad7033ad36e3ba1bcef66c015f3a9c791e9c8d244e5ec967f712032c SHA512 a548352b94ebef2ae6f94187a822f44f9498cc5f64e877e99cd00f1c1088fa076a7d77fc4b57f67e16ec81c0805d70c6442fd5f2e6a776b60bd948d06d7cd548
DIST mod_h2-2.0.39.tar.gz 701631 BLAKE2B 40f7d0b9f66bd837b6844c969a79830b09fe514638ccfe16dec92438d99f66d0d9d0c9d29f729adf292fee9a277cd589da303de86913fdefe353ac81330fc23d SHA512 5cae2c2f87ee6efe9ed20f4e3c18a4d0524daa5365771ee93cbb5a52ae498572ef7f40792a6b63f0c0f29ff0ce0acaf8e69e6e051cdbe28b9796b6780ee8b509

View File

@@ -1,49 +0,0 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit apache-module autotools
MY_P="${PN/h2/http2}-${PV}"
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://github.com/icing/mod_h2.git"
inherit git-r3
else
MY_PV="${PV/_rc/-rc}"
MY_P="${PN}-${MY_PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://github.com/icing/mod_h2/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="HTTP/2 module for Apache"
HOMEPAGE="https://github.com/icing/mod_h2"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="ssl"
RDEPEND=">=net-libs/nghttp2-1.0
>=www-servers/apache-2.4.48[-apache2_modules_http2,ssl?]"
DEPEND="${RDEPEND}"
need_apache2_4
src_prepare() {
default
eautoreconf
}
src_compile() {
default
}
src_install() {
default
APACHE2_MOD_DEFINE="HTTP2"
insinto "${APACHE_MODULES_CONFDIR}"
newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
}