Gentoo Archives: gentoo-commits

From: Christian Ruppert <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/
Date: Tue, 29 Jan 2019 08:47:49
Message-Id: 1548751643.aa85f445f6c8916f0875717647a3f65920e4b318.idl0r@gentoo
1 commit: aa85f445f6c8916f0875717647a3f65920e4b318
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 29 08:47:15 2019 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 29 08:47:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa85f445
7
8 net-proxy/haproxy: Version bump
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Christian Ruppert <idl0r <AT> gentoo.org>
12
13 net-proxy/haproxy/Manifest | 1 +
14 net-proxy/haproxy/haproxy-1.9.3.ebuild | 171 +++++++++++++++++++++++++++++++++
15 2 files changed, 172 insertions(+)
16
17 diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest
18 index 1c0b0271536..9fa05aff503 100644
19 --- a/net-proxy/haproxy/Manifest
20 +++ b/net-proxy/haproxy/Manifest
21 @@ -7,3 +7,4 @@ DIST haproxy-1.8.17.tar.gz 2077525 BLAKE2B b4419d541a82399995df448410a8756301ad5
22 DIST haproxy-1.8.8.tar.gz 2054534 BLAKE2B 5eabd37dfb79783dc20425cbb16ca1e1afed23861f66c9e8a738dd56d9ca35b3ceb2604c308543ca99222aa867e11ff613fc09012669882a4bdaaff03cb76450 SHA512 8310f84b364348600273c295a3b315a79cba1f782b86b47d8d47b3ffd1e6fb62fd278c4f2dfa185d0a269f73c1067695a763733736877989a941162b625462a1
23 DIST haproxy-1.8.9.tar.gz 2057051 BLAKE2B d81d18f68a27ae8a77660c1ecb1dfc28599263ebfd57f25ea574af2b101b35eb7a1a89ba4034b55dfa89673ae6ac4c0dca5428b4b494a02184b1b157850ce96b SHA512 e59c29af3a39d6212f012ae8341b169436e10e42fadaf8f1aa68d2bb7ee181fd1fe3b74640bfcd8c37c17dfc5062b36bd69d90290d7c59cd3e4648ef2ab1c8dd
24 DIST haproxy-1.9.2.tar.gz 2350356 BLAKE2B ba147007999d65d214545e5c20567aaa3db67a292eb0df1e1e4aaaeeb7e1c90f593725b112cd222537346cec45b557a2a99e30ef5d4a91bb4b5804212b765121 SHA512 42ad5048c85ac9fdc7ba1b00917508255ffb66f63df1c24382beba6f77765d786b0ab16ddafe5e290f81ea07bd15c63277b5749c4bafab0721e57f837b1bebf8
25 +DIST haproxy-1.9.3.tar.gz 2353387 BLAKE2B c3b5d7c4dba4a2557dfbee857e8e2a7ab6d142423788c7cabf96c3d0a0dc4a2dde857db47b0036eac7288249d8416eba8252f0c08290739862457214497e3438 SHA512 5ece759d460d6daba8ed82039fb24037c2b8b36f7ce0f9c9a703ca049ac0d03807ba673b61ae2d74a9e7253b6fb1ca82c504734456c7fb0fec322b67e59ba835
26
27 diff --git a/net-proxy/haproxy/haproxy-1.9.3.ebuild b/net-proxy/haproxy/haproxy-1.9.3.ebuild
28 new file mode 100644
29 index 00000000000..2212a12930a
30 --- /dev/null
31 +++ b/net-proxy/haproxy/haproxy-1.9.3.ebuild
32 @@ -0,0 +1,171 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
37 +
38 +[[ ${PV} == *9999 ]] && SCM="git-r3"
39 +inherit user versionator toolchain-funcs flag-o-matic systemd linux-info $SCM
40 +
41 +MY_P="${PN}-${PV/_beta/-dev}"
42 +
43 +DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments"
44 +HOMEPAGE="http://www.haproxy.org"
45 +if [[ ${PV} != *9999 ]]; then
46 + SRC_URI="http://haproxy.1wt.eu/download/$(get_version_component_range 1-2)/src/${MY_P}.tar.gz"
47 + KEYWORDS="~amd64 ~arm ~ppc ~x86"
48 +else
49 + EGIT_REPO_URI="http://git.haproxy.org/git/haproxy-$(get_version_component_range 1-2).git/"
50 + EGIT_BRANCH=master
51 +fi
52 +
53 +LICENSE="GPL-2 LGPL-2.1"
54 +SLOT="0"
55 +IUSE="+crypt doc examples libressl slz net_ns +pcre pcre-jit pcre2 pcre2-jit ssl
56 +systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
57 +REQUIRED_USE="pcre-jit? ( pcre )
58 + pcre2-jit? ( pcre2 )
59 + pcre? ( !pcre2 )
60 + device-atlas? ( pcre )
61 + ?? ( slz zlib )"
62 +
63 +DEPEND="
64 + pcre? (
65 + dev-libs/libpcre
66 + pcre-jit? ( dev-libs/libpcre[jit] )
67 + )
68 + pcre2? (
69 + dev-libs/libpcre
70 + pcre2-jit? ( dev-libs/libpcre2[jit] )
71 + )
72 + ssl? (
73 + !libressl? ( dev-libs/openssl:0=[zlib?] )
74 + libressl? ( dev-libs/libressl:0= )
75 + )
76 + slz? ( dev-libs/libslz:= )
77 + zlib? ( sys-libs/zlib )
78 + lua? ( dev-lang/lua:5.3 )
79 + device-atlas? ( dev-libs/device-atlas-api-c )"
80 +RDEPEND="${DEPEND}"
81 +
82 +S="${WORKDIR}/${MY_P}"
83 +
84 +DOCS=( CHANGELOG CONTRIBUTING MAINTAINERS README )
85 +CONTRIBS=( halog iprange )
86 +# ip6range is present in 1.6, but broken.
87 +version_is_at_least 1.7.0 $PV && CONTRIBS+=( ip6range spoa_example tcploop )
88 +# TODO: mod_defender - requires apache / APR, modsecurity - the same
89 +version_is_at_least 1.8.0 $PV && CONTRIBS+=( hpack )
90 +
91 +haproxy_use() {
92 + (( $# != 2 )) && die "${FUNCNAME} <USE flag> <make option>"
93 +
94 + usex "${1}" "USE_${2}=1" "USE_${2}="
95 +}
96 +
97 +pkg_setup() {
98 + enewgroup haproxy
99 + enewuser haproxy -1 -1 -1 haproxy
100 +
101 + if use net_ns; then
102 + CONFIG_CHECK="~NET_NS"
103 + linux-info_pkg_setup
104 + fi
105 +}
106 +
107 +src_compile() {
108 + local -a args=(
109 + V=1
110 + TARGET=linux2628
111 + USE_GETADDRINFO=1
112 + USE_TFO=1
113 + )
114 +
115 + # TODO: PCRE2_WIDTH?
116 + args+=( $(haproxy_use threads THREAD) )
117 + args+=( $(haproxy_use crypt LIBCRYPT) )
118 + args+=( $(haproxy_use net_ns NS) )
119 + args+=( $(haproxy_use pcre PCRE) )
120 + args+=( $(haproxy_use pcre-jit PCRE_JIT) )
121 + args+=( $(haproxy_use ssl OPENSSL) )
122 + args+=( $(haproxy_use slz SLZ) )
123 + args+=( $(haproxy_use zlib ZLIB) )
124 + args+=( $(haproxy_use lua LUA) )
125 + args+=( $(haproxy_use 51degrees 51DEGREES) )
126 + args+=( $(haproxy_use device-atlas DEVICEATLAS) )
127 + args+=( $(haproxy_use wurfl WURFL) )
128 + args+=( $(haproxy_use systemd SYSTEMD) )
129 +
130 + # For now, until the strict-aliasing breakage will be fixed
131 + append-cflags -fno-strict-aliasing
132 +
133 + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC=$(tc-getCC) ${args[@]}
134 + emake -C contrib/systemd SBINDIR=/usr/sbin
135 +
136 + if use tools ; then
137 + for contrib in ${CONTRIBS[@]} ; do
138 + # Those two includes are a workaround for hpack Makefile missing those
139 + emake -C contrib/${contrib} \
140 + CFLAGS="${CFLAGS} -I../../include/ -I../../ebtree/" OPTIMIZE="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC=$(tc-getCC) ${args[@]}
141 + done
142 + fi
143 +}
144 +
145 +src_install() {
146 + dosbin haproxy
147 + dosym ../sbin/haproxy /usr/bin/haproxy
148 +
149 + newconfd "${FILESDIR}/${PN}.confd" $PN
150 + newinitd "${FILESDIR}/${PN}.initd-r6" $PN
151 +
152 + doman doc/haproxy.1
153 +
154 + systemd_dounit contrib/systemd/haproxy.service
155 +
156 + einstalldocs
157 +
158 + # The errorfiles are used by upstream defaults.
159 + insinto /etc/haproxy/errors/
160 + doins examples/errorfiles/*
161 +
162 + if use doc; then
163 + dodoc ROADMAP doc/*.txt
164 + #if use lua; then
165 + # TODO: doc/lua-api/
166 + #fi
167 + fi
168 +
169 + if use tools ; then
170 + has halog "${CONTRIBS[@]}" && dobin contrib/halog/halog
171 + has "iprange" "${CONTRIBS[@]}" && newbin contrib/iprange/iprange haproxy_iprange
172 + has "ip6range" "${CONTRIBS[@]}" && newbin contrib/ip6range/ip6range haproxy_ip6range
173 + has "spoa_example" "${CONTRIBS[@]}" && newbin contrib/spoa_example/spoa haproxy_spoa_example
174 + has "spoa_example" "${CONTRIBS[@]}" && newdoc contrib/spoa_example/README README.spoa_example
175 + has "tcploop" "${CONTRIBS[@]}" && newbin contrib/tcploop/tcploop haproxy_tcploop
176 + has "hpack" "${CONTRIBS[@]}" && newbin contrib/hpack/gen-rht haproxy_hpack
177 + fi
178 +
179 + if use examples ; then
180 + docinto examples
181 + dodoc examples/*.cfg
182 + dodoc examples/seamless_reload.txt
183 + fi
184 +
185 + if use vim-syntax ; then
186 + insinto /usr/share/vim/vimfiles/syntax
187 + doins examples/haproxy.vim
188 + fi
189 +}
190 +
191 +pkg_postinst() {
192 + if [[ ! -f "${EROOT}/etc/haproxy/haproxy.cfg" ]] ; then
193 + ewarn "You need to create /etc/haproxy/haproxy.cfg before you start the haproxy service."
194 + ewarn "It's best practice to not run haproxy as root, user and group haproxy was therefore created."
195 + ewarn "Make use of them with the \"user\" and \"group\" directives."
196 +
197 + if [[ -d "${EROOT}/usr/share/doc/${PF}" ]]; then
198 + einfo "Please consult the installed documentation for learning the configuration file's syntax."
199 + einfo "The documentation and sample configuration files are installed here:"
200 + einfo " ${EROOT}usr/share/doc/${PF}"
201 + fi
202 + fi
203 +}