d55870e
%define haproxy_user    haproxy
d55870e
%define haproxy_group   %{haproxy_user}
e79911f
%define haproxy_homedir %{_localstatedir}/lib/haproxy
d55870e
%define haproxy_confdir %{_sysconfdir}/haproxy
d55870e
%define haproxy_datadir %{_datadir}/haproxy
d55870e
9aa1221
%global _hardened_build 1
9aa1221
d55870e
Name:           haproxy
04f4274
Version:        2.3.9
04f4274
Release:        1%{?dist}
8cd8592
Summary:        HAProxy reverse proxy for high availability environments
d55870e
2b2535f
License:        GPLv2+
d55870e
9ab2bb9
URL:            http://www.haproxy.org/
9a316ea
Source0:        %{url}/download/2.3/src/haproxy-%{version}.tar.gz
8497ace
Source1:        %{name}.service
d55870e
Source2:        %{name}.cfg
d36291d
Source3:        %{name}.logrotate
dcad1c9
Source4:        %{name}.sysconfig
4c182ec
Source5:        halog.1
d55870e
bfd8e59
BuildRequires:  gcc
45c57ba
BuildRequires:  lua-devel
d579412
BuildRequires:  pcre2-devel
0f83930
BuildRequires:  zlib-devel
0f83930
BuildRequires:  openssl-devel
1b69bf5
BuildRequires:  systemd-devel
c5c2f09
BuildRequires:  systemd
2c153bb
BuildRequires: make
d55870e
8497ace
Requires(pre):      shadow-utils
c5c2f09
%{?systemd_requires}
d55870e
d55870e
%description
8cd8592
HAProxy is a TCP/HTTP reverse proxy which is particularly suited for high
d55870e
availability environments. Indeed, it can:
8cd8592
 - route HTTP requests depending on statically assigned cookies
8cd8592
 - spread load among several servers while assuring server persistence
8cd8592
   through the use of HTTP cookies
8cd8592
 - switch to backup servers in the event a main one fails
8cd8592
 - accept connections to special ports dedicated to service monitoring
8cd8592
 - stop accepting connections without breaking existing ones
8cd8592
 - add, modify, and delete HTTP headers in both directions
8cd8592
 - block requests matching particular patterns
9ab2bb9
 - report detailed status to authenticated users from a URI
8cd8592
   intercepted from the application
d55870e
d55870e
%prep
d55870e
%setup -q
d55870e
d55870e
%build
403798d
regparm_opts=
bb82085
%ifarch %ix86 x86_64
403798d
regparm_opts="USE_REGPARM=1"
76a2500
%endif
76a2500
c2c95a3
%{__make} %{?_smp_mflags} CPU="generic" TARGET="linux-glibc" USE_OPENSSL=1 USE_PCRE2=1 USE_ZLIB=1 USE_LUA=1 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"
f37db97
f37db97
pushd contrib/halog
a6fafc7
%{__make} ${halog} OPTIMIZE="%{optflags} %{build_ldflags}"
f37db97
popd
d55870e
3ef555a
pushd contrib/iprange
a6fafc7
%{__make} iprange OPTIMIZE="%{optflags} %{build_ldflags}"
3ef555a
popd
3ef555a
d55870e
%install
ca11f67
%{__make} install-bin DESTDIR=%{buildroot} PREFIX=%{_prefix} TARGET="linux2628"
8cd8592
%{__make} install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}
76a2500
8497ace
%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
d55870e
%{__install} -p -D -m 0644 %{SOURCE2} %{buildroot}%{haproxy_confdir}/%{name}.cfg
d36291d
%{__install} -p -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
4c182ec
%{__install} -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
4c182ec
%{__install} -p -D -m 0644 %{SOURCE5} %{buildroot}%{_mandir}/man1/halog.1
e79911f
%{__install} -d -m 0755 %{buildroot}%{haproxy_homedir}
d55870e
%{__install} -d -m 0755 %{buildroot}%{haproxy_datadir}
f37db97
%{__install} -d -m 0755 %{buildroot}%{_bindir}
f37db97
%{__install} -p -m 0755 ./contrib/halog/halog %{buildroot}%{_bindir}/halog
3ef555a
%{__install} -p -m 0755 ./contrib/iprange/iprange %{buildroot}%{_bindir}/iprange
9ab2bb9
%{__install} -p -m 0644 ./examples/errorfiles/* %{buildroot}%{haproxy_datadir}
76a2500
d55870e
for httpfile in $(find ./examples/errorfiles/ -type f) 
d55870e
do
d55870e
    %{__install} -p -m 0644 $httpfile %{buildroot}%{haproxy_datadir}
d55870e
done
d55870e
9ab2bb9
%{__rm} -rf ./examples/errorfiles/
9ab2bb9
9ab2bb9
find ./examples/* -type f ! -name "*.cfg" -exec %{__rm} -f "{}" \;
9ab2bb9
d55870e
for textfile in $(find ./ -type f -name '*.txt')
d55870e
do
8cd8592
    %{__mv} $textfile $textfile.old
d55870e
    iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
8cd8592
    %{__rm} -f $textfile.old
2cdc704
done
d55870e
d55870e
%pre
9ab2bb9
getent group %{haproxy_group} >/dev/null || \
9ab2bb9
    groupadd -r %{haproxy_group}
8497ace
getent passwd %{haproxy_user} >/dev/null || \
e79911f
    useradd -r -g %{haproxy_user} -d %{haproxy_homedir} \
9ab2bb9
    -s /sbin/nologin -c "haproxy" %{haproxy_user}
8497ace
exit 0
d55870e
d55870e
%post
4c57edc
%systemd_post %{name}.service
d55870e
d55870e
%preun
4c57edc
%systemd_preun %{name}.service
8497ace
d55870e
%postun
4c57edc
%systemd_postun_with_restart %{name}.service
8497ace
d55870e
%files
9ab2bb9
%doc doc/* examples/*
38e5df0
%doc CHANGELOG README ROADMAP VERSION
38e5df0
%license LICENSE
e79911f
%dir %{haproxy_homedir}
9ab2bb9
%dir %{haproxy_confdir}
d55870e
%dir %{haproxy_datadir}
6bfc809
%{haproxy_datadir}/*
d55870e
%config(noreplace) %{haproxy_confdir}/%{name}.cfg
d36291d
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
4c182ec
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
8497ace
%{_unitdir}/%{name}.service
d55870e
%{_sbindir}/%{name}
f37db97
%{_bindir}/halog
3ef555a
%{_bindir}/iprange
8cd8592
%{_mandir}/man1/*
d55870e
d55870e
%changelog
04f4274
* Tue Apr 06 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.9-1
1b064fc
- Update to 2.3.9 (#1934647)
04f4274
e8d7850
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.3.5-3
e8d7850
- Rebuilt for updated systemd-rpm-macros
e8d7850
  See https://pagure.io/fesco/issue/2583.
e8d7850
9a316ea
* Mon Feb 08 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.5-2
9a316ea
- Fix source URL
9a316ea
24791f4
* Mon Feb 08 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.5-1
24791f4
- Update to 2.3.5 (#1925774)
24791f4
3d42a45
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-2
3d42a45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
3d42a45
27c923c
* Thu Jan 14 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.4-1
27c923c
- Update to 2.3.4 (#1914447)
27c923c
248273f
* Tue Dec 08 2020 Ryan O'Hara <rohara@redhat.com> - 2.3.2-1
248273f
- Update to 2.3.2 (#1894994)
248273f
8559f92
* Thu Oct 01 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.4-1
8559f92
- Update to 2.2.4 (#1883742)
8559f92
    
08daf60
* Thu Sep 17 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.3-2
a3692f6
- Fix build for late loading of libgcc_s
a3692f6
80423ec
* Mon Sep 14 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.3-1
80423ec
- Update to 2.2.3 (#1876932)
80423ec
    
cafa290
* Fri Jul 31 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.2-1
cafa290
- Update to 2.2.2 (#1862400)
cafa290
fdc1575
* Mon Jul 27 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.1-1
fdc1575
- Update to 2.2.1 (#1859846)
fdc1575
97273b4
* Wed Jul 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.0-3
97273b4
- Update systemd service file
97273b4
db97061
* Fri Jul 10 2020 Tom Callaway <spot@fedoraproject.org> - 2.2.0-2
97273b4
- Fix build against lua 5.4
db97061
97273b4
* Thu Jul 09 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.0-1
b397007
- Update to 2.2.0 (#1854519)
b397007
1b234b1
* Mon Jun 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.7-1
1b234b1
- Update to 2.1.7 (#1845001)
1b234b1
953ec52
* Mon Jun 08 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.6-1
953ec52
- Update to 2.1.6 (#1845001)
953ec52
ada5157
* Mon Jun 01 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.5-1
ada5157
- Update to 2.1.5 (#1841837)
ada5157
278672f
* Thu Apr 02 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.4-1
278672f
- Update to 2.1.4 (CVE-2010-11100, #1820200)
278672f
2d262a4
* Mon Mar 16 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.3-2
2d262a4
- Fix invalid element address calculation (#1801109)
2d262a4
f8bc1dd
* Wed Feb 12 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.3-1
f8bc1dd
- Update to 2.1.3 (#1802233)
f8bc1dd
f3f7d2d
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-2
f3f7d2d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f3f7d2d
8fbfd03
* Thu Jan 02 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.2-1
0b5f932
- Update to 2.1.2 (#1782472)
0b5f932
4056860
* Mon Nov 25 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-1
4056860
- Update to 2.0.10 (#1772961)
4056860
d08ce09
* Wed Nov 06 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.8-1
d08ce09
- Update to 2.0.8 (#1764483)
d08ce09
c2c95a3
* Mon Oct 21 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.7-2
c2c95a3
- Build with Prometheus exporter service (#1755839)
c2c95a3
33994b3
* Mon Oct 21 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.7-1
33994b3
- Update to 2.0.7 (#1742544)
33994b3
ea51e78
* Fri Sep 13 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.6-1
ea51e78
- Update to 2.0.6 (#1742544)
ea51e78
4904424
* Mon Aug 19 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.5-1
4904424
- Update to 2.0.5 (#1742544)
4904424
4970794
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.3-1
4970794
- Update to 2.0.3 (#1690492)
4970794
d579412
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.20-3
d579412
- Build with PCRE2 (#1669217)
d579412
24d72ee
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.20-2
24d72ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
24d72ee
3ed9ab8
* Fri May 17 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.20-1
3ed9ab8
- Update to 1.8.20
3ed9ab8
4d0fddd
* Wed Feb 13 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.19-1
4d0fddd
- Update to 1.8.19
4d0fddd
6c1ed84
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.17-4
6c1ed84
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6c1ed84
6b30caf
* Thu Jan 24 2019 Petr Pisar <ppisar@redhat.com> - 1.8.17-3
6b30caf
- Rebuild against patched libpcreposix library (bug #1667614)
6b30caf
bb1fe90
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.8.17-2
bb1fe90
- Rebuilt for libcrypt.so.2 (#1666033)
bb1fe90
bbebcab
* Wed Jan 09 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.17-1
bbebcab
- Update to 1.8.17
bbebcab
- Fix handling of priority flag in HEADERS frame in HTTP/2 decoder (CVE-2018-20615)
bbebcab
22498c0
* Sat Dec 22 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.16-1
22498c0
- Update to 1.8.16
22498c0
9a3483a
* Thu Dec 13 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-1
9a3483a
- Update to 1.8.15
9a3483a
- Fix denial of service attack via infinite recursion (CVE-2018-20103, #1658881)
9a3483a
- Fix out-of-bound reads in dns_validate_dns_response (CVE-2018-20102, #1658882)
9a3483a
73dccb2
* Sat Dec 01 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.14-2
73dccb2
- Use of crpyt() is not thread safe (#1643941)
73dccb2
978a1ad
* Thu Sep 20 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.14-1
978a1ad
- Update to 1.8.14 (#1610066)
978a1ad
020cd82
* Mon Aug 20 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.13-1
020cd82
- Update to 1.8.13 (#1610066)
020cd82
bfd8e59
* Thu Aug 16 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-4
bfd8e59
- Add BuildRequires gcc (#1604308)
bfd8e59
f397499
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.12-3
f397499
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f397499
e79911f
* Tue Jul 10 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-2
e79911f
- Fix ownership of /var/lib/haproxy/ to avoid selinux DAC override errors (#1597076)
e79911f
b1753e7
* Thu Jun 28 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-1
b1753e7
- Update to 1.8.12 (#1580036)
b1753e7
8d00044
* Wed Jun 27 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.11-1
8d00044
- Update to 1.8.11 (#1580036)
8d00044
bfcc81e
* Mon Jun 25 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.10-1
bfcc81e
- Update to 1.8.10 (#1580036)
bfcc81e
0725238
* Mon May 21 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.9-1
0725238
- Update to 1.8.9 (#1580036)
0725238
3faaa67
* Thu May 10 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.8-2
3faaa67
- Build with USE_GETADDRINFO option
3faaa67
cef4cfd
* Thu Apr 19 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.8-1
cef4cfd
- Update to 1.8.8 (#1560121)
3faaa67
a5aeed8
* Mon Apr 09 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.7-1
a5aeed8
- Update to 1.8.7 (#1560121)
a5aeed8
700ebe2
* Fri Apr 06 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.6-1
700ebe2
- Update to 1.8.6 (#1560121)
700ebe2
8d0e83b
* Mon Mar 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.5-1
8d0e83b
- Update to 1.8.5 (#1560121)
8d0e83b
1b69bf5
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-2
1b69bf5
- Define USE_SYSTEMD at build time (#1549027)
1b69bf5
73444cc
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-1
73444cc
- Update to 1.8.4 (#1543668)
73444cc
73444cc
* Thu Feb 08 2018 Florian Weimer <fweimer@redhat.com> - 1.8.3-5
a6fafc7
- Build halog and iprange with linker flags from redhat-rpm-config
4e73c90
- Tell build to include <crypt.h>
a6fafc7
78fa07d
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-4
78fa07d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
78fa07d
53496a8
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.8.3-3
53496a8
- Rebuilt for switch to libxcrypt
53496a8
2232e92
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-2
2232e92
- Remove haproxy-systemd-wrapper
2232e92
dfcbdc8
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-1
dfcbdc8
- Update to 1.8.3 (#1528829)
dfcbdc8
4edfee5
* Wed Dec 27 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.2-1
4edfee5
- Update to 1.8.2
4edfee5
4edfee5
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.1-1
84f9d34
- Update to 1.8.1
84f9d34
e7afd2a
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.0-1
e7afd2a
- Update to 1.8.0
e7afd2a
88f3a94
* Mon Sep 11 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.9-1
88f3a94
- Update to 1.7.9 (#1485084)
88f3a94
e105004
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-3
e105004
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e105004
8ea85a1
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-2
8ea85a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8ea85a1
ea6cfc6
* Mon Jul 10 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.8-1
ea6cfc6
- Update to 1.7.8 (#1436669)
ea6cfc6
192031b
* Mon May 01 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-2
192031b
- Use KillMode=mixed in systemd service file (#1447085)
192031b
46fe71f
* Sun Mar 26 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-1
46fe71f
- Update to 1.7.3 (#1413276)
46fe71f
21f3758
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
21f3758
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
21f3758
5c37c92
* Wed Jan 18 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.2-1
5c37c92
- Update to 1.7.2 (#1413276)
5c37c92
26371a4
* Thu Dec 29 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.1-1
20c99eb
- Update to 1.7.1
20c99eb
6888383
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.0-1
6888383
- Update to 1.7.0
6888383
7d4e398
* Mon Nov 21 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.10-1
7d4e398
- Update to 1.6.10 (#1397013)
7d4e398
c33b153
* Wed Aug 31 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.9-1
c33b153
- Update to 1.6.9 (#1370709)
c33b153
e2ada79
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-2
e2ada79
- Fix main frontend in default config file (#1348674)
e2ada79
ce7f102
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-1
ce7f102
- Update to 1.6.7 (#1356578)
ce7f102
dc1baa7
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-2
dc1baa7
- Remove patch for CVE-2016-5360
dc1baa7
71b783c
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-1
71b783c
- Update to 1.6.6 (#1350426)
71b783c
dcad1c9
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-3
dcad1c9
- Fix reqdeny causing random crashes (CVE-2016-5360, #1346672)
dcad1c9
9f2d883
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-2
9f2d883
- Utilize system-wide crypto-policies (#1256253)
9f2d883
fe4c32b
* Mon May 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-1
fe4c32b
- Update to 1.6.5 (#1317313)
fe4c32b
87e26fe
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-2
87e26fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
87e26fe
e73c944
* Wed Jan 20 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.3-1
e73c944
- Update to 1.6.3 (#1276288)
e73c944
45c57ba
* Wed Nov 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-3
45c57ba
- Enable Lua support
45c57ba
ca11f67
* Tue Nov 03 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-2
9626251
- Update to 1.6.2 (#1276288)
9626251
86a5d24
* Fri Oct 30 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.1-1
86a5d24
- Update to 1.6.1 (#1276288)
86a5d24
e3738f3
* Mon Jul 06 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.14-1
e3738f3
- Update to 1.5.14 (CVE-2015-3281, #1239181)
e3738f3
017d18e
* Fri Jun 26 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.13-1
017d18e
- Update to 1.5.13 (#1236056)
017d18e
89560e5
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.12-3
89560e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
89560e5
6e1a182
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-2
6e1a182
- Remove unused patches
6e1a182
b9b5bda
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-1
b9b5bda
- Update to 1.5.12 (#1217922)
b9b5bda
2829a4b
* Wed Mar 04 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-4
2829a4b
- Rework systemd service and sysconfig file
2829a4b
4c182ec
* Wed Feb 11 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-3
4c182ec
- Add sysconfig file
4c182ec
0d70219
* Tue Feb 10 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-2
0d70219
- Add tcp-ut bind option to set TCP_USER_TIMEOUT (#1190783)
0d70219
728e5a0
* Sun Feb 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-1
728e5a0
- Update to 1.5.11 (#1188029)
728e5a0
cd5b39a
* Mon Jan 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.10-1
cd5b39a
- Update to 1.5.10
cd5b39a
cc4985c
* Mon Dec 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.9-1
cc4985c
- Update to 1.5.9
cc4985c
101b99a
* Sat Nov 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.8-1
101b99a
- Update to 1.5.8
101b99a
cc5e0dc
* Thu Oct 30 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.7-1
cc5e0dc
- Update to 1.5.7
cc5e0dc
9b19590
* Mon Oct 20 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.6-1
9b19590
- Update to 1.5.6
9b19590
9a72a06
* Wed Oct 08 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.5-1
9a72a06
- Update to 1.5.5
9a72a06
d3fc139
* Tue Sep 02 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.4-1
33aa4f2
- Update to 1.5.4
33aa4f2
dbecca6
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-3
dbecca6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dbecca6
46e8428
* Wed Aug 06 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-2
46e8428
- Use haproxy-systemd-wrapper in service file (#1126955)
46e8428
6b82d1b
* Fri Jul 25 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-1
6b82d1b
- Update to 1.5.3
6b82d1b
9ab2bb9
* Tue Jul 15 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.2-1
9ab2bb9
- Update to 1.5.2
9ab2bb9
3ef555a
* Tue Jun 24 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.1-1
3ef555a
- Update to 1.5.1
3ef555a
0f83930
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-2
0f83930
- Build with zlib and openssl support
0f83930
8cd8592
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-1
8cd8592
- Update to 1.5.0
8cd8592
0d4a7e3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.25-2
0d4a7e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0d4a7e3
98262d9
* Thu Mar 27 2014 Ryan O'Hara <rohara@redhat.com> - 1.4.25-1
98262d9
- Update to 1.4.25
98262d9
d474681
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.24-2
d474681
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d474681
5a0d4e6
* Mon Jun 17 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.24-1
5a0d4e6
- Update to 1.4.24 (CVE-2013-2174, #975160)
5a0d4e6
23dc5f2
* Tue Apr 30 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-3
23dc5f2
- Build with PIE flags (#955182)
23dc5f2
9aa1221
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-2
9aa1221
- Build with PIE flags (#955182)
9aa1221
02f83cc
* Tue Apr 02 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-1
02f83cc
- Update to 1.4.23 (CVE-2013-1912, #947697)
02f83cc
- Drop supplementary groups after setuid/setgid (#894626)
02f83cc
bebb8c2
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.22-2
bebb8c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
bebb8c2
2cdc704
* Fri Oct 12 2012 Robin Lee <cheeselee@fedoraproject.org> - 1.4.22-1
2cdc704
- Update to 1.4.22 (CVE-2012-2942, #824544)
2cdc704
- Use linux2628 build target
2cdc704
- No separate x86_64 build target for halog
2cdc704
- halog build honors rpmbuild optflags
2cdc704
- Specfile cleanup
2cdc704
4c57edc
* Mon Sep 17 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.20-3
4c57edc
- Scriptlets replaced with new systemd macros (#850143)
4c57edc
e367df6
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.20-2
e367df6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e367df6
fb8fe64
* Tue Apr 03 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.20-1
fb8fe64
- Update to 1.4.20
fb8fe64
cdd669d
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-4
cdd669d
- fix haproxy.services file
cdd669d
8497ace
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-3
8497ace
- Update to use systemd fixing bug #770305
8497ace
13c47d1
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.4.19-2
13c47d1
- Rebuild against PCRE 8.30
13c47d1
4d91ac5
* Sun Jan 29 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-1
4d91ac5
- Update to 1.4.19
4d91ac5
7714761
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
7714761
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7714761
6bfc809
* Thu Sep 22 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.18-1
6bfc809
- Update to 1.4.18
6bfc809
13d35c0
* Tue Apr 26 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.15-1
13d35c0
- Update to 1.4.15
13d35c0
cd7a43e
* Sun Feb 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.11-1
cd7a43e
- update to 1.4.11
cd7a43e
171beae
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
171beae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
171beae
cd7a43e
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.9-1
cd7a43e
- update to 1.4.9
cd7a43e
d641a47
* Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.8-1
d641a47
- update to 1.4.8
d641a47
f37db97
* Sun May 30 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.6-1
f37db97
- update to 1.4.6
f37db97
6684241
* Thu Feb 18 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.23-1
6684241
- update to 1.3.23
6684241
d36291d
* Sat Oct 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.22-1
d36291d
- update to 1.3.22
d36291d
- added logrotate configuration
d36291d
66ade7e
* Mon Oct 12 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.21-1
66ade7e
- update to 1.3.21
66ade7e
3924ac2
* Sun Oct 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.20-1
3924ac2
- update to 1.3.20
3924ac2
3924ac2
* Sun Aug 02 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.19-1
0d0c512
- update to 1.3.19
0d0c512
6321f76
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.18-2
6321f76
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6321f76
425fb6e
* Sun May 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.18-1
425fb6e
- update to 1.3.18
425fb6e
425fb6e
* Sat Apr 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.17-1
a8f7f24
-  Update to 1.3.17
a8f7f24
46d4846
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.15.7-2
46d4846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
46d4846
c762fb7
* Tue Dec 30 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.7-1
c762fb7
- update to 1.3.15.7
c762fb7
- remove upstream patches, they are now part of source distribution
c762fb7
c0a4a74
* Sat Nov 22 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-2
c0a4a74
- apply upstream patches 
c0a4a74
76a2500
* Sat Nov 15 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-1
76a2500
- update to 1.3.15.6
76a2500
- use new build targets from upstream
76a2500
- add in recommended build options for x86 from upstream
76a2500
2b2535f
* Sat Jun 28 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.6-1
2b2535f
- update to 1.3.14.6
2b2535f
- remove gcc 4.3 patch, it has been applied upstream
2b2535f
- remove MIT license as that code has been removed from upstream
2b2535f
34e768c
* Mon Apr 14 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.4-1
34e768c
- update to 1.3.14.4
34e768c
234f4f2
* Sun Mar 16 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.3-1
234f4f2
- update to 1.3.14.3
234f4f2
905ef3e
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-4
905ef3e
- apply the gcc 4.3 patch to the build process
905ef3e
8ac8468
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-3
8ac8468
- fix gcc 4.3 bug [#434144]
8ac8468
- update init script to properly reload configuration
8ac8468
2cb4cfe
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.14.2-2
2cb4cfe
- Autorebuild for GCC 4.3
2cb4cfe
4b970c7
* Sun Jan 20 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-1
4b970c7
- update to 1.3.14.2
4b970c7
- update make flags that changed with this upstream release
4b970c7
- added man page installation
4b970c7
fcacffd
* Sun Dec 16 2007 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14-1
fcacffd
- update to 1.3.14
fcacffd
93ba44a
* Mon Nov 05 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.4-1
93ba44a
- update to 1.3.12.4
93ba44a
3037574
* Thu Nov 01 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.3-1
3037574
- update to 1.3.12.3
93ba44a
3037574
* Fri Sep 21 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-3
3037574
- fix init script 'reload' task
3037574
d55870e
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-2
d55870e
- update License field
d55870e
d55870e
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-1
d55870e
- update to 1.3.12.2
d55870e
- remove the upstream patch
d55870e
d55870e
* Tue Sep 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.1-1
d55870e
- switch to 1.3.12.1 branch
d55870e
- add patch from upstream with O'Reilly licensing updates.
d55870e
- convert ISO-8859-1 doc files to UTF-8
d55870e
d55870e
* Sat Mar 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-2
d55870e
- addition of haproxy user
d55870e
- add license information
d55870e
d55870e
* Fri Mar 23 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-1
d55870e
- initial packaging