Gentoo Archives: gentoo-commits

From: "Thilo Bangert (bangert)" <bangert@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.1.5.ebuild
Date: Fri, 28 Jan 2011 18:49:26
Message-Id: 20110128184914.3E8262004E@flycatcher.gentoo.org
1 bangert 11/01/28 18:49:14
2
3 Modified: ChangeLog
4 Added: varnish-2.1.5.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux i686)
9
10 Revision Changes Path
11 1.34 www-servers/varnish/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 21 Oct 2010 21:43:30 -0000 1.33
24 +++ ChangeLog 28 Jan 2011 18:49:14 -0000 1.34
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-servers/varnish
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.33 2010/10/21 21:43:30 bangert Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.34 2011/01/28 18:49:14 bangert Exp $
31 +
32 +*varnish-2.1.5 (28 Jan 2011)
33 +
34 + 28 Jan 2011; Thilo Bangert <bangert@g.o> +varnish-2.1.5.ebuild:
35 + version bump
36
37 *varnish-2.1.4 (21 Oct 2010)
38
39
40
41
42 1.1 www-servers/varnish/varnish-2.1.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/varnish-2.1.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/varnish-2.1.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: varnish-2.1.5.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.1.5.ebuild,v 1.1 2011/01/28 18:49:14 bangert Exp $
52
53 EAPI="3"
54
55 inherit eutils autotools
56
57 DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator."
58 HOMEPAGE="http://www.varnish-cache.org/"
59 SRC_URI="http://repo.varnish-cache.org/source/${P}.tar.gz"
60 LICENSE="BSD-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc"
64 #varnish compiles stuff at run time
65 RDEPEND="sys-devel/gcc"
66 DEPEND="dev-python/docutils"
67
68 RESTRICT="test" #315725
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-2.1.4-virtual-ncsa.patch
72 eautoreconf
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed"
77 newinitd "${FILESDIR}"/varnishd.initd varnishd || die
78 newconfd "${FILESDIR}"/varnishd.confd varnishd || die
79
80 insinto /etc/logrotate.d
81 newins "${FILESDIR}/varnishd.logrotate" varnishd
82
83 dodir /var/log/varnish
84
85 use doc && dohtml -r "doc/sphinx/=build/html/"
86 }
87
88 pkg_postinst () {
89 elog "No demo-/sample-configfile is included in the distribution -"
90 elog "please read the man-page for more info."
91 elog "A sample (localhost:8080 -> localhost:80) for gentoo is given in"
92 elog " /etc/conf.d/varnishd"
93 echo
94 ewarn "Varnish 2.1.x introduces VCL changes wrt. 2.0.x. See also"
95 ewarn "http://www.varnish-cache.org/docs/2.1/reference/vcl.html"
96 }