Gentoo Archives: gentoo-commits

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