|
|
e01d94 |
%global _hardened_build 1
|
|
|
e01d94 |
|
|
|
e01d94 |
Name: hostapd
|
|
|
e01d94 |
Version: 2.10
|
|
|
e01d94 |
Release: 1%{?dist}
|
|
|
e01d94 |
Summary: IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
|
|
|
e01d94 |
License: BSD
|
|
|
e01d94 |
URL: http://w1.fi/hostapd
|
|
|
e01d94 |
|
|
|
e01d94 |
Source0: http://w1.fi/releases/%{name}-%{version}.tar.gz
|
|
|
e01d94 |
Source1: %{name}.service
|
|
|
e01d94 |
Source2: %{name}.conf
|
|
|
e01d94 |
Source3: %{name}.conf.5
|
|
|
e01d94 |
Source4: %{name}.sysconfig
|
|
|
e01d94 |
Source5: %{name}.init
|
|
|
e01d94 |
|
|
|
e01d94 |
BuildRequires: libnl3-devel
|
|
|
e01d94 |
BuildRequires: openssl-devel
|
|
|
e01d94 |
BuildRequires: perl-generators
|
|
|
e01d94 |
BuildRequires: gcc
|
|
|
e01d94 |
|
|
|
e01d94 |
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
|
e01d94 |
BuildRequires: systemd
|
|
|
e01d94 |
BuildRequires: make
|
|
|
e01d94 |
Requires(post): systemd
|
|
|
e01d94 |
Requires(preun): systemd
|
|
|
e01d94 |
Requires(postun): systemd
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%if 0%{?rhel} == 6
|
|
|
e01d94 |
Requires(post): /sbin/chkconfig
|
|
|
e01d94 |
Requires(preun): /sbin/chkconfig
|
|
|
e01d94 |
Requires(preun): /sbin/service
|
|
|
e01d94 |
Requires(postun): /sbin/service
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%description
|
|
|
e01d94 |
%{name} is a user space daemon for access point and authentication servers. It
|
|
|
e01d94 |
implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP
|
|
|
e01d94 |
Authenticators and RADIUS authentication server.
|
|
|
e01d94 |
|
|
|
e01d94 |
%{name} is designed to be a "daemon" program that runs in the back-ground and
|
|
|
e01d94 |
acts as the backend component controlling authentication. %{name} supports
|
|
|
e01d94 |
separate frontend programs and an example text-based frontend, hostapd_cli, is
|
|
|
e01d94 |
included with %{name}.
|
|
|
e01d94 |
|
|
|
e01d94 |
%package logwatch
|
|
|
e01d94 |
Summary: Logwatch scripts for hostapd
|
|
|
e01d94 |
Requires: %{name} = %{version}-%{release}
|
|
|
e01d94 |
Requires: logwatch
|
|
|
e01d94 |
%if 0%{?rhel} == 6 || 0%{?rhel} == 7
|
|
|
e01d94 |
Requires: perl
|
|
|
e01d94 |
%else
|
|
|
e01d94 |
Requires: perl-interpreter
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%description logwatch
|
|
|
e01d94 |
Logwatch scripts for hostapd.
|
|
|
e01d94 |
|
|
|
e01d94 |
%prep
|
|
|
e01d94 |
%setup -q
|
|
|
e01d94 |
|
|
|
e01d94 |
%build
|
|
|
e01d94 |
cd hostapd
|
|
|
e01d94 |
cat defconfig | sed \
|
|
|
e01d94 |
-e '$ a CONFIG_SAE=y' \
|
|
|
e01d94 |
-e '$ a CONFIG_SUITEB192=y' \
|
|
|
e01d94 |
-e '$ a CONFIG_TLS_DEFAULT_CIPHERS="PROFILE=SYSTEM:3DES"' \
|
|
|
e01d94 |
-e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_IEEE80211N=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_IEEE80211R=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_IEEE80211AC=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_LIBNL32=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_ACS=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_OWE=y/s/^#//' \
|
|
|
e01d94 |
-e '/^#CONFIG_WEP=y/s/^#//' \
|
|
|
e01d94 |
> .config
|
|
|
e01d94 |
echo "CFLAGS += -I%{_includedir}/libnl3" >> .config
|
|
|
e01d94 |
echo "LIBS += -L%{_libdir}" >> .config
|
|
|
e01d94 |
export CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE"
|
|
|
e01d94 |
export CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE"
|
|
|
e01d94 |
export LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now"
|
|
|
e01d94 |
make %{?_smp_mflags} V=1
|
|
|
e01d94 |
|
|
|
e01d94 |
%install
|
|
|
e01d94 |
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
|
e01d94 |
|
|
|
e01d94 |
# Systemd unit files
|
|
|
e01d94 |
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
|
|
|
e01d94 |
|
|
|
e01d94 |
%else
|
|
|
e01d94 |
|
|
|
e01d94 |
# Initscripts
|
|
|
e01d94 |
install -p -m 755 -D %{SOURCE5} %{buildroot}%{_initrddir}/%{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
# logwatch files
|
|
|
e01d94 |
install -d %{buildroot}/%{_sysconfdir}/logwatch/conf/services
|
|
|
e01d94 |
install -pm 0644 %{name}/logwatch/%{name}.conf \
|
|
|
e01d94 |
%{buildroot}/%{_sysconfdir}/logwatch/conf/services/%{name}.conf
|
|
|
e01d94 |
install -d %{buildroot}/%{_sysconfdir}/logwatch/scripts/services
|
|
|
e01d94 |
install -pm 0755 %{name}/logwatch/%{name} \
|
|
|
e01d94 |
%{buildroot}/%{_sysconfdir}/logwatch/scripts/services/%{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
# config files
|
|
|
e01d94 |
install -d %{buildroot}/%{_sysconfdir}/%{name}
|
|
|
e01d94 |
install -pm 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
install -d %{buildroot}/%{_sysconfdir}/sysconfig
|
|
|
e01d94 |
install -pm 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
# binaries
|
|
|
e01d94 |
install -d %{buildroot}/%{_sbindir}
|
|
|
e01d94 |
install -pm 0755 %{name}/%{name} %{buildroot}%{_sbindir}/%{name}
|
|
|
e01d94 |
install -pm 0755 %{name}/%{name}_cli %{buildroot}%{_sbindir}/%{name}_cli
|
|
|
e01d94 |
|
|
|
e01d94 |
# man pages
|
|
|
e01d94 |
install -d %{buildroot}%{_mandir}/man{1,5,8}
|
|
|
e01d94 |
install -pm 0644 %{name}/%{name}_cli.1 %{buildroot}%{_mandir}/man1
|
|
|
e01d94 |
install -pm 0644 %{SOURCE3} %{buildroot}%{_mandir}/man5
|
|
|
e01d94 |
install -pm 0644 %{name}/%{name}.8 %{buildroot}%{_mandir}/man8
|
|
|
e01d94 |
|
|
|
e01d94 |
# prepare docs
|
|
|
e01d94 |
cp %{name}/README ./README.%{name}
|
|
|
e01d94 |
cp %{name}/README-WPS ./README-WPS.%{name}
|
|
|
e01d94 |
cp %{name}/logwatch/README ./README.logwatch
|
|
|
e01d94 |
|
|
|
e01d94 |
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
|
e01d94 |
|
|
|
e01d94 |
%post
|
|
|
e01d94 |
%systemd_post %{name}.service
|
|
|
e01d94 |
|
|
|
e01d94 |
%preun
|
|
|
e01d94 |
%systemd_preun %{name}.service
|
|
|
e01d94 |
|
|
|
e01d94 |
%postun
|
|
|
e01d94 |
%systemd_postun_with_restart %{name}.service
|
|
|
e01d94 |
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%if 0%{?rhel} == 6
|
|
|
e01d94 |
|
|
|
e01d94 |
%post
|
|
|
e01d94 |
/sbin/chkconfig --add %{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
%preun
|
|
|
e01d94 |
if [ $1 -eq 0 ]; then
|
|
|
e01d94 |
/sbin/service %{name} stop >/dev/null 2>&1 || :
|
|
|
e01d94 |
/sbin/chkconfig --del %{name}
|
|
|
e01d94 |
fi
|
|
|
e01d94 |
|
|
|
e01d94 |
%postun
|
|
|
e01d94 |
if [ $1 -ge 1 ]; then
|
|
|
e01d94 |
/sbin/service %{name} condrestart >/dev/null 2>&1 || :
|
|
|
e01d94 |
fi
|
|
|
e01d94 |
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%files
|
|
|
e01d94 |
%license COPYING
|
|
|
e01d94 |
%doc README README.hostapd README-WPS.hostapd
|
|
|
e01d94 |
%doc %{name}/%{name}.conf %{name}/wired.conf
|
|
|
e01d94 |
%doc %{name}/%{name}.accept %{name}/%{name}.deny
|
|
|
e01d94 |
%doc %{name}/%{name}.eap_user %{name}/%{name}.radius_clients
|
|
|
e01d94 |
%doc %{name}/%{name}.vlan %{name}/%{name}.wpa_psk
|
|
|
e01d94 |
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
|
|
|
e01d94 |
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
|
|
e01d94 |
%{_sbindir}/%{name}
|
|
|
e01d94 |
%{_sbindir}/%{name}_cli
|
|
|
e01d94 |
%dir %{_sysconfdir}/%{name}
|
|
|
e01d94 |
%{_mandir}/man1/*
|
|
|
e01d94 |
%{_mandir}/man5/*
|
|
|
e01d94 |
%{_mandir}/man8/*
|
|
|
e01d94 |
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
|
e01d94 |
%{_unitdir}/%{name}.service
|
|
|
e01d94 |
%else
|
|
|
e01d94 |
%{_initrddir}/%{name}
|
|
|
e01d94 |
%endif
|
|
|
e01d94 |
|
|
|
e01d94 |
%files logwatch
|
|
|
e01d94 |
%doc %{name}/logwatch/README
|
|
|
e01d94 |
%config(noreplace) %{_sysconfdir}/logwatch/conf/services/%{name}.conf
|
|
|
e01d94 |
%{_sysconfdir}/logwatch/scripts/services/%{name}
|
|
|
e01d94 |
|
|
|
e01d94 |
%changelog
|
|
|
e01d94 |
* Fri Jan 21 2022 Davide Caratti <dcaratti@redhat.com> - 2.10-1
|
|
|
e01d94 |
- Update to version 2.10, keeping CONFIG_WEP enabled
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Dec 22 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-17
|
|
|
e01d94 |
- fix typo while enabling support for suite B-192
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Dec 21 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-16
|
|
|
e01d94 |
- disable 'badfuncs' rpminspect test
|
|
|
e01d94 |
- change default value of CONFIG_TLS_DEFAULT_CIPHERS to allow using OpenSSL
|
|
|
e01d94 |
to compute 3DES
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon Dec 20 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-15
|
|
|
e01d94 |
- Build with -fPIE, and enable verbose build log
|
|
|
e01d94 |
- Enable CONFIG_SUITEB192
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sat Dec 18 2021 Tomas Pelka <tpelka@redhat.com> - 2.9-14
|
|
|
e01d94 |
- bump release and rebuild to correctly trigger gating
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.9-13
|
|
|
e01d94 |
- Rebuilt with OpenSSL 3.0.0
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Sep 3 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-12
|
|
|
e01d94 |
- backport fix for NetworkManager-ci failures with openssl-3.0.0
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-11
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue May 11 2021 John W. Linville <linville@redhat.com> - 2.9-10
|
|
|
e01d94 |
- Enable CONFIG_OWE build option in order to provide WPA3 capability
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9-9
|
|
|
e01d94 |
- Rebuilt for updated systemd-rpm-macros
|
|
|
e01d94 |
See https://pagure.io/fesco/issue/2583.
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Feb 10 2021 John W. Linville <linville@redhat.com> - 2.9-8
|
|
|
e01d94 |
- Add hostapd.conf.5 man file, with content borrowed from NetBSD
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-7
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Dec 10 2020 John W. Linville <linville@redhat.com> - 2.9-6
|
|
|
e01d94 |
- Enable environment file in hostapd service definition
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-5
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jun 24 2020 John W. Linville <linville@redhat.com> - 2.9-4
|
|
|
e01d94 |
- Fix CVE-2020-12695 (UPnP SUBSCRIBE misbehavior in hostapd WPS AP)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Oct 30 2019 John W. Linville <linville@redhat.com> - 2.9-2
|
|
|
e01d94 |
- Fix CVE-2019-16275 (AP mode PMF disconnection protection bypass)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Aug 09 2019 John W. Linville <linville@redhat.com> - 2.9-1
|
|
|
e01d94 |
- Update to version 2.9 from upstream
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jul 03 2019 Lubomir Rintel <lkundrak@v3.sk> - 2.8-2
|
|
|
e01d94 |
- Enable SAE
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed May 15 2019 John W. Linville <linville@redhat.com> - 2.8-1
|
|
|
e01d94 |
- Update to version 2.8 from upstream
|
|
|
e01d94 |
- Drop obsoleted patches
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-2
|
|
|
e01d94 |
- Bump N-V-R for rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-1
|
|
|
e01d94 |
- Update to version 2.7 from upstream
|
|
|
e01d94 |
- Remove obsolete patches for NL80211_ATTR_SMPS_MODE encoding and KRACK
|
|
|
e01d94 |
- Fix CVE-2019-9494 (cache attack against SAE)
|
|
|
e01d94 |
- Fix CVE-2019-9495 (cache attack against EAP-pwd)
|
|
|
e01d94 |
- Fix CVE-2019-9496 (SAE confirm missing state validation in hostapd/AP)
|
|
|
e01d94 |
- Fix CVE-2019-9497 (EAP-pwd server not checking for reflection attack)
|
|
|
e01d94 |
- Fix CVE-2019-9498 (EAP-pwd server missing commit validation for scalar/element)
|
|
|
e01d94 |
- Fix CVE-2019-9499 (EAP-pwd peer missing commit validation for scalar/element)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-12
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jul 20 2018 John W. Linville <linville@redhat.com> - 2.6-11
|
|
|
e01d94 |
- Add previously unnecessary BuildRequires for gcc
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-10
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue May 29 2018 Davide Caratti <dcaratti@redhat.com> - 2.6-9
|
|
|
e01d94 |
- backport fix for Fix NL80211_ATTR_SMPS_MODE encoding (rh #1582839)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-8
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Dec 07 2017 Simone Caronni <negativo17@gmail.com> - 2.6-7
|
|
|
e01d94 |
- Fix dependencies on the logwatch package for RHEL/CentOS.
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Nov 03 2017 Xavier Bachelot <xavier@bachelot.org> - 2.6-6
|
|
|
e01d94 |
- Add patches for KRACK : CVE-2017-13077, CVE-2017-13078, CVE-2017-13079,
|
|
|
e01d94 |
CVE-2017-13080, CVE-2017-13081, CVE-2017-13082, CVE-2017-13086,
|
|
|
e01d94 |
CVE-2017-13087, CVE-2017-13088 (RHBZ#1502588).
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 2.6-3
|
|
|
e01d94 |
- perl dependency renamed to perl-interpreter
|
|
|
e01d94 |
<https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon Oct 03 2016 John W. Linville <linville@redhat.com> - 2.6-1
|
|
|
e01d94 |
- Update to version 2.6 from upstream
|
|
|
e01d94 |
- Remove patch for CVE-2016-4476, now included in base tarball
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jul 15 2016 John W. Linville <linville@redhat.com> - 2.5-5
|
|
|
e01d94 |
- Bump NVR and rebuild to resolve GLIBC_2.24 symbol issue
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon Jun 06 2016 John W. Linville <linville@redhat.com> - 2.5-4
|
|
|
e01d94 |
- Add WPS patch for CVE-2016-4476
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Apr 19 2016 Sascha Spreitzer <sspreitz@redhat.com> - 2.5-3
|
|
|
e01d94 |
- Enable ACS feature (automatic channel switching)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Oct 13 2015 John W. Linville <linville@redhat.com> - 2.5-1
|
|
|
e01d94 |
- Update to version 2.5 from upstream
|
|
|
e01d94 |
- Remove patches made redundant by version update
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jul 10 2015 John W. Linville <linville@redhat.com> - 2.4-3
|
|
|
e01d94 |
- apply fix for NDEF record payload length checking
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri May 15 2015 John W. Linville <linville@redhat.com> - 2.4-2
|
|
|
e01d94 |
- apply fix for underflow in WMM action frame parser
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Apr 21 2015 John W. Linville <linville@redhat.com> - 2.4-1
|
|
|
e01d94 |
- Update to version 2.4 from upstream
|
|
|
e01d94 |
- Enable support for IEEE802.11r and IEEE802.11ac
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Feb 4 2015 John W. Linville <linville@redhat.com> - 2.3-4
|
|
|
e01d94 |
- Use %%license instead of %%doc for file containing license information
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sun Nov 02 2014 poma <poma@gmail.com> - 2.3-3
|
|
|
e01d94 |
- Further simplify hostapd.conf installation
|
|
|
e01d94 |
- Rebase "EAP-TLS server" patch to 2.3
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Oct 28 2014 John W. Linville <linville@redhat.com> - 2.3-2
|
|
|
e01d94 |
- Remove version info from /usr/share/doc/hostapd/hostapd.conf
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Oct 23 2014 John W. Linville <linville@redhat.com> - 2.3-1
|
|
|
e01d94 |
- Update to version 2.3 from upstream
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-2
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jun 5 2014 John W. Linville <linville@redhat.com> - 2.2-1
|
|
|
e01d94 |
- Update to version 2.2 from upstream
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sat Feb 22 2014 Simone Caronni <negativo17@gmail.com> - 2.1-2
|
|
|
e01d94 |
- Re-enable drivers (#1068849).
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Feb 14 2014 John W. Linville <linville@redhat.com> - 2.1-1
|
|
|
e01d94 |
- Update to version 2.1 from upstream
|
|
|
e01d94 |
- Remove obsolete patch for libnl build documentation
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon Feb 03 2014 Simone Caronni <negativo17@gmail.com> - 2.0-6
|
|
|
e01d94 |
- Add libnl build documentation and switch libnl-devel to libnl3-devel build
|
|
|
e01d94 |
dependency (#1041471).
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Nov 22 2013 John W. Linville <linville@redhat.com> - 2.0-5
|
|
|
e01d94 |
- Enable CONFIG_FULL_DYNAMIC_VLAN build option
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Aug 07 2013 Simone Caronni <negativo17@gmail.com> - 2.0-4
|
|
|
e01d94 |
- Add EPEL 6 support.
|
|
|
e01d94 |
- Remove obsolete EPEL 5 tags.
|
|
|
e01d94 |
- Little spec file formatting.
|
|
|
e01d94 |
|
|
|
e01d94 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.0-2
|
|
|
e01d94 |
- Perl 5.18 rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu May 30 2013 John W. Linville <linville@redhat.com> - 2.0-1
|
|
|
e01d94 |
- Update to version 2.0 from upstream
|
|
|
e01d94 |
- Convert to use of systemd-rpm macros
|
|
|
e01d94 |
- Build with PIE flags
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon Oct 8 2012 John W. Linville <linville@redhat.com> - 1.0-3
|
|
|
e01d94 |
- EAP-TLS: Add extra validation for TLS Message Length
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jun 8 2012 John W. Linville <linville@redhat.com> - 1.0-1
|
|
|
e01d94 |
- Update to version 1.0 from upstream
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jun 8 2012 John W. Linville <linville@redhat.com> - 0.7.3-9
|
|
|
e01d94 |
- Remove hostapd-specific runtime state directory
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jun 6 2012 John W. Linville <linville@redhat.com> - 0.7.3-8
|
|
|
e01d94 |
- Fixup typo in pid file path in hostapd.service
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed May 30 2012 John W. Linville <linville@redhat.com> - 0.7.3-7
|
|
|
e01d94 |
- Add BuildRequires for systemd-units
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri May 25 2012 John W. Linville <linville@redhat.com> - 0.7.3-6
|
|
|
e01d94 |
- Fixup typo in configuration file path in hostapd.service
|
|
|
e01d94 |
- Tighten-up default permissions for hostapd.conf
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Feb 28 2012 Jon Ciesla <limburgher@gmail.com> - 0.7.3-5
|
|
|
e01d94 |
- Migrate to systemd, BZ 770310.
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Jan 18 2012 John W. Linville <linville@redhat.com> - 0.7.3-4
|
|
|
e01d94 |
- Add reference to sample hostapd.conf in the default installed version
|
|
|
e01d94 |
- Include README-WPS from the hostapd distribution as part of the docs
|
|
|
e01d94 |
|
|
|
e01d94 |
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-3
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
|
|
|
e01d94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Dec 23 2010 John W. Linville <linville@redhat.com> - 0.7.3-1
|
|
|
e01d94 |
- Update to version 0.7.3
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Nov 24 2010 John W. Linville <linville@redhat.com> - 0.6.10-3
|
|
|
e01d94 |
- Use ghost directive for /var/run/hostapd
|
|
|
e01d94 |
- Remove some rpmlint warnings
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu May 27 2010 John W. Linville <linville@redhat.com> - 0.6.10-2
|
|
|
e01d94 |
- Move DTIM period configuration into Beacon set operation
|
|
|
e01d94 |
|
|
|
e01d94 |
* Mon May 10 2010 John W. Linville <linville@redhat.com> - 0.6.10-1
|
|
|
e01d94 |
- Update to version 0.6.10
|
|
|
e01d94 |
|
|
|
e01d94 |
* Tue Jan 19 2010 John W. Linville <linville@redhat.com> - 0.6.9-8
|
|
|
e01d94 |
- Do not compress man pages manually in spec file
|
|
|
e01d94 |
- Correct date of previous changelog entry
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Jan 14 2010 John W. Linville <linville@redhat.com> - 0.6.9-7
|
|
|
e01d94 |
- Enable 802.11n support
|
|
|
e01d94 |
|
|
|
e01d94 |
* Thu Dec 17 2009 John W. Linville <linville@redhat.com> - 0.6.9-6
|
|
|
e01d94 |
- Enable RADIUS server
|
|
|
e01d94 |
- Enable "wired" and "none" drivers
|
|
|
e01d94 |
- Use BSD license option
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-5
|
|
|
e01d94 |
- Use openssl instead of gnutls (broken)
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-4
|
|
|
e01d94 |
- Remove wired.conf from doc (not in chosen configuration)
|
|
|
e01d94 |
- Use $RPM_OPT_FLAGS
|
|
|
e01d94 |
- Add dist tag
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-3
|
|
|
e01d94 |
- Use gnutls instead of openssl
|
|
|
e01d94 |
- Turn-off internal EAP server (broken w/ gnutls)
|
|
|
e01d94 |
- Remove doc files not applicable to chosen configuration
|
|
|
e01d94 |
- Un-mangle README filename for logwatch sub-package
|
|
|
e01d94 |
|
|
|
e01d94 |
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-2
|
|
|
e01d94 |
- Initial build
|
|
|
e01d94 |
- Start release at 2 to avoid conflicts w/ previous attempts by others
|