@@ -0,0 +1,941 @@
+--- varnish-2.0.1.orig/debian/libvarnish-dev.dirs
++++ varnish-2.0.1/debian/libvarnish-dev.dirs
+@@ -0,0 +1 @@
++usr/lib
+--- varnish-2.0.1.orig/debian/varnish.init
++++ varnish-2.0.1/debian/varnish.init
+@@ -0,0 +1,80 @@
++#! /bin/sh
++
++### BEGIN INIT INFO
++# Provides: varnish
++# Required-Start: $local_fs $remote_fs $network
++# Required-Stop: $local_fs $remote_fs $network
++# Default-Start: 2 3 4 5
++# Default-Stop: 0 1 6
++# Short-Description: Start HTTP accelerator
++# Description: This script provides a server-side cache
++# to be run in front of a httpd and should
++# listen on port 80 on a properly configured
++# system
++### END INIT INFO
++
++# Source function library
++. /lib/lsb/init-functions
++
++NAME=varnishd
++DESC="HTTP accelerator"
++PATH=/sbin:/bin:/usr/sbin:/usr/bin
++DAEMON=/usr/sbin/varnishd
++PIDFILE=/var/run/$NAME.pid
++
++test -x $DAEMON || exit 0
++
++# Include varnish defaults if available
++if [ -f /etc/default/varnish ] ; then
++ . /etc/default/varnish
++fi
++
++# Open files (usually 1024, which is way too small for varnish)
++ulimit -n ${NFILES:-131072}
++
++# Maxiumum locked memory size for shared memory log
++ulimit -l ${MEMLOCK:-82000}
++
++# If $DAEMON_OPTS is not set at all in /etc/default/varnish, use minimal useful
++# defaults (Backend at localhost:8080, a common place to put a locally
++# installed application server.)
++DAEMON_OPTS=${DAEMON_OPTS:--b localhost}
++
++case "$1" in
++ start)
++ output=$(/bin/tempfile -s.varnish)
++ log_daemon_msg "Starting $DESC"
++ log_progress_msg $NAME
++ if start-stop-daemon \
++ --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON} -- \
++ -P ${PIDFILE} ${DAEMON_OPTS} > ${output} 2>&1; then
++ log_end_msg 0
++ else
++ log_end_msg 1
++ cat $output
++ exit 1
++ fi
++ rm $output
++ ;;
++ stop)
++ log_daemon_msg "Stopping $DESC"
++ log_progress_msg $NAME
++ if start-stop-daemon \
++ --stop --quiet --pidfile $PIDFILE --retry 10 \
++ --exec $DAEMON; then
++ log_end_msg 0
++ else
++ log_end_msg 1
++ fi
++ ;;
++ restart|force-reload)
++ $0 stop
++ $0 start
++ ;;
++ *)
++ log_success_msg "Usage: $0 {start|stop|restart|force-reload}"
++ exit 1
++ ;;
++esac
++
++exit 0
+--- varnish-2.0.1.orig/debian/varnish.varnishncsa.default
++++ varnish-2.0.1/debian/varnish.varnishncsa.default
+@@ -0,0 +1,8 @@
++# Configuration file for varnishncsa
++#
++# Uncomment this to enable logging for varnish. Please make sure you have
++# enough disk space for significant amounts of log data. To disable logging,
++# set the variable to "0", "no", or leave it unset.
++#
++# NCSA log format, to be used by HTTP log analyzers
++# VARNISHNCSA_ENABLED=1
+--- varnish-2.0.1.orig/debian/varnish.dirs
++++ varnish-2.0.1/debian/varnish.dirs
+@@ -0,0 +1,7 @@
++etc/varnish
++etc/logrotate.d
++usr/bin
++usr/sbin
++var/log
++var/log/varnish
++var/lib/varnish
+--- varnish-2.0.1.orig/debian/varnish.logrotate
++++ varnish-2.0.1/debian/varnish.logrotate
+@@ -0,0 +1,15 @@
++/var/log/varnish/varnish.log /var/log/varnish/varnishncsa.log {
++ daily
++ rotate 7
++ missingok
++ compress
++ delaycompress
++ missingok
++ postrotate
++ for service in varnishlog varnishncsa; do
++ if /usr/bin/pgrep -P 1 $service >/dev/null; then
++ /usr/sbin/invoke-rc.d $service reload > /dev/null
++ fi
++ done
++ endscript
++}
+--- varnish-2.0.1.orig/debian/Makefile.am
++++ varnish-2.0.1/debian/Makefile.am
+@@ -0,0 +1,25 @@
++# $Id: Makefile.am 2173 2007-10-28 18:43:24Z des $
++
++EXTRA_DIST = \
++ README.Debian \
++ changelog \
++ compat \
++ control \
++ copyright \
++ libvarnish0-dev.dirs \
++ libvarnish0-dev.install \
++ libvarnish0.dirs \
++ libvarnish0.install \
++ lintian-override \
++ rules \
++ varnish.default \
++ varnish.dirs \
++ varnish.examples \
++ varnish.init \
++ varnish.install \
++ varnish.logrotate \
++ varnish.manpages \
++ varnish.postinst \
++ varnish.postrm \
++ varnish.varnishlog.init \
++ watch
+--- varnish-2.0.1.orig/debian/varnish.varnishlog.default
++++ varnish-2.0.1/debian/varnish.varnishlog.default
+@@ -0,0 +1,8 @@
++# Configuration file for varnishlog
++#
++# Uncomment this to enable logging for varnish. Please make sure you have
++# enough disk space for significant amounts of log data. To disable logging,
++# set the variable to "0", "no", or leave it unset.
++#
++# Varnish log format, to be used by "varnishlog" or "varnishncsa"
++# VARNISHLOG_ENABLED=1
+--- varnish-2.0.1.orig/debian/copyright
++++ varnish-2.0.1/debian/copyright
+@@ -0,0 +1,43 @@
++This package was debianized by Lars Bahner <bahner@debian.org> on
++Fri, 6 Oct 2006 16:26:57 +0200.
++
++It was pulled from the Subversion repository with
++svn co http://varnish.projects.linpro.no/svn/trunk
++
++Debianizations are an integral part of the main source for varnish,
++so the change for Debian are made before publication of releases,
++and are as such checked.
++
++Files are downloadable from the following URL
++http://sourceforge.net/project/showfiles.php?group_id=155816
++
++Copyright: 2006 Verdens Gang AS
++ 2006 Linpro AS
++All rights reserved.
++
++License:
++
++Redistribution and use in source and binary forms, with or without
++modification, are permitted provided that the following conditions
++are met:
++1. Redistributions of source code must retain the above copyright
++ notice, this list of conditions and the following disclaimer.
++2. Redistributions in binary form must reproduce the above copyright
++ notice, this list of conditions and the following disclaimer in the
++ documentation and/or other materials provided with the distribution.
++
++THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
++ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
++IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
@@ -0,0 +1,32 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+Format: 1.0
+Source: varnish
+Binary: varnish, libvarnish1, libvarnish-dev
+Architecture: any
+Version: 2.0.1-1
+Maintainer: Stig Sandbeck Mathisen <ssm@debian.org>
+Uploaders: Lars Bahner <bahner@debian.org>, Fabio Tranchitella <kobold@debian.org>
+Homepage: http://varnish.projects.linpro.no/
+Standards-Version: 3.8.0
+Vcs-Browser: http://varnish.projects.linpro.no/browser/trunk/varnish-cache
+Vcs-Svn: http://varnish.projects.linpro.no/svn/trunk/varnish-cache
+Build-Depends: debhelper (>= 5), autotools-dev, automake1.9, libtool, autoconf, libncurses-dev, xsltproc, groff-base
+Checksums-Sha1:
+ 676f2acfa4a4658920d0361d8c5b5892a83f885a 374674 varnish_2.0.1.orig.tar.gz
+ e2d292bf21762618d271b18602195ace7569084a 8224 varnish_2.0.1-1.diff.gz
+Checksums-Sha256:
+ 1f9e4ef99f9099063ed909cff070433d54b0314f0b24ad55d1e309297d0885a4 374674 varnish_2.0.1.orig.tar.gz
+ b80067a1ecbf53d9ca3599f3d5a25b3d69b9b47c7f9a5fccc06e9aa738a34e4b 8224 varnish_2.0.1-1.diff.gz
+Files:
+ 6d6ffd553959e844eef9a571f648ea10 374674 varnish_2.0.1.orig.tar.gz
+ 624ae0288c0aef004b3d5990b943c211 8224 varnish_2.0.1-1.diff.gz
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (GNU/Linux)
+
+iEYEARECAAYFAkj45voACgkQQONU2fom4u6I3QCfcSNOPiCejPFrfzyngT/dRSMk
+npkAniG8MplTilvYpRq3X6bu1sv42Gq6
+=yMH4
+-----END PGP SIGNATURE-----
|