commit: a9ef89ee45f4fec325af9859cbc5af6c1b4e1c10
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 20 14:39:23 2026 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Feb 20 14:51:23 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ef89ee
www-apache/mod_h2: add 2.0.39
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
www-apache/mod_h2/Manifest | 1 +
www-apache/mod_h2/mod_h2-2.0.39.ebuild | 49 ++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
index ebff5ff95add..a4d302fe94cd 100644
--- a/www-apache/mod_h2/Manifest
+++ b/www-apache/mod_h2/Manifest
@@ -1 +1,2 @@
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
diff --git a/www-apache/mod_h2/mod_h2-2.0.39.ebuild
b/www-apache/mod_h2/mod_h2-2.0.39.ebuild
new file mode 100644
index 000000000000..69808b9dab77
--- /dev/null
+++ b/www-apache/mod_h2/mod_h2-2.0.39.ebuild
@@ -0,0 +1,49 @@
+# 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"
+}