mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-02 06:22:37 +01:00
66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
# Contributor: Jeff Bilyk <jbilyk@gmail.com>
|
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Milan P. Stanić <mps@arvanta.net>
|
|
pkgname=haproxy
|
|
# NOTE: Upgrade only to LTS versions announced on upstream site url!
|
|
# Using LTS versions is easier to keep it in good shape for stable releases
|
|
pkgver=2.4.2
|
|
_pkgmajorver=${pkgver%.*}
|
|
pkgrel=0
|
|
pkgdesc="A TCP/HTTP reverse proxy for high availability environments"
|
|
url="https://www.haproxy.org/"
|
|
arch="all"
|
|
license="(GPL-2.0-or-later AND GPL-2.1-or-later) WITH OpenSSL-Exception"
|
|
_luaver=5.4
|
|
options="!check textrels" # FIXME: depends on vtest
|
|
# riscv64 build reports textrels
|
|
makedepends="pcre-dev openssl-dev linux-headers lua$_luaver-dev zlib-dev"
|
|
install="haproxy.pre-install haproxy.pre-upgrade"
|
|
subpackages="$pkgname-doc $pkgname-openrc"
|
|
source="https://www.haproxy.org/download/$_pkgmajorver/src/haproxy-$pkgver.tar.gz
|
|
haproxy.initd
|
|
haproxy.cfg"
|
|
|
|
# secfixes:
|
|
# 2.1.4-r0:
|
|
# - CVE-2020-11100
|
|
|
|
build() {
|
|
case "$CARCH" in mips|mipsel*|riscv64) _carchflags="ADDLIB=-latomic";; esac
|
|
make \
|
|
$_carchflags \
|
|
TARGET=linux-musl \
|
|
USE_PCRE=1 \
|
|
USE_OPENSSL=1 \
|
|
USE_ZLIB=1 \
|
|
USE_LUA=1 \
|
|
USE_NS=1 \
|
|
USE_PROMEX=1 \
|
|
LUA_LIB=/usr/lib/lua$_luaver \
|
|
LUA_INC=/usr/include/lua$_luaver \
|
|
CFLAGS="$CFLAGS"
|
|
}
|
|
|
|
check() {
|
|
make reg-tests
|
|
}
|
|
|
|
package() {
|
|
make install \
|
|
DESTDIR="$pkgdir" PREFIX=/usr DOCDIR=/usr/share/doc/haproxy
|
|
install -d \
|
|
"$pkgdir"/var/lib/haproxy
|
|
install -D -m 755 \
|
|
"$srcdir"/$pkgname.initd \
|
|
"$pkgdir"/etc/init.d/$pkgname
|
|
install -D -m 644 \
|
|
"$srcdir"/haproxy.cfg \
|
|
"$pkgdir"/etc/haproxy/haproxy.cfg
|
|
}
|
|
|
|
sha512sums="
|
|
8dc6386e0e0bf7ceed8b6c23ad2d608f6c59777c5ab9731e6bdd13883a31ec5faeee2ceb683589357c028a10c9fbe0a0247baff6825cd5b95e6c82cbe358e4d1 haproxy-2.4.2.tar.gz
|
|
4aa8fc812079baf1d17cf9484a9b44568c3dd94f35243a57a4a7868e7f88146a4e94c80ea8ab86f1b08a524567e269a3ec119b67fc679f6bd0d9f1c70ce4f080 haproxy.initd
|
|
26bc8f8ac504fcbaec113ecbb9bb59b9da47dc8834779ebbb2870a8cadf2ee7561b3a811f01e619358a98c6c7768e8fdd90ab447098c05b82e788c8212c4c41f haproxy.cfg
|
|
"
|