File haproxy.spec of Package HAProxy

%define haproxy_user    haproxy
%define haproxy_group   %{haproxy_user}
%define haproxy_homedir %{_localstatedir}/lib/haproxy
%define haproxy_confdir %{_sysconfdir}/haproxy
%define haproxy_datadir %{_datadir}/haproxy

%global _hardened_build 1

Name:           haproxy
Version:        2.0.35
Release:        <CI_CNT>%{?dist}
Summary:        HAProxy reverse proxy for high availability environments

License:        GPLv2+

URL:            http://www.haproxy.org/
Source0:        %{url}/download/2.0/src/haproxy-%{version}.tar.gz
Source1:        %{name}.service
Source2:        %{name}.cfg
Source3:        %{name}.logrotate
Source4:        %{name}.sysconfig
Source5:        halog.1

%if 0%{?centos_version} > 700 || 0%{?rhel_version} > 700
BuildRequires:  lua-devel
%endif

BuildRequires:  gcc
BuildRequires:  pcre2-devel
BuildRequires:  zlib-devel
BuildRequires:  openssl-devel
BuildRequires:  systemd-devel
BuildRequires:  systemd

Requires(pre):      shadow-utils
%{?systemd_requires}

%description
HAProxy is a TCP/HTTP reverse proxy which is particularly suited for high
availability environments. Indeed, it can:
 - route HTTP requests depending on statically assigned cookies
 - spread load among several servers while assuring server persistence
   through the use of HTTP cookies
 - switch to backup servers in the event a main one fails
 - accept connections to special ports dedicated to service monitoring
 - stop accepting connections without breaking existing ones
 - add, modify, and delete HTTP headers in both directions
 - block requests matching particular patterns
 - report detailed status to authenticated users from a URI
   intercepted from the application

%prep
%setup -q

%build
regparm_opts=
%ifarch %ix86 x86_64
regparm_opts="USE_REGPARM=1"
%endif

%{__make} %{?_smp_mflags} CPU="generic" TARGET="linux-glibc" USE_OPENSSL=1 USE_PCRE2=1 USE_ZLIB=1 \
%if 0%{?centos_version} > 700 || 0%{?rhel_version} > 700
USE_LUA=1 \
%endif
USE_CRYPT_H=1 USE_SYSTEMD=1 USE_LINUX_TPROXY=1 USE_GETADDRINFO=1 ${regparm_opts} ADDINC="%{optflags}" ADDLIB="%{__global_ldflags}" EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"

pushd contrib/halog
%{__make} ${halog} \
%if 0%{?centos_version} > 700 || 0%{?rhel_version} > 700
OPTIMIZE="%{optflags} %{build_ldflags}"
%else
OPTIMIZE="%{optflags}"
%endif
popd

pushd contrib/iprange
%{__make} iprange \
%if 0%{?centos_version} > 700 || 0%{?rhel_version} > 700
OPTIMIZE="%{optflags} %{build_ldflags}"
%else
OPTIMIZE="%{optflags}"
%endif
popd

%install
%{__make} install-bin DESTDIR=%{buildroot} PREFIX=%{_prefix} TARGET="linux-glibc"
%{__make} install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}

%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
%{__install} -p -D -m 0644 %{SOURCE2} %{buildroot}%{haproxy_confdir}/%{name}.cfg
%{__install} -p -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
%{__install} -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
%{__install} -p -D -m 0644 %{SOURCE5} %{buildroot}%{_mandir}/man1/halog.1
%{__install} -d -m 0755 %{buildroot}%{haproxy_homedir}
%{__install} -d -m 0755 %{buildroot}%{haproxy_datadir}
%{__install} -d -m 0755 %{buildroot}%{_bindir}
%{__install} -p -m 0755 ./contrib/halog/halog %{buildroot}%{_bindir}/halog
%{__install} -p -m 0755 ./contrib/iprange/iprange %{buildroot}%{_bindir}/iprange
%{__install} -p -m 0644 ./examples/errorfiles/* %{buildroot}%{haproxy_datadir}

for httpfile in $(find ./examples/errorfiles/ -type f) 
do
    %{__install} -p -m 0644 $httpfile %{buildroot}%{haproxy_datadir}
done

%{__rm} -rf ./examples/errorfiles/

find ./examples/* -type f ! -name "*.cfg" -exec %{__rm} -f "{}" \;

for textfile in $(find ./ -type f -name '*.txt')
do
    %{__mv} $textfile $textfile.old
    iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
    %{__rm} -f $textfile.old
done

%pre
getent group %{haproxy_group} >/dev/null || \
    groupadd -r %{haproxy_group}
getent passwd %{haproxy_user} >/dev/null || \
    useradd -r -g %{haproxy_user} -d %{haproxy_homedir} \
    -s /sbin/nologin -c "haproxy" %{haproxy_user}
exit 0

%post
%systemd_post %{name}.service

%preun
%systemd_preun %{name}.service

%postun
%systemd_postun_with_restart %{name}.service

%files
%doc doc/* examples/*
%doc CHANGELOG README ROADMAP VERSION
%license LICENSE
%dir %{haproxy_homedir}
%dir %{haproxy_confdir}
%dir %{haproxy_datadir}
%{haproxy_datadir}/*
%config(noreplace) %{haproxy_confdir}/%{name}.cfg
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
%{_unitdir}/%{name}.service
%{_sbindir}/%{name}
%{_bindir}/halog
%{_bindir}/iprange
%{_mandir}/man1/*

%changelog
* Fri Apr 05 2024 Joram Knaack <joramk@gmail.com> - 2.0.35
- Updated to version 2.0.35

* Tue Dec 19 2023 Joram Knaack <joramk@gmail.com> - 2.0.34
- Updated to version 2.0.34

* Sat Aug 19 2023 Joram Knaack <joramk@gmail.com> - 2.0.33
- Updated to version 2.0.33

* Mon Jun 12 2023 Joram Knaack <joramk@gmail.com> - 2.0.32
- Updated to version 2.0.32

* Tue Feb 14 2023 Joram Knaack <joramk@gmail.com> - 2.0.31
- Updated to version 2.0.31

* Fri Dec 09 2022 Joram Knaack <joramk@gmail.com> - 2.0.30
- Updated to version 2.0.30

* Fri May 13 2022 Joram Knaack <joramk@gmail.com> - 2.0.29
- Updated to version 2.0.29

* Mon Mar 14 2022 Joram Knaack <joramk@gmail.com> - 2.0.28
- Updated to version 2.0.28

* Wed Jan 26 2022 Joram Knaack <joramk@gmail.com> - 2.0.27
- Updated to version 2.0.27

* Fri Dec 03 2021 Joram Knaack <joramk@gmail.com> - 2.0.26
- Updated to version 2.0.26

* Tue Sep 07 2021 Joram Knaack <joramk@gmail.com> - 2.0.25
- Updated to version 2.0.25

* Tue Aug 17 2021 Joram Knaack <joramk@gmail.com> - 2.0.24
- Updated to version 2.0.24

* Fri Jul 16 2021 Joram Knaack <joramk@gmail.com> - 2.0.23
- Updated to version 2.0.23

* Mon Apr 12 2021 Joram Knaack <joramk@gmail.com> - 2.0.22
- Updated to version 2.0.22

* Thu Mar 18 2021 Joram Knaack <joramk@gmail.com> - 2.0.21
- Updated to version 2.0.21

* Sat Jan 09 2021 Joram Knaack <joramk@gmail.com> - 2.0.20
- Updated to version 2.0.20

* Fri Nov 06 2020 Joram Knaack <joramk@gmail.com> - 2.0.19
- Updated to version 2.0.19

* Sat Oct 10 2020 Joram Knaack <joramk@gmail.com> - 2.0.18
- Updated to version 2.0.18

* Thu Sep 17 2020 Joram Knaack <joramk@gmail.com> - 2.0.17
- Updated to version 2.0.17
openSUSE Build Service is sponsored by