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: Sat, 08 Feb 2020 02:01:07
Message-Id: 1581127252.2709573762f25f18d999ab75c3cf821708d08196.candrews@gentoo
1 commit: 2709573762f25f18d999ab75c3cf821708d08196
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 01:56:57 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 02:00:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27095737
7
8 www-apache/mod_h2: 1.15.6 version bump
9
10 Package-Manager: Portage-2.3.87, 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.6.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 ea772dbbf53..aaaa9be7bdc 100644
19 --- a/www-apache/mod_h2/Manifest
20 +++ b/www-apache/mod_h2/Manifest
21 @@ -1 +1,2 @@
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
25 diff --git a/www-apache/mod_h2/mod_h2-1.15.6.ebuild b/www-apache/mod_h2/mod_h2-1.15.6.ebuild
26 new file mode 100644
27 index 00000000000..b5be17b7ca7
28 --- /dev/null
29 +++ b/www-apache/mod_h2/mod_h2-1.15.6.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +
36 +inherit apache-module autotools
37 +
38 +MY_P="${PN/h2/http2}-${PV}"
39 +
40 +if [[ ${PV} == 9999 ]] ; then
41 + EGIT_REPO_URI="https://github.com/icing/mod_h2.git"
42 + inherit git-r3
43 +else
44 + S="${WORKDIR}/${MY_P}"
45 + SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz"
46 + KEYWORDS="~amd64 ~x86"
47 +fi
48 +
49 +DESCRIPTION="HTTP/2 module for Apache"
50 +HOMEPAGE="https://github.com/icing/mod_h2"
51 +
52 +LICENSE="Apache-2.0"
53 +SLOT="0"
54 +IUSE="ssl"
55 +
56 +RDEPEND=">=net-libs/nghttp2-1.0
57 + >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
58 +DEPEND="${RDEPEND}"
59 +
60 +need_apache2_4
61 +
62 +src_prepare() {
63 + default
64 + eautoreconf
65 +}
66 +
67 +src_compile() {
68 + default
69 +}
70 +
71 +src_install() {
72 + default
73 +
74 + APACHE2_MOD_DEFINE="HTTP2"
75 + insinto "${APACHE_MODULES_CONFDIR}"
76 + newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
77 +}