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: Fri, 01 Mar 2019 14:31:58
Message-Id: 1551450706.4f1e20a8b12ad12be0f3d51aa294acac51452e17.candrews@gentoo
1 commit: 4f1e20a8b12ad12be0f3d51aa294acac51452e17
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 1 14:26:36 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 1 14:31:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1e20a8
7
8 www-apache/mod_h2: 1.13.1 version bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
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.13.1.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 60d7afac938..ad67f886f65 100644
19 --- a/www-apache/mod_h2/Manifest
20 +++ b/www-apache/mod_h2/Manifest
21 @@ -3,3 +3,4 @@ DIST mod_http2-1.12.2.tar.gz 1030072 BLAKE2B efb829eb98bb40489e9a52267125d79093e
22 DIST mod_http2-1.12.3.tar.gz 1038823 BLAKE2B 86c0f0a6ba04e67976842aa8dae29f401eb594cb66dfb5790bee2838fd017437acfa83d0129d6d91f623304c0d5b3e0eace605adc655dc4e459725d3019a79b0 SHA512 864381a4610a58c962fc59ab885655b20a8bd8aa711688e4ee1b6c5fc3804de843a81c7c0976d5862c18d40657f8e7f5caf2650e4975d946581b32d93af6ef71
23 DIST mod_http2-1.12.5.tar.gz 1039313 BLAKE2B 13871ad7af9581657e09d46e107ceb8330d673a0e5c4ce761ff6aa956a2d674694ffe985e21190e0efb960f1cdcd1dfe3b9c1aa775edb8c892a3c15b1bdaff38 SHA512 63e2e6cbb6a1b222e3bb0611170e6cbee2ff652c3b44004176af5e3ba02cf2484b8826289586d47be2b18d453a8042d52407e6d798c49d3ed37cf52796d0e4be
24 DIST mod_http2-1.13.0.tar.gz 1037382 BLAKE2B 8df02fe48d65c08504adf8fad9f328a525c0e0d677132843240410ba2008422ffee1a836e7884b5907c60ee9906ada3fcb9ad50d4c9e301ad8807af6eca3da6b SHA512 1302d4e9255811411432043df606dee775fbecd986bb5d9da53b5ef5c8a3600f3e23904f59e3d35d67910b70bde0e1d906445d5e3037ac80e5381eefe3839082
25 +DIST mod_http2-1.13.1.tar.gz 1031498 BLAKE2B 53716d7973e5996d48a85cc96c2634d40d6908f15529cf1e17b94ffe23e171de63914c862ab6dcb968cd74a9ca042778f8004b3bfdb2461f3dd30314dd1ef1ad SHA512 e14fe9d1910e5f4a48e3c0f94b2aa7ac73380ee8417b74c6a3e38360fe5bffaa16f59f48b7a0d0d7f9f50f933273b6b96e7530699e2bfd3ea485f34752a55a5b
26
27 diff --git a/www-apache/mod_h2/mod_h2-1.13.1.ebuild b/www-apache/mod_h2/mod_h2-1.13.1.ebuild
28 new file mode 100644
29 index 00000000000..3e6d435d3f8
30 --- /dev/null
31 +++ b/www-apache/mod_h2/mod_h2-1.13.1.ebuild
32 @@ -0,0 +1,47 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
37 +
38 +inherit apache-module autotools
39 +
40 +MY_P="${PN/h2/http2}-${PV}"
41 +
42 +if [[ ${PV} == 9999 ]] ; then
43 + EGIT_REPO_URI="https://github.com/icing/mod_h2.git"
44 + inherit git-r3
45 +else
46 + S="${WORKDIR}/${MY_P}"
47 + SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz"
48 + KEYWORDS="~amd64 ~x86"
49 +fi
50 +
51 +DESCRIPTION="HTTP/2 module for Apache"
52 +HOMEPAGE="https://github.com/icing/mod_h2"
53 +
54 +LICENSE="Apache-2.0"
55 +SLOT="0"
56 +IUSE="ssl"
57 +
58 +RDEPEND=">=net-libs/nghttp2-1.0
59 + >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
60 +DEPEND="${RDEPEND}"
61 +
62 +need_apache2_4
63 +
64 +src_prepare() {
65 + default
66 + eautoreconf
67 +}
68 +
69 +src_compile() {
70 + default
71 +}
72 +
73 +src_install() {
74 + default
75 +
76 + APACHE2_MOD_DEFINE="HTTP2"
77 + insinto "${APACHE_MODULES_CONFDIR}"
78 + newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
79 +}