|
|
70b95c |
%define haproxy_user haproxy
|
|
|
70b95c |
%define haproxy_group %{haproxy_user}
|
|
|
70b95c |
%define haproxy_homedir %{_localstatedir}/lib/haproxy
|
|
|
70b95c |
%define haproxy_confdir %{_sysconfdir}/haproxy
|
|
|
70b95c |
%define haproxy_datadir %{_datadir}/haproxy
|
|
|
70b95c |
|
|
|
70b95c |
%global _hardened_build 1
|
|
|
70b95c |
|
|
|
70b95c |
Name: haproxy
|
|
|
70b95c |
Version: 1.8.15
|
|
|
70b95c |
Release: 5%{?dist}
|
|
|
70b95c |
Summary: HAProxy reverse proxy for high availability environments
|
|
|
70b95c |
|
|
|
70b95c |
Group: System Environment/Daemons
|
|
|
70b95c |
License: GPLv2+
|
|
|
70b95c |
|
|
|
70b95c |
URL: http://www.haproxy.org/
|
|
|
70b95c |
Source0: http://www.haproxy.org/download/1.8/src/haproxy-%{version}.tar.gz
|
|
|
70b95c |
Source1: %{name}.service
|
|
|
70b95c |
Source2: %{name}.cfg
|
|
|
70b95c |
Source3: %{name}.logrotate
|
|
|
70b95c |
Source4: %{name}.sysconfig
|
|
|
70b95c |
Source5: halog.1
|
|
|
70b95c |
|
|
|
70b95c |
Patch0: bz1664533-fix-handling-priority-flag-HTTP2-decoder.patch
|
|
|
70b95c |
|
|
|
70b95c |
BuildRequires: lua-devel
|
|
|
70b95c |
BuildRequires: pcre-devel
|
|
|
70b95c |
BuildRequires: zlib-devel
|
|
|
70b95c |
BuildRequires: openssl-devel
|
|
|
70b95c |
BuildRequires: systemd-devel
|
|
|
70b95c |
BuildRequires: systemd-units
|
|
|
70b95c |
|
|
|
70b95c |
Requires(pre): shadow-utils
|
|
|
70b95c |
Requires(post): systemd
|
|
|
70b95c |
Requires(preun): systemd
|
|
|
70b95c |
Requires(postun): systemd
|
|
|
70b95c |
|
|
|
70b95c |
%description
|
|
|
70b95c |
HAProxy is a TCP/HTTP reverse proxy which is particularly suited for high
|
|
|
70b95c |
availability environments. Indeed, it can:
|
|
|
70b95c |
- route HTTP requests depending on statically assigned cookies
|
|
|
70b95c |
- spread load among several servers while assuring server persistence
|
|
|
70b95c |
through the use of HTTP cookies
|
|
|
70b95c |
- switch to backup servers in the event a main one fails
|
|
|
70b95c |
- accept connections to special ports dedicated to service monitoring
|
|
|
70b95c |
- stop accepting connections without breaking existing ones
|
|
|
70b95c |
- add, modify, and delete HTTP headers in both directions
|
|
|
70b95c |
- block requests matching particular patterns
|
|
|
70b95c |
- report detailed status to authenticated users from a URI
|
|
|
70b95c |
intercepted from the application
|
|
|
70b95c |
|
|
|
70b95c |
%prep
|
|
|
70b95c |
%setup -q
|
|
|
70b95c |
%patch0 -p1
|
|
|
70b95c |
|
|
|
70b95c |
%build
|
|
|
70b95c |
regparm_opts=
|
|
|
70b95c |
%ifarch %ix86 x86_64
|
|
|
70b95c |
regparm_opts="USE_REGPARM=1"
|
|
|
70b95c |
%endif
|
|
|
70b95c |
|
|
|
70b95c |
%{__make} %{?_smp_mflags} CPU="generic" TARGET="linux2628" USE_OPENSSL=1 USE_PCRE=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}"
|
|
|
70b95c |
|
|
|
70b95c |
pushd contrib/halog
|
|
|
70b95c |
%{__make} ${halog} OPTIMIZE="%{optflags} %{build_ldflags}" LDFLAGS=
|
|
|
70b95c |
popd
|
|
|
70b95c |
|
|
|
70b95c |
pushd contrib/iprange
|
|
|
70b95c |
%{__make} ${iprange} OPTIMIZE="%{optflags} %{build_ldflags}" LDFLAGS=
|
|
|
70b95c |
popd
|
|
|
70b95c |
|
|
|
70b95c |
%install
|
|
|
70b95c |
%{__make} install-bin DESTDIR=%{buildroot} PREFIX=%{_prefix} TARGET="linux2628"
|
|
|
70b95c |
%{__make} install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}
|
|
|
70b95c |
|
|
|
70b95c |
%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
|
|
|
70b95c |
%{__install} -p -D -m 0644 %{SOURCE2} %{buildroot}%{haproxy_confdir}/%{name}.cfg
|
|
|
70b95c |
%{__install} -p -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
|
|
70b95c |
%{__install} -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
|
|
|
70b95c |
%{__install} -p -D -m 0644 %{SOURCE5} %{buildroot}%{_mandir}/man1/halog.1
|
|
|
70b95c |
%{__install} -d -m 0755 %{buildroot}%{haproxy_homedir}
|
|
|
70b95c |
%{__install} -d -m 0755 %{buildroot}%{haproxy_datadir}
|
|
|
70b95c |
%{__install} -d -m 0755 %{buildroot}%{_bindir}
|
|
|
70b95c |
%{__install} -p -m 0755 ./contrib/halog/halog %{buildroot}%{_bindir}/halog
|
|
|
70b95c |
%{__install} -p -m 0755 ./contrib/iprange/iprange %{buildroot}%{_bindir}/iprange
|
|
|
70b95c |
%{__install} -p -m 0644 ./examples/errorfiles/* %{buildroot}%{haproxy_datadir}
|
|
|
70b95c |
|
|
|
70b95c |
for httpfile in $(find ./examples/errorfiles/ -type f)
|
|
|
70b95c |
do
|
|
|
70b95c |
%{__install} -p -m 0644 $httpfile %{buildroot}%{haproxy_datadir}
|
|
|
70b95c |
done
|
|
|
70b95c |
|
|
|
70b95c |
%{__rm} -rf ./examples/errorfiles/
|
|
|
70b95c |
|
|
|
70b95c |
find ./examples/* -type f ! -name "*.cfg" -exec %{__rm} -f "{}" \;
|
|
|
70b95c |
|
|
|
70b95c |
for textfile in $(find ./ -type f -name '*.txt')
|
|
|
70b95c |
do
|
|
|
70b95c |
%{__mv} $textfile $textfile.old
|
|
|
70b95c |
iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
|
|
|
70b95c |
%{__rm} -f $textfile.old
|
|
|
70b95c |
done
|
|
|
70b95c |
|
|
|
70b95c |
%pre
|
|
|
70b95c |
getent group %{haproxy_group} >/dev/null || \
|
|
|
70b95c |
groupadd -r %{haproxy_group}
|
|
|
70b95c |
getent passwd %{haproxy_user} >/dev/null || \
|
|
|
70b95c |
useradd -r -g %{haproxy_user} -d %{haproxy_homedir} \
|
|
|
70b95c |
-s /sbin/nologin -c "haproxy" %{haproxy_user}
|
|
|
70b95c |
exit 0
|
|
|
70b95c |
|
|
|
70b95c |
%post
|
|
|
70b95c |
%systemd_post %{name}.service
|
|
|
70b95c |
|
|
|
70b95c |
%preun
|
|
|
70b95c |
%systemd_preun %{name}.service
|
|
|
70b95c |
|
|
|
70b95c |
%postun
|
|
|
70b95c |
%systemd_postun_with_restart %{name}.service
|
|
|
70b95c |
|
|
|
70b95c |
%files
|
|
|
70b95c |
%defattr(-,root,root,-)
|
|
|
70b95c |
%doc doc/* examples/*
|
|
|
70b95c |
%doc CHANGELOG README ROADMAP VERSION
|
|
|
70b95c |
%license LICENSE
|
|
|
70b95c |
%dir %{haproxy_homedir}
|
|
|
70b95c |
%dir %{haproxy_confdir}
|
|
|
70b95c |
%dir %{haproxy_datadir}
|
|
|
70b95c |
%{haproxy_datadir}/*
|
|
|
70b95c |
%config(noreplace) %{haproxy_confdir}/%{name}.cfg
|
|
|
70b95c |
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
|
|
70b95c |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
|
|
70b95c |
%{_unitdir}/%{name}.service
|
|
|
70b95c |
%{_sbindir}/%{name}
|
|
|
70b95c |
%{_bindir}/halog
|
|
|
70b95c |
%{_bindir}/iprange
|
|
|
70b95c |
%{_mandir}/man1/*
|
|
|
70b95c |
|
|
|
70b95c |
%changelog
|
|
|
70b95c |
* Wed Jan 09 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.15-5
|
|
|
70b95c |
- Resolve CVE-2018-20615 (#1664533)
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Dec 16 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-4
|
|
|
70b95c |
- Use empty LDFLAGS to prevent stripping, maintain hardened build
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Dec 15 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-3
|
|
|
70b95c |
- Use LDFLAGS when building contib tools to prevent binary stripping
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Dec 14 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-2
|
|
|
70b95c |
- Bump release
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Dec 13 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-1
|
|
|
70b95c |
- Update to 1.8.15 (#1631815)
|
|
|
70b95c |
- Resolve CVE-2018-20102 (#1659017)
|
|
|
70b95c |
- Resolve CVE-2018-20103 (#1659019)
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Oct 02 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.14-1
|
|
|
70b95c |
- Update to 1.8.14 (#1631815)
|
|
|
70b95c |
- Resolve CVE-2018-14645 (#1631539)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jul 25 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-2
|
|
|
70b95c |
- Fix ownership of /var/lib/haproxy/ to avoid selinux DAC override errors
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Jul 02 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-1
|
|
|
70b95c |
- Update to 1.8.12
|
|
|
70b95c |
- Resolve CVE-2018-10184 (#1569643)
|
|
|
70b95c |
- Resolve CVE-2018-11469 (#1584787)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Apr 19 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.8-1
|
|
|
70b95c |
- Update to 1.8.8 (#1560121)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Apr 09 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.7-1
|
|
|
70b95c |
- Update to 1.8.7 (#1560121)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Apr 06 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.6-1
|
|
|
70b95c |
- Update to 1.8.6 (#1560121)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Mar 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.5-1
|
|
|
70b95c |
- Update to 1.8.5 (#1560121)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-2
|
|
|
70b95c |
- Define USE_SYSTEMD at build time (#1549027)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-1
|
|
|
70b95c |
- Update to 1.8.4 (#1543668)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Feb 08 2018 Florian Weimer <fweimer@redhat.com> - 1.8.3-5
|
|
|
70b95c |
- Build halog and iprange with linker flags from redhat-rpm-config
|
|
|
70b95c |
- Tell build to include <crypt.h>
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-4
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.8.3-3
|
|
|
70b95c |
- Rebuilt for switch to libxcrypt
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-2
|
|
|
70b95c |
- Remove haproxy-systemd-wrapper
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-1
|
|
|
70b95c |
- Update to 1.8.3 (#1528829)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Dec 27 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.2-1
|
|
|
70b95c |
- Update to 1.8.2
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.1-1
|
|
|
70b95c |
- Update to 1.8.1
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.0-1
|
|
|
70b95c |
- Update to 1.8.0
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Sep 11 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.9-1
|
|
|
70b95c |
- Update to 1.7.9 (#1485084)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-3
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Jul 10 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.8-1
|
|
|
70b95c |
- Update to 1.7.8 (#1436669)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon May 01 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-2
|
|
|
70b95c |
- Use KillMode=mixed in systemd service file (#1447085)
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Mar 26 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-1
|
|
|
70b95c |
- Update to 1.7.3 (#1413276)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jan 18 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.2-1
|
|
|
70b95c |
- Update to 1.7.2 (#1413276)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Dec 29 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.1-1
|
|
|
70b95c |
- Update to 1.7.1
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.0-1
|
|
|
70b95c |
- Update to 1.7.0
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Nov 21 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.10-1
|
|
|
70b95c |
- Update to 1.6.10 (#1397013)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Aug 31 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.9-1
|
|
|
70b95c |
- Update to 1.6.9 (#1370709)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-2
|
|
|
70b95c |
- Fix main frontend in default config file (#1348674)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-1
|
|
|
70b95c |
- Update to 1.6.7 (#1356578)
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-2
|
|
|
70b95c |
- Remove patch for CVE-2016-5360
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-1
|
|
|
70b95c |
- Update to 1.6.6 (#1350426)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-3
|
|
|
70b95c |
- Fix reqdeny causing random crashes (CVE-2016-5360, #1346672)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-2
|
|
|
70b95c |
- Utilize system-wide crypto-policies (#1256253)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon May 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-1
|
|
|
70b95c |
- Update to 1.6.5 (#1317313)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jan 20 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.3-1
|
|
|
70b95c |
- Update to 1.6.3 (#1276288)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Nov 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-3
|
|
|
70b95c |
- Enable Lua support
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Nov 03 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-2
|
|
|
70b95c |
- Update to 1.6.2 (#1276288)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Oct 30 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.1-1
|
|
|
70b95c |
- Update to 1.6.1 (#1276288)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Jul 06 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.14-1
|
|
|
70b95c |
- Update to 1.5.14 (CVE-2015-3281, #1239181)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jun 26 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.13-1
|
|
|
70b95c |
- Update to 1.5.13 (#1236056)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.12-3
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-2
|
|
|
70b95c |
- Remove unused patches
|
|
|
70b95c |
|
|
|
70b95c |
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-1
|
|
|
70b95c |
- Update to 1.5.12 (#1217922)
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Mar 04 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-4
|
|
|
70b95c |
- Rework systemd service and sysconfig file
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Feb 11 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-3
|
|
|
70b95c |
- Add sysconfig file
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Feb 10 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-2
|
|
|
70b95c |
- Add tcp-ut bind option to set TCP_USER_TIMEOUT (#1190783)
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Feb 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-1
|
|
|
70b95c |
- Update to 1.5.11 (#1188029)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Jan 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.10-1
|
|
|
70b95c |
- Update to 1.5.10
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Dec 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.9-1
|
|
|
70b95c |
- Update to 1.5.9
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Nov 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.8-1
|
|
|
70b95c |
- Update to 1.5.8
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Oct 30 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.7-1
|
|
|
70b95c |
- Update to 1.5.7
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Oct 20 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.6-1
|
|
|
70b95c |
- Update to 1.5.6
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Oct 08 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.5-1
|
|
|
70b95c |
- Update to 1.5.5
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Sep 02 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.4-1
|
|
|
70b95c |
- Update to 1.5.4
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-3
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Aug 06 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-2
|
|
|
70b95c |
- Use haproxy-systemd-wrapper in service file (#1126955)
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jul 25 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-1
|
|
|
70b95c |
- Update to 1.5.3
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Jul 15 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.2-1
|
|
|
70b95c |
- Update to 1.5.2
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Jun 24 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.1-1
|
|
|
70b95c |
- Update to 1.5.1
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-2
|
|
|
70b95c |
- Build with zlib and openssl support
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-1
|
|
|
70b95c |
- Update to 1.5.0
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.25-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Mar 27 2014 Ryan O'Hara <rohara@redhat.com> - 1.4.25-1
|
|
|
70b95c |
- Update to 1.4.25
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.24-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Jun 17 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.24-1
|
|
|
70b95c |
- Update to 1.4.24 (CVE-2013-2174, #975160)
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Apr 30 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-3
|
|
|
70b95c |
- Build with PIE flags (#955182)
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-2
|
|
|
70b95c |
- Build with PIE flags (#955182)
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Apr 02 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-1
|
|
|
70b95c |
- Update to 1.4.23 (CVE-2013-1912, #947697)
|
|
|
70b95c |
- Drop supplementary groups after setuid/setgid (#894626)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.22-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Oct 12 2012 Robin Lee <cheeselee@fedoraproject.org> - 1.4.22-1
|
|
|
70b95c |
- Update to 1.4.22 (CVE-2012-2942, #824544)
|
|
|
70b95c |
- Use linux2628 build target
|
|
|
70b95c |
- No separate x86_64 build target for halog
|
|
|
70b95c |
- halog build honors rpmbuild optflags
|
|
|
70b95c |
- Specfile cleanup
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Sep 17 2012 Václav PavlÃn <vpavlin@redhat.com> - 1.4.20-3
|
|
|
70b95c |
- Scriptlets replaced with new systemd macros (#850143)
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.20-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Apr 03 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.20-1
|
|
|
70b95c |
- Update to 1.4.20
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-4
|
|
|
70b95c |
- fix haproxy.services file
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-3
|
|
|
70b95c |
- Update to use systemd fixing bug #770305
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.4.19-2
|
|
|
70b95c |
- Rebuild against PCRE 8.30
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Jan 29 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-1
|
|
|
70b95c |
- Update to 1.4.19
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Sep 22 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.18-1
|
|
|
70b95c |
- Update to 1.4.18
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Apr 26 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.15-1
|
|
|
70b95c |
- Update to 1.4.15
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Feb 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.11-1
|
|
|
70b95c |
- update to 1.4.11
|
|
|
70b95c |
|
|
|
70b95c |
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.9-1
|
|
|
70b95c |
- update to 1.4.9
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.8-1
|
|
|
70b95c |
- update to 1.4.8
|
|
|
70b95c |
|
|
|
70b95c |
* Sun May 30 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.6-1
|
|
|
70b95c |
- update to 1.4.6
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Feb 18 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.23-1
|
|
|
70b95c |
- update to 1.3.23
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Oct 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.22-1
|
|
|
70b95c |
- update to 1.3.22
|
|
|
70b95c |
- added logrotate configuration
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Oct 12 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.21-1
|
|
|
70b95c |
- update to 1.3.21
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Oct 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.20-1
|
|
|
70b95c |
- update to 1.3.20
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Aug 02 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.19-1
|
|
|
70b95c |
- update to 1.3.19
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.18-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Sun May 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.18-1
|
|
|
70b95c |
- update to 1.3.18
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Apr 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.17-1
|
|
|
70b95c |
- Update to 1.3.17
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.15.7-2
|
|
|
70b95c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Dec 30 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.7-1
|
|
|
70b95c |
- update to 1.3.15.7
|
|
|
70b95c |
- remove upstream patches, they are now part of source distribution
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Nov 22 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-2
|
|
|
70b95c |
- apply upstream patches
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Nov 15 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-1
|
|
|
70b95c |
- update to 1.3.15.6
|
|
|
70b95c |
- use new build targets from upstream
|
|
|
70b95c |
- add in recommended build options for x86 from upstream
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Jun 28 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.6-1
|
|
|
70b95c |
- update to 1.3.14.6
|
|
|
70b95c |
- remove gcc 4.3 patch, it has been applied upstream
|
|
|
70b95c |
- remove MIT license as that code has been removed from upstream
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Apr 14 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.4-1
|
|
|
70b95c |
- update to 1.3.14.4
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Mar 16 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.3-1
|
|
|
70b95c |
- update to 1.3.14.3
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-4
|
|
|
70b95c |
- apply the gcc 4.3 patch to the build process
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-3
|
|
|
70b95c |
- fix gcc 4.3 bug [#434144]
|
|
|
70b95c |
- update init script to properly reload configuration
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.14.2-2
|
|
|
70b95c |
- Autorebuild for GCC 4.3
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Jan 20 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-1
|
|
|
70b95c |
- update to 1.3.14.2
|
|
|
70b95c |
- update make flags that changed with this upstream release
|
|
|
70b95c |
- added man page installation
|
|
|
70b95c |
|
|
|
70b95c |
* Sun Dec 16 2007 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14-1
|
|
|
70b95c |
- update to 1.3.14
|
|
|
70b95c |
|
|
|
70b95c |
* Mon Nov 05 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.4-1
|
|
|
70b95c |
- update to 1.3.12.4
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Nov 01 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.3-1
|
|
|
70b95c |
- update to 1.3.12.3
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Sep 21 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-3
|
|
|
70b95c |
- fix init script 'reload' task
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-2
|
|
|
70b95c |
- update License field
|
|
|
70b95c |
|
|
|
70b95c |
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-1
|
|
|
70b95c |
- update to 1.3.12.2
|
|
|
70b95c |
- remove the upstream patch
|
|
|
70b95c |
|
|
|
70b95c |
* Tue Sep 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.1-1
|
|
|
70b95c |
- switch to 1.3.12.1 branch
|
|
|
70b95c |
- add patch from upstream with O'Reilly licensing updates.
|
|
|
70b95c |
- convert ISO-8859-1 doc files to UTF-8
|
|
|
70b95c |
|
|
|
70b95c |
* Sat Mar 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-2
|
|
|
70b95c |
- addition of haproxy user
|
|
|
70b95c |
- add license information
|
|
|
70b95c |
|
|
|
70b95c |
* Fri Mar 23 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-1
|
|
|
70b95c |
- initial packaging
|