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: Mon, 15 Apr 2019 07:26:34
Message-Id: 1555313178.8cd259b41f293a1619d1923bd9a6107e74c76c2c.idl0r@gentoo
1 commit: 8cd259b41f293a1619d1923bd9a6107e74c76c2c
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 15 07:25:46 2019 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 15 07:26:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd259b4
7
8 net-proxy/haproxy: Version bump
9
10 Package-Manager: Portage-2.3.62, 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.6.ebuild | 171 +++++++++++++++++++++++++++++++++
15 2 files changed, 172 insertions(+)
16
17 diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest
18 index 83f720177b5..76e47b904e9 100644
19 --- a/net-proxy/haproxy/Manifest
20 +++ b/net-proxy/haproxy/Manifest
21 @@ -7,3 +7,4 @@ DIST haproxy-1.8.18.tar.gz 2080500 BLAKE2B fcc51fbe6c496dbf99e49add4b582ec9357c9
22 DIST haproxy-1.8.19.tar.gz 2080757 BLAKE2B 46a97620f3b5c3f205e8b9d6e49acca8e107a1e6918ac18c036b9c3408666348400f8d9f6f4a4103e7f206c6373b25a224536c0969e2dad1013c2320b07b0ced SHA512 f62b0a18f19295986d26c5c60b6b1ad55850a175bed67a359282cc37a4c630a0c2be51d608226b4316f2e69c3008c20a1cb91ce10f86311219355973a050e65b
23 DIST haproxy-1.8.9.tar.gz 2057051 BLAKE2B d81d18f68a27ae8a77660c1ecb1dfc28599263ebfd57f25ea574af2b101b35eb7a1a89ba4034b55dfa89673ae6ac4c0dca5428b4b494a02184b1b157850ce96b SHA512 e59c29af3a39d6212f012ae8341b169436e10e42fadaf8f1aa68d2bb7ee181fd1fe3b74640bfcd8c37c17dfc5062b36bd69d90290d7c59cd3e4648ef2ab1c8dd
24 DIST haproxy-1.9.4.tar.gz 2357935 BLAKE2B 761118da39742eff07e3bc2772a9318a6aaddbeb706e684afa619a11e4a6f1e91f35212b22b58474334621daaec160a4f9183a65698343a4fbb64d9cb38ad049 SHA512 804baeb0493bfaedce59f04a5c7eedd703aec11fbfc9744c6d3f642e3200a5fccbfc92d9da9555a2b266534b9cd5bb81308c57c7627512b951e5a83cb1b24cb0
25 +DIST haproxy-1.9.6.tar.gz 2363063 BLAKE2B b3ccf1b7f9d82144b42f2ee5db7b4367a380d3d8d14145ed097b5329831fb9c9454023c04c3e542d9591e377f5f9c4e0630801414ce44b950b99718a971d88af SHA512 3b823005f02d035435838689ddbf50c4fd9fc14af20450c413526cda7a29eb01ee01f68d6867545ebf966235688eedeeb3d00f5e6011727486d53e881d8e73b6
26
27 diff --git a/net-proxy/haproxy/haproxy-1.9.6.ebuild b/net-proxy/haproxy/haproxy-1.9.6.ebuild
28 new file mode 100644
29 index 00000000000..2212a12930a
30 --- /dev/null
31 +++ b/net-proxy/haproxy/haproxy-1.9.6.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 +}