www-apache/mod_h2: drop 2.0.37

Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
Craig Andrews
2026-02-04 12:14:23 -05:00
parent f23fc53753
commit 6459ba4274
2 changed files with 0 additions and 50 deletions

View File

@@ -1,2 +1 @@
DIST mod_h2-2.0.37.tar.gz 701685 BLAKE2B 4cf453709af54a87fc6a73a2753a7ee1d0ccff57304b990f51bef508ac71ae2c3cdab527cc9ff4f0f012b31ccf887d2f5116d852f89203138a1d981ce644dae7 SHA512 73a4d16537731f05eb1a6f8d9d4233d563d410d8c3f46a79a929f8d7ab38bc856d251e249411cc4a117a2218042e82a7eba98cb318a4df8a419a977d609de34e
DIST mod_h2-2.0.38.tar.gz 701695 BLAKE2B 5c28e1e7499cd0b4f37c9c4e81f157e5b8c3c6984a84dd74799442d31c9d58db79162a3bad7033ad36e3ba1bcef66c015f3a9c791e9c8d244e5ec967f712032c SHA512 a548352b94ebef2ae6f94187a822f44f9498cc5f64e877e99cd00f1c1088fa076a7d77fc4b57f67e16ec81c0805d70c6442fd5f2e6a776b60bd948d06d7cd548

View File

@@ -1,49 +0,0 @@
# Copyright 1999-2025 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"
}