Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/varnish/
Date: Wed, 15 Feb 2017 15:12:40
Message-Id: 1487171549.9293d03773e521e72c2576718b0daec45db03a28.blueness@gentoo
1 commit: 9293d03773e521e72c2576718b0daec45db03a28
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 15 15:12:12 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 15:12:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9293d037
7
8 www-servers/varnish: version bump to 4.1.5
9
10 Package-Manager: portage-2.3.3
11
12 www-servers/varnish/Manifest | 1 +
13 www-servers/varnish/varnish-4.1.5.ebuild | 102 +++++++++++++++++++++++++++++++
14 2 files changed, 103 insertions(+)
15
16 diff --git a/www-servers/varnish/Manifest b/www-servers/varnish/Manifest
17 index 5ecf250095..70f2c47a71 100644
18 --- a/www-servers/varnish/Manifest
19 +++ b/www-servers/varnish/Manifest
20 @@ -1,3 +1,4 @@
21 DIST varnish-4.0.3.tar.gz 1866760 SHA256 94b9a174097f47db2286acd2c35f235e49a2b7a9ddfdbd6eb7aa4da9ae8f8206 SHA512 db7bb141afd4617ac95573983dc30591b0eb9bc1af06df1094f2c1eeac539da936afb4a239d2f446d3c3a51b88a781b7f9f6d9a0b2028eaf0e7049ea2159d883 WHIRLPOOL 942456e19be427859283959dabe5522667519d36decbc598c8ee1e949767ea7435469393289d4373db6abac5275e50a95fc3799a837dc17740a490b4912bfe6f
22 DIST varnish-4.1.3.tar.gz 2134205 SHA256 9f9469b9fda2a578da2a9d282c71c34eeb5c42eda7f8d8728284d92282108429 SHA512 9ba0b2490bfa6f068d6777b4e8f1afcd823a3d6bf8e18ad0274cc9aff7733cd65df0e2ed9f2c6a3d3261d19438cc3254c89b0e41508d2cac2f17bdfd8119e4f1 WHIRLPOOL 6440932735c66fc8e7c8bf0ca577f84d93ed45a5e3cc09074c8471cdb6937f731219dfdf2eaaa43b32aefda8511aec10289c8f6f0596c4ce0f88829b3240a299
23 DIST varnish-4.1.4.tar.gz 2196408 SHA256 44fdeb66fb27af9c18fde6123ef7b0038d6d263c7999a02a780ce4ea1a3965fc SHA512 448f417029486ce7f860a82bdfb45dc87e864c78c2389ee7a1f420fd5307aaa8464169125044f6efd1e6ebeea447ef97ddf724b674a0ee8c2e04d1c098926f2b WHIRLPOOL 386325467f842d62c0f2a8dfb95d082fddc5c4607c4da0fe0343105cf2b437c9d1ee4272e76e20f376e7caba132923f039767098219e344eaf586ef9b9acd5e2
24 +DIST varnish-4.1.5.tar.gz 2199183 SHA256 b52d4d05dd3c571c5538f2d821b237ec029691aebbc35918311ede256404feb3 SHA512 8d54a59afbc9f485b313d2e036dcc8d874ec279e1dd2aab9daf2a169e169d15c98ff71307d44c6beb43968dcd7d69b9501486ea3b138c27d084bc4b16ed10d24 WHIRLPOOL bc2e5f2d7fab56db2a7cda961be557bf0487bc5ec28f5f5274edbf49eaf615234f35d8ee7a83251f1c49b8dd4241758b0ae24e13c7fb28c4c7a11c01553c67ae
25
26 diff --git a/www-servers/varnish/varnish-4.1.5.ebuild b/www-servers/varnish/varnish-4.1.5.ebuild
27 new file mode 100644
28 index 0000000000..f96826ec68
29 --- /dev/null
30 +++ b/www-servers/varnish/varnish-4.1.5.ebuild
31 @@ -0,0 +1,102 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI="5"
37 +
38 +PYTHON_COMPAT=( python{2_7,3_4} pypy )
39 +
40 +inherit user autotools-utils eutils systemd python-r1
41 +
42 +DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator"
43 +HOMEPAGE="http://www.varnish-cache.org/"
44 +SRC_URI="http://repo.varnish-cache.org/source/${P}.tar.gz"
45 +
46 +LICENSE="BSD-2 GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
49 +IUSE="jemalloc jit static-libs"
50 +
51 +CDEPEND="
52 + sys-libs/readline:0=
53 + dev-libs/libpcre[jit?]
54 + jemalloc? ( dev-libs/jemalloc )
55 + sys-libs/ncurses:0="
56 +
57 +#varnish compiles stuff at run time
58 +RDEPEND="
59 + ${PYTHON_DEPS}
60 + ${CDEPEND}
61 + sys-devel/gcc"
62 +
63 +DEPEND="
64 + ${CDEPEND}
65 + dev-python/docutils
66 + virtual/pkgconfig"
67 +
68 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
69 +
70 +RESTRICT="test" #315725
71 +
72 +DOCS=( README.rst doc/changes.rst )
73 +
74 +AUTOTOOLS_AUTORECONF="yes"
75 +
76 +pkg_setup() {
77 + ebegin "Creating varnish user and group"
78 + enewgroup varnish
79 + enewuser varnish -1 -1 /var/lib/varnish varnish
80 + eend $?
81 +}
82 +
83 +src_prepare() {
84 + # Remove bundled libjemalloc. We also fix
85 + # automagic dep in our patches, bug #461638
86 + rm -rf lib/libjemalloc
87 +
88 + # Remove -Werror bug #528354
89 + sed -i -e 's/-Werror\([^=]\)/\1/g' configure.ac
90 +
91 + autotools-utils_src_prepare
92 +}
93 +
94 +src_configure() {
95 + local myeconfargs=(
96 + $(use_enable static-libs static)
97 + $(use_enable jit pcre-jit )
98 + $(use_with jemalloc)
99 + )
100 + autotools-utils_src_configure
101 +}
102 +
103 +src_install() {
104 + autotools-utils_src_install
105 +
106 + python_replicate_script "${D}/usr/share/varnish/vmodtool.py"
107 +
108 + newinitd "${FILESDIR}"/varnishlog.initd varnishlog
109 + newconfd "${FILESDIR}"/varnishlog.confd varnishlog
110 +
111 + newinitd "${FILESDIR}"/varnishncsa.initd varnishncsa
112 + newconfd "${FILESDIR}"/varnishncsa.confd varnishncsa
113 +
114 + newinitd "${FILESDIR}"/varnishd.initd-r4 varnishd
115 + newconfd "${FILESDIR}"/varnishd.confd-r4 varnishd
116 +
117 + insinto /etc/logrotate.d/
118 + newins "${FILESDIR}/varnishd.logrotate-r2" varnishd
119 +
120 + diropts -m750
121 +
122 + dodir /var/log/varnish/
123 +
124 + systemd_dounit "${FILESDIR}/${PN}d.service"
125 +
126 + insinto /etc/varnish/
127 + doins lib/libvmod_std/vmod.vcc
128 + doins etc/example.vcl
129 +
130 + fowners root:varnish /etc/varnish/
131 + fowners varnish:varnish /var/lib/varnish/
132 + fperms 0750 /var/lib/varnish/ /etc/varnish/
133 +}