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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A62171382C5 for ; Mon, 22 Feb 2021 14:57:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAEE6E083D; Mon, 22 Feb 2021 14:57:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE148E083D for ; Mon, 22 Feb 2021 14:57:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6FEBE340F17 for ; Mon, 22 Feb 2021 14:57:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0DE84E9 for ; Mon, 22 Feb 2021 14:57:27 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1614005843.6aee88d5b00a99598b84483e64e50dce88d1e8ad.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_h2/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_h2/Manifest www-apache/mod_h2/mod_h2-1.15.17.ebuild X-VCS-Directories: www-apache/mod_h2/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 6aee88d5b00a99598b84483e64e50dce88d1e8ad X-VCS-Branch: master Date: Mon, 22 Feb 2021 14:57:27 +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: 1c0fad78-d026-48d0-86e9-d1e85241dd3a X-Archives-Hash: 133c5ab2dbfe7ebdb516f21485a9dd8c commit: 6aee88d5b00a99598b84483e64e50dce88d1e8ad Author: Craig Andrews gentoo org> AuthorDate: Mon Feb 22 14:57:01 2021 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Feb 22 14:57:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aee88d5 www-apache/mod_h2: 1.15.17 version bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Craig Andrews gentoo.org> www-apache/mod_h2/Manifest | 1 + www-apache/mod_h2/mod_h2-1.15.17.ebuild | 49 +++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest index 0557ad05b72..e2990fb5cfa 100644 --- a/www-apache/mod_h2/Manifest +++ b/www-apache/mod_h2/Manifest @@ -1 +1,2 @@ DIST mod_h2-1.15.16.tar.gz 702081 BLAKE2B 1f1ce9911c4dba5001d548b99fe08c5a13882a1f44b067a19c3edc178566895522e30d5b949c89754c322eb80a09fd5c07cba740783377b46e2d075e207ca04b SHA512 48e734bafc68acda75a2b9b72b503396bb8c4e58842e5b1ff395389835681a26485cd3795ca3c7fe7be5ad9614b89f305993d2753f1486856eff7599d2892c49 +DIST mod_h2-1.15.17.tar.gz 708333 BLAKE2B 7f7f4625d20dd85e88768cbc1b6347498d2d913b4e778fcac6e01ef2e6676ff4c180385610e5db990d7e9d3ceceafac7e1a08b421c7d99814f9c212b17ac8d76 SHA512 7d6af4123091171273093b4333699bda2469b3e2bd7412e226394f0dc79a5a7d684035538549e13d119c5134016c8b7a3e7aaf8559eec56ed15d849655f11521 diff --git a/www-apache/mod_h2/mod_h2-1.15.17.ebuild b/www-apache/mod_h2/mod_h2-1.15.17.ebuild new file mode 100644 index 00000000000..e59d601d9dd --- /dev/null +++ b/www-apache/mod_h2/mod_h2-1.15.17.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +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 + S="${WORKDIR}/${MY_P}" + SRC_URI="https://github.com/icing/mod_h2/archive/v${PV}.tar.gz -> ${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.20[-apache2_modules_http2,ssl?]" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P}" + +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" +}