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