* [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
@ 2009-07-12 12:04 Thilo Bangert (bangert)
0 siblings, 0 replies; 5+ messages in thread
From: Thilo Bangert (bangert) @ 2009-07-12 12:04 UTC (permalink / raw
To: gentoo-commits
bangert 09/07/12 12:04:06
Modified: ChangeLog
Added: varnish-2.0.4-r1.ebuild
Log:
implement logging (bug #270597) - thanks Joshua Bronson and Tim Taubert
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.25 www-servers/varnish/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 11 Jun 2009 09:50:42 -0000 1.24
+++ ChangeLog 12 Jul 2009 12:04:06 -0000 1.25
@@ -1,6 +1,12 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.24 2009/06/11 09:50:42 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.25 2009/07/12 12:04:06 bangert Exp $
+
+*varnish-2.0.4-r1 (12 Jul 2009)
+
+ 12 Jul 2009; Thilo Bangert <bangert@gentoo.org> +varnish-2.0.4-r1.ebuild,
+ files/varnishd.confd, files/varnishd.initd, +files/varnishd.logrotate:
+ implement logging (bug #270597)
11 Jun 2009; Benedikt Böhm <hollow@gentoo.org>
+files/varnish-2.0.4-virtual-ncsa.patch, varnish-2.0.4.ebuild:
1.1 www-servers/varnish/varnish-2.0.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.1&content-type=text/plain
Index: varnish-2.0.4-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $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 $
EAPI="2"
inherit autotools
DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator."
HOMEPAGE="http://varnish.projects.linpro.no/"
SRC_URI="mirror://sourceforge/varnish/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
#varnish compiles stuff at run time
RDEPEND="sys-devel/gcc"
src_prepare() {
epatch "${FILESDIR}"/${P}-link-order.patch
epatch "${FILESDIR}"/${P}-virtual-ncsa.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newinitd "${FILESDIR}"/varnishd.initd varnishd || die
newconfd "${FILESDIR}"/varnishd.confd varnishd || die
insinto /etc/logrotate.d
newins "${FILESDIR}/varnishd.logrotate" varnishd
dodir /var/log/varnish
}
pkg_postinst () {
elog "No demo-/sample-configfile is included in the distribution -"
elog "please read the man-page for more info."
elog "A sample (localhost:8080 -> localhost:80) for gentoo is given in"
elog " /etc/conf.d/varnishd"
echo
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
@ 2009-08-30 6:28 Benedikt Boehm (hollow)
0 siblings, 0 replies; 5+ messages in thread
From: Benedikt Boehm (hollow) @ 2009-08-30 6:28 UTC (permalink / raw
To: gentoo-commits
hollow 09/08/30 06:28:07
Modified: ChangeLog varnish-2.0.4-r1.ebuild
Log:
make HTTP_HDR_MAX_VAL configurable in case broken webapps set more than 32 headers; only start varnishncsa logging if desired
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.26 www-servers/varnish/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 12 Jul 2009 12:04:06 -0000 1.25
+++ ChangeLog 30 Aug 2009 06:28:07 -0000 1.26
@@ -1,6 +1,11 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.25 2009/07/12 12:04:06 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.26 2009/08/30 06:28:07 hollow Exp $
+
+ 30 Aug 2009; Benedikt Böhm <hollow@gentoo.org> varnish-2.0.4-r1.ebuild,
+ files/varnishd.initd:
+ make HTTP_HDR_MAX_VAL configurable in case broken webapps set more than 32
+ headers; only start varnishncsa logging if desired
*varnish-2.0.4-r1 (12 Jul 2009)
1.2 www-servers/varnish/varnish-2.0.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.2&view=markup
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
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?r1=1.1&r2=1.2
Index: varnish-2.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- varnish-2.0.4-r1.ebuild 12 Jul 2009 12:04:06 -0000 1.1
+++ varnish-2.0.4-r1.ebuild 30 Aug 2009 06:28:07 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $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 $
EAPI="2"
@@ -17,9 +17,13 @@
#varnish compiles stuff at run time
RDEPEND="sys-devel/gcc"
+HTTP_HDR_MAX_VAL=${HTTP_HDR_MAX_VAL:-32}
+
src_prepare() {
epatch "${FILESDIR}"/${P}-link-order.patch
epatch "${FILESDIR}"/${P}-virtual-ncsa.patch
+ sed -e "s/#define HTTP_HDR_MAX_VAL .*/#define HTTP_HDR_MAX_VAL ${HTTP_HDR_MAX_VAL}/" \
+ -i bin/varnishd/cache.h
eautoreconf
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
@ 2009-10-06 20:38 Christian Faulhammer (fauli)
0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-10-06 20:38 UTC (permalink / raw
To: gentoo-commits
fauli 09/10/06 20:38:45
Modified: ChangeLog varnish-2.0.4-r1.ebuild
Log:
stable x86, bug 283211
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.27 www-servers/varnish/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.26&r2=1.27
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog 30 Aug 2009 06:28:07 -0000 1.26
+++ ChangeLog 6 Oct 2009 20:38:44 -0000 1.27
@@ -1,6 +1,10 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.26 2009/08/30 06:28:07 hollow Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.27 2009/10/06 20:38:44 fauli Exp $
+
+ 06 Oct 2009; Christian Faulhammer <fauli@gentoo.org>
+ varnish-2.0.4-r1.ebuild:
+ stable x86, bug 283211
30 Aug 2009; Benedikt Böhm <hollow@gentoo.org> varnish-2.0.4-r1.ebuild,
files/varnishd.initd:
1.3 www-servers/varnish/varnish-2.0.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?r1=1.2&r2=1.3
Index: varnish-2.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- varnish-2.0.4-r1.ebuild 30 Aug 2009 06:28:07 -0000 1.2
+++ varnish-2.0.4-r1.ebuild 6 Oct 2009 20:38:44 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.3 2009/10/06 20:38:44 fauli Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE=""
#varnish compiles stuff at run time
RDEPEND="sys-devel/gcc"
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
@ 2009-10-07 13:10 Benedikt Boehm (hollow)
0 siblings, 0 replies; 5+ messages in thread
From: Benedikt Boehm (hollow) @ 2009-10-07 13:10 UTC (permalink / raw
To: gentoo-commits
hollow 09/10/07 13:10:34
Modified: ChangeLog varnish-2.0.4-r1.ebuild
Log:
stable on amd64
(Portage version: 2.2_rc40/cvs/Linux i686)
Revision Changes Path
1.28 www-servers/varnish/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 6 Oct 2009 20:38:44 -0000 1.27
+++ ChangeLog 7 Oct 2009 13:10:34 -0000 1.28
@@ -1,6 +1,9 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.27 2009/10/06 20:38:44 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.28 2009/10/07 13:10:34 hollow Exp $
+
+ 07 Oct 2009; Benedikt Böhm <hollow@gentoo.org> varnish-2.0.4-r1.ebuild:
+ stable on amd64
06 Oct 2009; Christian Faulhammer <fauli@gentoo.org>
varnish-2.0.4-r1.ebuild:
1.4 www-servers/varnish/varnish-2.0.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild?r1=1.3&r2=1.4
Index: varnish-2.0.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- varnish-2.0.4-r1.ebuild 6 Oct 2009 20:38:44 -0000 1.3
+++ varnish-2.0.4-r1.ebuild 7 Oct 2009 13:10:34 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.3 2009/10/06 20:38:44 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.4 2009/10/07 13:10:34 hollow Exp $
EAPI="2"
@@ -12,7 +12,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE=""
#varnish compiles stuff at run time
RDEPEND="sys-devel/gcc"
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild
@ 2013-03-14 12:38 Anthony G. Basile (blueness)
0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-03-14 12:38 UTC (permalink / raw
To: gentoo-commits
blueness 13/03/14 12:38:43
Modified: ChangeLog
Removed: varnish-2.0.4-r1.ebuild
Log:
Remove older stable
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.55 www-servers/varnish/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 14 Mar 2013 12:18:17 -0000 1.54
+++ ChangeLog 14 Mar 2013 12:38:43 -0000 1.55
@@ -1,6 +1,13 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.54 2013/03/14 12:18:17 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.55 2013/03/14 12:38:43 blueness Exp $
+
+ 14 Mar 2013; Anthony G. Basile <blueness@gentoo.org>
+ -files/varnish-2.0.4-link-order.patch,
+ -files/varnish-2.0.4-virtual-ncsa.patch,
+ -files/varnish-2.1.4-find-rst2man.py.patch,
+ -files/varnish-2.1.4-virtual-ncsa.patch, -varnish-2.0.4-r1.ebuild:
+ Remove older stable
14 Mar 2013; Anthony G. Basile <blueness@gentoo.org> files/varnishd.confd,
files/varnishd.initd:
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-03-14 12:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-12 12:04 [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-2.0.4-r1.ebuild Thilo Bangert (bangert)
-- strict thread matches above, loose matches on Subject: below --
2009-08-30 6:28 Benedikt Boehm (hollow)
2009-10-06 20:38 Christian Faulhammer (fauli)
2009-10-07 13:10 Benedikt Boehm (hollow)
2013-03-14 12:38 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox