commit:     80f592cde2ce35b9a8814e5b9a3e00f36d4104df
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 08:10:39 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu May 12 08:23:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f592cd

www-servers/varnish: remove older 4.1 version

Package-Manager: portage-2.2.26

 www-servers/varnish/Manifest             |   1 -
 www-servers/varnish/varnish-4.1.0.ebuild | 105 -------------------------------
 2 files changed, 106 deletions(-)

diff --git a/www-servers/varnish/Manifest b/www-servers/varnish/Manifest
index d4f30ee..6e4c6da 100644
--- a/www-servers/varnish/Manifest
+++ b/www-servers/varnish/Manifest
@@ -1,4 +1,3 @@
 DIST varnish-3.0.7.tar.gz 2102037 SHA256 
a27e9f11391617fab27cc6edc31d3c8681b8d6975f8c2cd07f6e081bc54c24ce SHA512 
5fa9749305eb1a546ef4aae8a1797247fcc9098e1661453b9b87916da9fbc60d76bc0de9542ab17136e3da4b256c8a547aded2b4372dbbb54c44e93eff34a061
 WHIRLPOOL 
00ff6d16603ba4bf42608d55d769048f35c275a8ffa2b6860df6de2571d0481c39019d58d5b843f8a64492a5bf26caf9d841a023826d2fd2771ed8d35447a659
 DIST varnish-4.0.3.tar.gz 1866760 SHA256 
94b9a174097f47db2286acd2c35f235e49a2b7a9ddfdbd6eb7aa4da9ae8f8206 SHA512 
db7bb141afd4617ac95573983dc30591b0eb9bc1af06df1094f2c1eeac539da936afb4a239d2f446d3c3a51b88a781b7f9f6d9a0b2028eaf0e7049ea2159d883
 WHIRLPOOL 
942456e19be427859283959dabe5522667519d36decbc598c8ee1e949767ea7435469393289d4373db6abac5275e50a95fc3799a837dc17740a490b4912bfe6f
-DIST varnish-4.1.0.tar.gz 1990932 SHA256 
4a6ea08e30b62fbf25f884a65f0d8af42e9cc9d25bf70f45ae4417c4f1c99017 SHA512 
b50aaa41247b912b40307423f99ae519ae5e19bea3546b049f148661727887f06b3d27712e685c219ae18cb6d53d89b415ddbd10bada7cfac00b2fd995995f5c
 WHIRLPOOL 
ae462819521b2ad5df29e82a1966190b849eba2c0d9d146cf97c8a0dba325653c24a6c67ed8a154c1cb1cba6a1a25c78bfda6d83deff72ad7756a57725521d92
 DIST varnish-4.1.2.tar.gz 2030846 SHA256 
9728da944d28eb5be90e7ab6799c2c4c831ef4df5e5154537eb7f2e5d5e348c4 SHA512 
28c4e5a3a74bf5294e6d1f7a48cd3ec64faffca89388b7ea9ed3de3cd58bede357383bcdd021ff783a411590c0a0a1cb747981507272352c1521b4fcac35e179
 WHIRLPOOL 
8a1841d44bd6f132306aab6a0c97f839159a38a98f8d72415577fada866cade3f57ba4aae4753f880043b912b73ed6f590e4529d26d669822f532f3b1f578103

diff --git a/www-servers/varnish/varnish-4.1.0.ebuild 
b/www-servers/varnish/varnish-4.1.0.ebuild
deleted file mode 100644
index 24d34d0..0000000
--- a/www-servers/varnish/varnish-4.1.0.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
-
-inherit user autotools-utils eutils systemd python-r1
-
-DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator"
-HOMEPAGE="http://www.varnish-cache.org/";
-SRC_URI="http://repo.varnish-cache.org/source/${P}.tar.gz";
-
-LICENSE="BSD-2 GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
-IUSE="jemalloc jit static-libs"
-
-CDEPEND="
-       || ( dev-libs/libedit sys-libs/readline:= )
-       dev-libs/libpcre[jit?]
-       jemalloc? ( dev-libs/jemalloc )
-       sys-libs/ncurses:="
-
-#varnish compiles stuff at run time
-RDEPEND="
-       ${PYTHON_DEPS}
-       ${CDEPEND}
-       sys-devel/gcc"
-
-DEPEND="
-       ${CDEPEND}
-       dev-python/docutils
-       virtual/pkgconfig"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RESTRICT="test" #315725
-
-DOCS=( README doc/changes.rst )
-
-AUTOTOOLS_AUTORECONF="yes"
-
-pkg_setup() {
-       ebegin "Creating varnish user and group"
-       enewgroup varnish 40
-       enewuser varnish 40 -1 /var/lib/varnish varnish
-       eend $?
-}
-
-src_prepare() {
-       # Remove bundled libjemalloc. We also fix
-       # automagic dep in our patches, bug #461638
-       rm -rf lib/libjemalloc
-
-       autotools-utils_src_prepare
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_enable static-libs static)
-               $(use_enable jit pcre-jit )
-               $(use_with jemalloc)
-       )
-       autotools-utils_src_configure
-}
-
-src_install() {
-       autotools-utils_src_install
-
-       python_replicate_script "${D}/usr/share/varnish/vmodtool.py"
-
-       newinitd "${FILESDIR}"/varnishlog.initd varnishlog
-       newconfd "${FILESDIR}"/varnishlog.confd varnishlog
-
-       newinitd "${FILESDIR}"/varnishncsa.initd-r1 varnishncsa
-       newconfd "${FILESDIR}"/varnishncsa.confd varnishncsa
-
-       newinitd "${FILESDIR}"/varnishd.initd-r3 varnishd
-       newconfd "${FILESDIR}"/varnishd.confd-r3 varnishd
-
-       insinto /etc/logrotate.d/
-       newins "${FILESDIR}/varnishd.logrotate-r2" varnishd
-
-       diropts -m750
-
-       dodir /var/log/varnish/
-
-       systemd_dounit "${FILESDIR}/${PN}d.service"
-
-       insinto /etc/varnish/
-       doins lib/libvmod_std/vmod.vcc
-       doins etc/example.vcl
-
-       fowners root:varnish /etc/varnish/
-       fowners varnish:varnish /var/lib/varnish/
-       fperms 0750 /var/lib/varnish/ /etc/varnish/
-}
-
-pkg_postinst () {
-       elog "No demo-/sample-configfile is included in the distribution.  
Please"
-       elog "read the man-page for more info.  A sample configuration proxying"
-       elog "localhost:8080 for localhost:80 is given in /etc/conf.d/varnishd."
-}

Reply via email to