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