Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
Date: Sun, 30 Aug 2009 01:19:09
Message-Id: E1MhdtX-0006rZ-FD@stork.gentoo.org
1 hollow 09/08/30 06:28:07
2
3 Modified: ChangeLog varnish-2.0.4-r1.ebuild
4 Log:
5 make HTTP_HDR_MAX_VAL configurable in case broken webapps set more than 32 headers; only start varnishncsa logging if desired
6 (Portage version: 2.2_rc33/cvs/Linux i686)
7
8 Revision Changes Path
9 1.26 www-servers/varnish/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.26&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.26&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.25&r2=1.26
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
18 retrieving revision 1.25
19 retrieving revision 1.26
20 diff -u -r1.25 -r1.26
21 --- ChangeLog 12 Jul 2009 12:04:06 -0000 1.25
22 +++ ChangeLog 30 Aug 2009 06:28:07 -0000 1.26
23 @@ -1,6 +1,11 @@
24 # ChangeLog for www-servers/varnish
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.25 2009/07/12 12:04:06 bangert Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.26 2009/08/30 06:28:07 hollow Exp $
28 +
29 + 30 Aug 2009; Benedikt Böhm <hollow@g.o> varnish-2.0.4-r1.ebuild,
30 + files/varnishd.initd:
31 + make HTTP_HDR_MAX_VAL configurable in case broken webapps set more than 32
32 + headers; only start varnishncsa logging if desired
33
34 *varnish-2.0.4-r1 (12 Jul 2009)
35
36
37
38
39 1.2 www-servers/varnish/varnish-2.0.4-r1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?r1=1.1&r2=1.2
44
45 Index: varnish-2.0.4-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- varnish-2.0.4-r1.ebuild 12 Jul 2009 12:04:06 -0000 1.1
52 +++ varnish-2.0.4-r1.ebuild 30 Aug 2009 06:28:07 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.1 2009/07/12 12:04:06 bangert Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.2 2009/08/30 06:28:07 hollow Exp $
58
59 EAPI="2"
60
61 @@ -17,9 +17,13 @@
62 #varnish compiles stuff at run time
63 RDEPEND="sys-devel/gcc"
64
65 +HTTP_HDR_MAX_VAL=${HTTP_HDR_MAX_VAL:-32}
66 +
67 src_prepare() {
68 epatch "${FILESDIR}"/${P}-link-order.patch
69 epatch "${FILESDIR}"/${P}-virtual-ncsa.patch
70 + sed -e "s/#define HTTP_HDR_MAX_VAL .*/#define HTTP_HDR_MAX_VAL ${HTTP_HDR_MAX_VAL}/" \
71 + -i bin/varnishd/cache.h
72 eautoreconf
73 }