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: Tue, 28 May 2019 15:37:54
Message-Id: 1559057865.e143a5519e151abae67e96b29f97c9de233da6ec.candrews@gentoo
1 commit: e143a5519e151abae67e96b29f97c9de233da6ec
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 28 15:36:43 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue May 28 15:37:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e143a551
7
8 www-apache/mod_h2: 1.15.1 version bump
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.13
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.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 b3f5032a9ad..f95f5f991ec 100644
19 --- a/www-apache/mod_h2/Manifest
20 +++ b/www-apache/mod_h2/Manifest
21 @@ -7,3 +7,4 @@ DIST mod_http2-1.13.1.tar.gz 1031498 BLAKE2B 53716d7973e5996d48a85cc96c2634d40d6
22 DIST mod_http2-1.14.0.tar.gz 1034167 BLAKE2B f29d3937339562f0b8e21ab5eeaca8ff1cab26ce15c692fceffe8e6a1609a49ff6f7488cae4cc30b4fe0e97fe787e077ff771906d7d897afc5b47cc347d74b8f SHA512 dba17eb48af5c22dca3fcd75b4ecd5838dff72c9829bcf9475d8edabb0d2ce4ed2f55249ab1051c1a37e9f2f5a5a7f08f5aa47170f9c39c3b9c404c4ec6547ac
23 DIST mod_http2-1.14.1.tar.gz 1032989 BLAKE2B 15359369f8332d9f9d35cb43468b2cd0d98529155d360176c41ac38c24a94824510b518aaa367cff10672bfdd3c7a24269cca4552d993bf7d63f28f857a1ae78 SHA512 04298f0fd9379ae22ba87f5dc95791091ff95cc90c2e898334cc33a0c5115905ec6cbc93676b3a28786436f351c8971721b2786e70cd498fd73ec64b5f46e611
24 DIST mod_http2-1.15.0.tar.gz 1036567 BLAKE2B 1ed9fdd7bf13c8ec7ac14b2cd0a109f0cd6e6d1eb8047e1cf6cd107143e23ebb6d9f9ef753942d44ec4d2168e0783dd23dd66b338d8631c504d4cd81b0287b83 SHA512 c3541c930ceee81dfbd688ea155561b6e06aa8ef486830a95e6cfa621f3589aa9c9e15661a4b81463cbe716d02dd28a574e3a74894a74d7c751c88894d378858
25 +DIST mod_http2-1.15.1.tar.gz 1026120 BLAKE2B 724d09bfafc2fe6a288eeebd7fbdcbe2c3d3e146b0afae42ae72be16931904982b07fd55f4c96da6f8718b5058421813ecd186ac4b4161a74ea7b83c38394ed1 SHA512 3564e8e4cb896420b91669d710d70cdecbe45480078c790960fd7d8c788ac9b843517c2af0747932ad53eb048c39765c4ceb2b7de7e04a1bc7fcb57af0117eb9
26
27 diff --git a/www-apache/mod_h2/mod_h2-1.15.1.ebuild b/www-apache/mod_h2/mod_h2-1.15.1.ebuild
28 new file mode 100644
29 index 00000000000..3e6d435d3f8
30 --- /dev/null
31 +++ b/www-apache/mod_h2/mod_h2-1.15.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 +}