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, 22 Aug 2022 08:50:58
Message-Id: 1661158251.7bb99b4807c3e1826ba15ccb8cc56ca6ce506c03.idl0r@gentoo
1 commit: 7bb99b4807c3e1826ba15ccb8cc56ca6ce506c03
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 22 08:50:28 2022 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 08:50:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb99b48
7
8 net-proxy/haproxy: Bump to 2.6.3
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Christian Ruppert <idl0r <AT> gentoo.org>
12
13 net-proxy/haproxy/Manifest | 1 +
14 net-proxy/haproxy/haproxy-2.6.3.ebuild | 177 +++++++++++++++++++++++++++++++++
15 2 files changed, 178 insertions(+)
16
17 diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest
18 index 262b0af3957a..59031c6e2903 100644
19 --- a/net-proxy/haproxy/Manifest
20 +++ b/net-proxy/haproxy/Manifest
21 @@ -9,3 +9,4 @@ DIST haproxy-2.5.4.tar.gz 3819082 BLAKE2B fabc62ebaa968a11a49a6dd131198af31a49ad
22 DIST haproxy-2.5.7.tar.gz 3832801 BLAKE2B 6d54135b56f84129dea497ddc935fecf593abccfb21fc647c7d166f9c1aa4abc670c66bf13e0923e353627d83d47345f632ae8212672c3b3da7a757fd5d24d7c SHA512 cf6994508d559401a84e1304c2b6829952a9b3a14365d03436da42ec7e4553c201ffde9e524044dfa48813e8e614d24095a87b0fae7d9145ce5e66b953666ee9
23 DIST haproxy-2.5.8.tar.gz 3838130 BLAKE2B fd02c285682815fd1837190b80184e110bb6a37b99dfa30e6cece628e62af6a5a145d97f5849e64364a286593d0ea206506c0b474485b22018a816b899744710 SHA512 99a49556864b178c024e73e5bd45051a7a6e512bbb52906ba6f3888e22a83e2b91198ed1c6a3bcbbc44c474a9ba6a6373fae4216fac8ecdb5d724f281b00fd68
24 DIST haproxy-2.6.2.tar.gz 3978933 BLAKE2B 8d080b175f574718fac6c58b9681a50d40d8ea4a562a05466668ee9ebe95c065aaa3eab33115c69cca356207f91927c2b949c0ec7d354fdad413ae91a41e60cd SHA512 8eef882145ce8da409d2fbd6fa5b7d383b9d52f8147ef697d61c512c07a8aa8029ae742b5682af5fe736c34398a5265ce9dc189e938f47395cf9e775471b5f55
25 +DIST haproxy-2.6.3.tar.gz 3986611 BLAKE2B 812046689ea032e2dffac39e48b9ed642f2758e4b9b70f1d57abdd1b6e685bc9d96d282bb208f125f8153b9d8bc3e771b7d0318952aa301c7ce456753ee61997 SHA512 4698d1119026e6f4c628422a87fb2db438d426399ea7743830a14518e75f3e3252830f67bea64903c560912b459605d569142fcac68aa08f12745d4d6cbc26af
26
27 diff --git a/net-proxy/haproxy/haproxy-2.6.3.ebuild b/net-proxy/haproxy/haproxy-2.6.3.ebuild
28 new file mode 100644
29 index 000000000000..6e17e38ddf96
30 --- /dev/null
31 +++ b/net-proxy/haproxy/haproxy-2.6.3.ebuild
32 @@ -0,0 +1,177 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +
38 +LUA_COMPAT=( lua5-4 lua5-3 )
39 +
40 +[[ ${PV} == *9999 ]] && SCM="git-r3"
41 +inherit toolchain-funcs flag-o-matic lua-single systemd linux-info ${SCM}
42 +
43 +MY_P="${PN}-${PV/_beta/-dev}"
44 +
45 +DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments"
46 +HOMEPAGE="http://www.haproxy.org"
47 +if [[ ${PV} != *9999 ]]; then
48 + SRC_URI="http://haproxy.1wt.eu/download/$(ver_cut 1-2)/src/${MY_P}.tar.gz"
49 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
50 +elif [[ ${PV} == 9999 ]]; then
51 + EGIT_REPO_URI="https://git.haproxy.org/git/haproxy.git/"
52 + EGIT_BRANCH=master
53 +else
54 + EGIT_REPO_URI="https://git.haproxy.org/git/haproxy-$(ver_cut 1-2).git/"
55 + EGIT_BRANCH=master
56 +fi
57 +
58 +LICENSE="GPL-2 LGPL-2.1"
59 +SLOT="0/$(ver_cut 1-2)"
60 +IUSE="+crypt doc examples +slz +net_ns +pcre pcre-jit prometheus-exporter
61 +ssl systemd +threads tools vim-syntax zlib lua 51degrees wurfl"
62 +REQUIRED_USE="pcre-jit? ( pcre )
63 + lua? ( ${LUA_REQUIRED_USE} )
64 + ?? ( slz zlib )"
65 +
66 +BDEPEND="virtual/pkgconfig"
67 +DEPEND="
68 + crypt? ( virtual/libcrypt:= )
69 + pcre? (
70 + dev-libs/libpcre2:=
71 + pcre-jit? ( dev-libs/libpcre2:=[jit] )
72 + )
73 + ssl? (
74 + dev-libs/openssl:0=
75 + )
76 + systemd? ( sys-apps/systemd )
77 + zlib? ( sys-libs/zlib )
78 + lua? ( ${LUA_DEPS} )"
79 +RDEPEND="${DEPEND}
80 + acct-group/haproxy
81 + acct-user/haproxy"
82 +
83 +S="${WORKDIR}/${MY_P}"
84 +
85 +DOCS=( CHANGELOG CONTRIBUTING MAINTAINERS README )
86 +EXTRAS=( admin/halog admin/iprange dev/tcploop dev/hpack )
87 +
88 +haproxy_use() {
89 + (( $# != 2 )) && die "${FUNCNAME} <USE flag> <make option>"
90 +
91 + usex "${1}" "USE_${2}=1" "USE_${2}="
92 +}
93 +
94 +pkg_setup() {
95 + use lua && lua-single_pkg_setup
96 + if use net_ns; then
97 + CONFIG_CHECK="~NET_NS"
98 + linux-info_pkg_setup
99 + fi
100 +}
101 +
102 +src_compile() {
103 + local -a args=(
104 + V=1
105 + TARGET=linux-glibc
106 + # Switching to PCRE2 by default, bug 838013
107 + PCRE=
108 + PCRE_JIT=
109 + )
110 +
111 + # TODO: PCRE2_WIDTH?
112 + args+=( $(haproxy_use threads THREAD) )
113 + args+=( $(haproxy_use crypt LIBCRYPT) )
114 + args+=( $(haproxy_use net_ns NS) )
115 + args+=( $(haproxy_use pcre PCRE2) )
116 + args+=( $(haproxy_use pcre-jit PCRE2_JIT) )
117 + args+=( $(haproxy_use ssl OPENSSL) )
118 + args+=( $(haproxy_use slz SLZ) )
119 + args+=( $(haproxy_use zlib ZLIB) )
120 + args+=( $(haproxy_use lua LUA) )
121 + args+=( $(haproxy_use 51degrees 51DEGREES) )
122 + args+=( $(haproxy_use wurfl WURFL) )
123 + args+=( $(haproxy_use systemd SYSTEMD) )
124 + args+=( $(haproxy_use prometheus-exporter PROMEX) )
125 +
126 + # Bug #668002
127 + if use ppc || use arm || use hppa; then
128 + TARGET_LDFLAGS=-latomic
129 + fi
130 +
131 + # HAProxy really needs some of those "SPEC_CFLAGS", like -fno-strict-aliasing
132 + emake CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" EXTRA_OBJS="${EXTRA_OBJS}" TARGET_LDFLAGS="${TARGET_LDFLAGS}" PCRE_LIB="${ESYSROOT}"/usr/$(get_libdir) ${args[@]}
133 + emake -C admin/systemd CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" EXTRA_OBJS="${EXTRA_OBJS}" TARGET_LDFLAGS="${TARGET_LDFLAGS}" PCRE_LIB="${ESYSROOT}"/usr/$(get_libdir) SBINDIR=/usr/sbin
134 +
135 + if use tools ; then
136 + for extra in ${EXTRAS[@]} ; do
137 + if [ "${extra}" = "admin/halog" ]; then
138 + emake CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" EXTRA_OBJS="${EXTRA_OBJS}" TARGET_LDFLAGS="${TARGET_LDFLAGS}" PCRE_LIB="${ESYSROOT}"/usr/$(get_libdir) ${args[@]} admin/halog/halog
139 + elif [ "${extra}" = "dev/hpack" ]; then
140 + emake CFLAGS="${CFLAGS} \$(SPEC_CFLAGS)" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" EXTRA_OBJS="${EXTRA_OBJS}" TARGET_LDFLAGS="${TARGET_LDFLAGS}" PCRE_LIB="${ESYSROOT}"/usr/$(get_libdir) ${args[@]} dev/hpack/{decode,gen-enc,gen-rht}
141 + else
142 + # Those two includes are a workaround for hpack Makefile missing those
143 + emake -C ${extra} \
144 + CFLAGS="${CFLAGS} -I../../include/ -I../../ebtree/" OPTIMIZE="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" ${args[@]}
145 + fi
146 + done
147 + fi
148 +}
149 +
150 +src_install() {
151 + dosbin haproxy
152 + dosym ../sbin/haproxy /usr/bin/haproxy
153 +
154 + newconfd "${FILESDIR}/${PN}.confd-r1" ${PN}
155 + newinitd "${FILESDIR}/${PN}.initd-r8" ${PN}
156 +
157 + doman doc/haproxy.1
158 +
159 + systemd_dounit admin/systemd/haproxy.service
160 +
161 + einstalldocs
162 +
163 + # The errorfiles are used by upstream defaults.
164 + insinto /etc/haproxy/errors/
165 + doins examples/errorfiles/*
166 +
167 + if use doc; then
168 + dodoc doc/*.txt
169 + #if use lua; then
170 + # TODO: doc/lua-api/
171 + #fi
172 + fi
173 +
174 + if use tools ; then
175 + has admin/halog "${EXTRAS[@]}" && dobin admin/halog/halog
176 + has admin/iprange "${EXTRAS[@]}" && { newbin admin/iprange/iprange haproxy_iprange; newbin admin/iprange/ip6range haproxy_ip6range; }
177 + has dev/tcploop "${EXTRAS[@]}" && newbin dev/tcploop/tcploop haproxy_tcploop
178 + has dev/hpack "${EXTRAS[@]}" && {
179 + newbin dev/hpack/gen-rht haproxy_gen-rht
180 + newbin dev/hpack/gen-enc haproxy_gen-enc
181 + newbin dev/hpack/decode haproxy_decode
182 + }
183 + fi
184 +
185 + if use examples ; then
186 + docinto examples
187 + dodoc examples/*.cfg
188 + dodoc doc/seamless_reload.txt
189 + fi
190 +
191 + if use vim-syntax ; then
192 + insinto /usr/share/vim/vimfiles/syntax
193 + doins admin/syntax-highlight/haproxy.vim
194 + fi
195 +}
196 +
197 +pkg_postinst() {
198 + if [[ ! -f "${EROOT}/etc/haproxy/haproxy.cfg" ]] ; then
199 + ewarn "You need to create /etc/haproxy/haproxy.cfg before you start the haproxy service."
200 + ewarn "It's best practice to not run haproxy as root, user and group haproxy was therefore created."
201 + ewarn "Make use of them with the \"user\" and \"group\" directives."
202 +
203 + if [[ -d "${EROOT}/usr/share/doc/${PF}" ]]; then
204 + einfo "Please consult the installed documentation for learning the configuration file's syntax."
205 + einfo "The documentation and sample configuration files are installed here:"
206 + einfo " ${EROOT}/usr/share/doc/${PF}"
207 + fi
208 + fi
209 +}