Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_h2/
Date: Mon, 02 Mar 2020 14:17:47
Message-Id: 1583158657.ec1a29bfa42a691eb4c8a8c40cccb592c035282e.candrews@gentoo
1 commit: ec1a29bfa42a691eb4c8a8c40cccb592c035282e
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 2 14:13:05 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 2 14:17:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1a29bf
7
8 www-apache/mod_h2: 1.15.7 version bump
9
10 Package-Manager: Portage-2.3.91, Repoman-2.3.20
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 www-apache/mod_h2/Manifest | 1 +
14 www-apache/mod_h2/mod_h2-1.15.7.ebuild | 47 ++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
18 index aaaa9be7bdc..fb52b2e682b 100644
19 --- a/www-apache/mod_h2/Manifest
20 +++ b/www-apache/mod_h2/Manifest
21 @@ -1,2 +1,3 @@
22 DIST mod_http2-1.15.5.tar.gz 1041643 BLAKE2B 59591d919451a96595c8e75155f84e63876e95b13940af5473fe4cf0a29ac91f57d3df22911397de213482c5a81d093ce81ce3835136ace50de0d4f70f2a936a SHA512 6255a46a22e5df6f8fed9ce65079979a3c613cccf1a95559ff0832ab2efe5fb98d51abfe83c006b9a3c7452bb4e78e3e67e94d7c14618fa312c7236a34e6b280
23 DIST mod_http2-1.15.6.tar.gz 1028795 BLAKE2B 4f323b00a133de13f547fd5b0402ce48d681289675cfd85dbef25b8432598772ddbb1fa78abd7905c2c4337a41340078efe903fc7cb4203cabdad10f71ef387a SHA512 2d27de99108d444e3095cf84d5ccf1b281bd09e2d2d4c4ba4ecc7b6519119d4d42e9379285bd68ce7f56349a9f27062b516df8b7612df7551a46e8a4b4b634ef
24 +DIST mod_http2-1.15.7.tar.gz 1042030 BLAKE2B 5252e15fbc71845db557d567daba63452df0693baad18f8b83f937adbd760f1fa931fbf663f1f5ec475760e75fc132fb0de63784e046092669b1d8fb44d96e9a SHA512 effe0a8f41603865a9dceea6fa109a924e6f2f904a2a02ebf10a20e0315f248cfaf91d4b2a0d6168ee94fb0f4af2680a6992c43cc91b0bf47a13d739b4cf9228
25
26 diff --git a/www-apache/mod_h2/mod_h2-1.15.7.ebuild b/www-apache/mod_h2/mod_h2-1.15.7.ebuild
27 new file mode 100644
28 index 00000000000..b5be17b7ca7
29 --- /dev/null
30 +++ b/www-apache/mod_h2/mod_h2-1.15.7.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +
37 +inherit apache-module autotools
38 +
39 +MY_P="${PN/h2/http2}-${PV}"
40 +
41 +if [[ ${PV} == 9999 ]] ; then
42 + EGIT_REPO_URI="https://github.com/icing/mod_h2.git"
43 + inherit git-r3
44 +else
45 + S="${WORKDIR}/${MY_P}"
46 + SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz"
47 + KEYWORDS="~amd64 ~x86"
48 +fi
49 +
50 +DESCRIPTION="HTTP/2 module for Apache"
51 +HOMEPAGE="https://github.com/icing/mod_h2"
52 +
53 +LICENSE="Apache-2.0"
54 +SLOT="0"
55 +IUSE="ssl"
56 +
57 +RDEPEND=">=net-libs/nghttp2-1.0
58 + >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
59 +DEPEND="${RDEPEND}"
60 +
61 +need_apache2_4
62 +
63 +src_prepare() {
64 + default
65 + eautoreconf
66 +}
67 +
68 +src_compile() {
69 + default
70 +}
71 +
72 +src_install() {
73 + default
74 +
75 + APACHE2_MOD_DEFINE="HTTP2"
76 + insinto "${APACHE_MODULES_CONFDIR}"
77 + newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
78 +}