Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_limitipconn/
Date: Tue, 02 Aug 2016 00:12:54
Message-Id: 1470096553.0bd7235f345592e2710d5975bc734086d1a197c4.mjo@gentoo
1 commit: 0bd7235f345592e2710d5975bc734086d1a197c4
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 00:08:21 2016 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 00:09:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd7235f
7
8 www-apache/mod_limitipconn: new revision to fix the postinst instructions.
9
10 The pkg_postinst() for this module used to suggest setting,
11
12 APACHE2_OPTS="... -D LIMITIPCONN -D INFO"
13
14 in your apache2 conf file. The "INFO" was a mistake; it should have
15 been "STATUS" (to enable ExtendedStatus, as needed by mod_limitipconn).
16 This commit fixes the postinst message, and adds a runtime dependency
17 on mod_status for apache2 (previously missing).
18
19 Gentoo-Bug: 479360
20
21 Package-Manager: portage-2.2.28
22
23 ...limitipconn-0.24-r1.ebuild => mod_limitipconn-0.24-r2.ebuild} | 9 ++++-----
24 1 file changed, 4 insertions(+), 5 deletions(-)
25
26 diff --git a/www-apache/mod_limitipconn/mod_limitipconn-0.24-r1.ebuild b/www-apache/mod_limitipconn/mod_limitipconn-0.24-r2.ebuild
27 similarity index 71%
28 rename from www-apache/mod_limitipconn/mod_limitipconn-0.24-r1.ebuild
29 rename to www-apache/mod_limitipconn/mod_limitipconn-0.24-r2.ebuild
30 index 856408f..6f82f61 100644
31 --- a/www-apache/mod_limitipconn/mod_limitipconn-0.24-r1.ebuild
32 +++ b/www-apache/mod_limitipconn/mod_limitipconn-0.24-r2.ebuild
33 @@ -6,7 +6,7 @@ EAPI=6
34
35 inherit apache-module
36
37 -DESCRIPTION="Allows administrators to limit the number of simultaneous downloads permitted"
38 +DESCRIPTION="Limit the number of simultaneous apache connections"
39 HOMEPAGE="http://dominia.org/djao/limitipconn2.html"
40 SRC_URI="http://dominia.org/djao/limit/${P}.tar.bz2"
41
42 @@ -16,13 +16,12 @@ KEYWORDS="~amd64 ~ppc ~x86"
43 IUSE=""
44
45 DEPEND=""
46 -RDEPEND=""
47 +RDEPEND="=www-servers/apache-2*[apache2_modules_status]"
48 +need_apache2
49
50 RESTRICT="test"
51
52 APACHE2_MOD_CONF="27_${PN}"
53 -APACHE2_MOD_DEFINE="LIMITIPCONN INFO"
54 +APACHE2_MOD_DEFINE="LIMITIPCONN STATUS"
55
56 DOCFILES="ChangeLog README"
57 -
58 -need_apache2