a6b4ce
%define rcver %{nil}
a6b4ce
%define snapshot %{nil}
a6b4ce
a6b4ce
%global _hardened_build 1
a6b4ce
a6b4ce
Summary: WPA/WPA2/IEEE 802.1X Supplicant
a6b4ce
Name: wpa_supplicant
a6b4ce
Epoch: 1
a6b4ce
Version: 2.0
147a26
Release: 12%{?dist}
a6b4ce
License: BSD
a6b4ce
Group: System Environment/Base
a6b4ce
Source0: http://w1.fi/releases/%{name}-%{version}%{rcver}%{snapshot}.tar.gz
a6b4ce
Source1: build-config
a6b4ce
Source2: %{name}.conf
a6b4ce
Source3: %{name}.service
a6b4ce
Source4: %{name}.sysconfig
a6b4ce
Source6: %{name}.logrotate
a6b4ce
a6b4ce
%define build_gui 1
a6b4ce
%define build_libeap 1
a6b4ce
%if 0%{?rhel} >= 1
a6b4ce
%define build_gui 0
a6b4ce
%define build_libeap 0
a6b4ce
%endif
a6b4ce
a6b4ce
# distro specific customization and not suitable for upstream,
a6b4ce
# works around busted drivers
a6b4ce
Patch0: wpa_supplicant-assoc-timeout.patch
a6b4ce
# ensures that debug output gets flushed immediately to help diagnose driver
a6b4ce
# bugs, not suitable for upstream
a6b4ce
Patch1: wpa_supplicant-flush-debug-output.patch
a6b4ce
# disto specific customization for log paths, not suitable for upstream
a6b4ce
Patch2: wpa_supplicant-dbus-service-file-args.patch
a6b4ce
# quiet an annoying and frequent syslog message
a6b4ce
Patch3: wpa_supplicant-quiet-scan-results-message.patch
a6b4ce
# allow more private key encryption algorithms
a6b4ce
Patch5: wpa_supplicant-openssl-more-algs.patch
a6b4ce
# distro specific customization for Qt4 build tools, not suitable for upstream
a6b4ce
Patch6: wpa_supplicant-gui-qt4.patch
a6b4ce
# Fix libnl3 includes path
a6b4ce
Patch7: libnl3-includes.patch
a6b4ce
# Less aggressive roaming; signal strength is wildly variable
a6b4ce
Patch8: rh837402-less-aggressive-roaming.patch
147a26
# Add missing command-line options to man page, also filed upstream
147a26
Patch9: rh948453-man-page.patch
147a26
# Don't evict current AP from PMKSA cache when it's large
147a26
Patch10: rh1032758-fix-pmksa-cache-entry-clearing.patch
a6b4ce
%if %{build_libeap}
a6b4ce
# Dirty hack for WiMAX
a6b4ce
# http://linuxwimax.org/Download?action=AttachFile&do=get&target=wpa-1.5-README.txt
a6b4ce
Patch100: wpa_supplicant-2.0-generate-libeap-peer.patch
a6b4ce
%endif
a6b4ce
a6b4ce
URL: http://w1.fi/wpa_supplicant/
a6b4ce
a6b4ce
%if %{build_gui}
a6b4ce
BuildRequires: qt-devel >= 4.0
a6b4ce
%endif
a6b4ce
BuildRequires: openssl-devel
a6b4ce
BuildRequires: readline-devel
a6b4ce
BuildRequires: dbus-devel
a6b4ce
BuildRequires: libnl3-devel
a6b4ce
BuildRequires: systemd-units
147a26
BuildRequires: docbook-utils
a6b4ce
Requires(post): systemd-sysv
a6b4ce
Requires(post): systemd-units
a6b4ce
Requires(preun): systemd-units
a6b4ce
Requires(postun): systemd-units
a6b4ce
a6b4ce
%description
a6b4ce
wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support
a6b4ce
for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA
a6b4ce
component that is used in the client stations. It implements key negotiation
a6b4ce
with a WPA Authenticator and it controls the roaming and IEEE 802.11
a6b4ce
authentication/association of the wlan driver.
a6b4ce
a6b4ce
%if %{build_gui}
a6b4ce
a6b4ce
%package gui
a6b4ce
Summary: Graphical User Interface for %{name}
a6b4ce
Group: Applications/System
a6b4ce
a6b4ce
%description gui
a6b4ce
Graphical User Interface for wpa_supplicant written using QT
a6b4ce
a6b4ce
%endif
a6b4ce
a6b4ce
%if %{build_libeap}
a6b4ce
%package -n libeap
a6b4ce
Summary: EAP peer library
a6b4ce
Group: System Environment/Libraries
a6b4ce
a6b4ce
%description -n libeap
a6b4ce
This package contains the runtime EAP peer library. Don't use this
a6b4ce
unless you know what you're doing.
a6b4ce
a6b4ce
%package -n libeap-devel
a6b4ce
Summary: Header files for EAP peer library
a6b4ce
Group: Development/Libraries
a6b4ce
Requires: libeap = %{epoch}:%{version}-%{release}
a6b4ce
a6b4ce
%description -n libeap-devel
a6b4ce
This package contains header files for using the EAP peer library.
a6b4ce
Don't use this unless you know what you're doing.
a6b4ce
%endif
a6b4ce
a6b4ce
%prep
a6b4ce
%setup -q -n %{name}-%{version}%{rcver}
a6b4ce
%patch0 -p1 -b .assoc-timeout
a6b4ce
%patch1 -p1 -b .flush-debug-output
a6b4ce
%patch2 -p1 -b .dbus-service-file
a6b4ce
%patch3 -p1 -b .quiet-scan-results-msg
a6b4ce
%patch5 -p1 -b .more-openssl-algs
a6b4ce
%patch6 -p1 -b .qt4
a6b4ce
%patch7 -p1 -b .libnl3
a6b4ce
%patch8 -p1 -b .rh837402-less-aggressive-roaming
147a26
%patch9 -p1 -b .man-page
147a26
%patch10 -p1 -b .pmksa-clear-fix
a6b4ce
a6b4ce
%build
a6b4ce
pushd wpa_supplicant
a6b4ce
  cp %{SOURCE1} .config
a6b4ce
  CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE" ; export CFLAGS ;
a6b4ce
  CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE" ; export CXXFLAGS ;
a6b4ce
  LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now" ; export LDFLAGS ;
a6b4ce
  # yes, BINDIR=_sbindir
a6b4ce
  BINDIR="%{_sbindir}" ; export BINDIR ;
a6b4ce
  LIBDIR="%{_libdir}" ; export LIBDIR ;
a6b4ce
  make %{_smp_mflags}
a6b4ce
%if %{build_gui}
a6b4ce
  QTDIR=%{_libdir}/qt4 make wpa_gui-qt4 %{_smp_mflags}
a6b4ce
%endif
a6b4ce
  make eapol_test
a6b4ce
popd
a6b4ce
147a26
pushd wpa_supplicant/doc/docbook
147a26
  make
147a26
popd
147a26
a6b4ce
%install
a6b4ce
# init scripts
a6b4ce
install -D -m 0755 %{SOURCE3} %{buildroot}/%{_unitdir}/%{name}.service
a6b4ce
install -D -m 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
a6b4ce
install -D -m 0644 %{SOURCE6} %{buildroot}/%{_sysconfdir}/logrotate.d/%{name}
a6b4ce
a6b4ce
# config
a6b4ce
install -D -m 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}/%{name}.conf
a6b4ce
a6b4ce
# binary
a6b4ce
install -d %{buildroot}/%{_sbindir}
a6b4ce
install -m 0755 %{name}/wpa_passphrase %{buildroot}/%{_sbindir}
a6b4ce
install -m 0755 %{name}/wpa_cli %{buildroot}/%{_sbindir}
a6b4ce
install -m 0755 %{name}/wpa_supplicant %{buildroot}/%{_sbindir}
a6b4ce
install -m 0755 %{name}/eapol_test %{buildroot}/%{_sbindir}
a6b4ce
install -D -m 0644 %{name}/dbus/dbus-wpa_supplicant.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/wpa_supplicant.conf
a6b4ce
install -D -m 0644 %{name}/dbus/fi.w1.wpa_supplicant1.service %{buildroot}/%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
a6b4ce
install -D -m 0644 %{name}/dbus/fi.epitest.hostap.WPASupplicant.service %{buildroot}/%{_datadir}/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
a6b4ce
a6b4ce
%if %{build_gui}
a6b4ce
# gui
a6b4ce
install -d %{buildroot}/%{_bindir}
a6b4ce
install -m 0755 %{name}/wpa_gui-qt4/wpa_gui %{buildroot}/%{_bindir}
a6b4ce
%endif
a6b4ce
a6b4ce
# running
a6b4ce
mkdir -p %{buildroot}/%{_localstatedir}/run/%{name}
a6b4ce
a6b4ce
# man pages
a6b4ce
install -d %{buildroot}%{_mandir}/man{5,8}
a6b4ce
install -m 0644 %{name}/doc/docbook/*.8 %{buildroot}%{_mandir}/man8
a6b4ce
install -m 0644 %{name}/doc/docbook/*.5 %{buildroot}%{_mandir}/man5
a6b4ce
a6b4ce
# some cleanup in docs and examples
a6b4ce
rm -f  %{name}/doc/.cvsignore
a6b4ce
rm -rf %{name}/doc/docbook
a6b4ce
chmod -R 0644 %{name}/examples/*.py
a6b4ce
a6b4ce
%if %{build_libeap}
a6b4ce
# HAAACK
a6b4ce
patch -p1 -b --suffix .wimax < %{PATCH100}
a6b4ce
pushd wpa_supplicant
a6b4ce
  make clean
a6b4ce
a6b4ce
  CFLAGS="${CFLAGS:-%optflags} -fPIC -DPIC" ; export CFLAGS ;
a6b4ce
  CXXFLAGS="${CXXFLAGS:-%optflags} -fPIC -DPIC" ; export CXXFLAGS ;
a6b4ce
  LDFLAGS="${LDFLAGS:-%optflags} -Wl,-z,now" ; export LDFLAGS ;
a6b4ce
  # yes, BINDIR=_sbindir
a6b4ce
  BINDIR="%{_sbindir}" ; export BINDIR ;
a6b4ce
  LIBDIR="%{_libdir}" ; export LIBDIR ;
a6b4ce
a6b4ce
  make V=1 -C ../src/eap_peer
a6b4ce
  make DESTDIR=%{buildroot} LIB=%{_lib} -C ../src/eap_peer install
a6b4ce
  sed -i -e 's|libdir=/usr/lib|libdir=%{_libdir}|g' %{buildroot}/%{_libdir}/pkgconfig/*.pc
a6b4ce
popd
a6b4ce
%endif
a6b4ce
a6b4ce
%post
a6b4ce
if [ $1 -eq 1 ] ; then 
a6b4ce
    # Initial installation 
a6b4ce
    /bin/systemctl daemon-reload >/dev/null 2>&1 || :
a6b4ce
fi
a6b4ce
a6b4ce
%preun
a6b4ce
if [ $1 -eq 0 ] ; then
a6b4ce
    # Package removal, not upgrade
a6b4ce
    /bin/systemctl --no-reload disable wpa_supplicant.service > /dev/null 2>&1 || :
a6b4ce
    /bin/systemctl stop wpa_supplicant.service > /dev/null 2>&1 || :
a6b4ce
fi
a6b4ce
a6b4ce
%postun
a6b4ce
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
a6b4ce
if [ $1 -ge 1 ] ; then
a6b4ce
    # Package upgrade, not uninstall
a6b4ce
    /bin/systemctl try-restart wpa_supplicant.service >/dev/null 2>&1 || :
a6b4ce
fi
a6b4ce
a6b4ce
%triggerun -- wpa_supplicant < 0.7.3-10
a6b4ce
# Save the current service runlevel info
a6b4ce
# User must manually run systemd-sysv-convert --apply wpa_supplicant
a6b4ce
# to migrate them to systemd targets
a6b4ce
/usr/bin/systemd-sysv-convert --save wpa_supplicant >/dev/null 2>&1 ||:
a6b4ce
a6b4ce
# Run these because the SysV package being removed won't do them
a6b4ce
/sbin/chkconfig --del wpa_supplicant >/dev/null 2>&1 || :
a6b4ce
/bin/systemctl try-restart wpa_supplicant.service >/dev/null 2>&1 || :
a6b4ce
a6b4ce
a6b4ce
%files
a6b4ce
%doc COPYING %{name}/ChangeLog README %{name}/eap_testing.txt %{name}/todo.txt %{name}/wpa_supplicant.conf %{name}/examples
a6b4ce
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
a6b4ce
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
a6b4ce
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
a6b4ce
%{_unitdir}/%{name}.service
a6b4ce
%{_sysconfdir}/dbus-1/system.d/%{name}.conf
a6b4ce
%{_datadir}/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
a6b4ce
%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
a6b4ce
%{_sbindir}/wpa_passphrase
a6b4ce
%{_sbindir}/wpa_supplicant
a6b4ce
%{_sbindir}/wpa_cli
a6b4ce
%{_sbindir}/eapol_test
a6b4ce
%dir %{_localstatedir}/run/%{name}
a6b4ce
%dir %{_sysconfdir}/%{name}
a6b4ce
%{_mandir}/man8/*
a6b4ce
%{_mandir}/man5/*
a6b4ce
a6b4ce
%if %{build_gui}
a6b4ce
%files gui
a6b4ce
%{_bindir}/wpa_gui
a6b4ce
%endif
a6b4ce
a6b4ce
%if %{build_libeap}
a6b4ce
%files -n libeap
a6b4ce
%{_libdir}/libeap.so.0*
a6b4ce
a6b4ce
%files -n libeap-devel
a6b4ce
%{_includedir}/eap_peer
a6b4ce
%{_libdir}/libeap.so
a6b4ce
%{_libdir}/pkgconfig/*.pc
a6b4ce
a6b4ce
%post -n libeap -p /sbin/ldconfig
a6b4ce
a6b4ce
%postun -n libeap -p /sbin/ldconfig
a6b4ce
%endif
a6b4ce
a6b4ce
%changelog
147a26
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:2.0-12
147a26
- Mass rebuild 2014-01-24
147a26
147a26
* Mon Jan 20 2014 Dan Williams <dcbw@redhat.com> - 1:2.0-11
147a26
- Add eapol_test manpage (rh #948453)
147a26
147a26
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:2.0-10
147a26
- Mass rebuild 2013-12-27
147a26
147a26
* Mon Dec 16 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-9
147a26
- Don't disconnect when PMKSA cache gets too large (rh #1032758) (rh #1016707)
147a26
147a26
* Mon Dec 16 2013 Dan Winship <danw@redhat.com> - 1:2.0-8
147a26
- Fill in some gaps in the man pages (rh #948453)
147a26
a6b4ce
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-6
a6b4ce
- Enable full RELRO/PIE/PIC for wpa_supplicant and libeap
a6b4ce
- Fix changelog dates
a6b4ce
a6b4ce
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-5
a6b4ce
- Build and package eapol_test (rh #638218)
a6b4ce
a6b4ce
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-4
a6b4ce
- Disable WiMAX libeap hack for RHEL
a6b4ce
a6b4ce
* Wed May 15 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-3
a6b4ce
- Enable HT (802.11n) for AP mode
a6b4ce
a6b4ce
* Tue May  7 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-2
a6b4ce
- Use hardened build macros and ensure they apply to libeap too
a6b4ce
a6b4ce
* Mon May  6 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-1
a6b4ce
- Update to 2.0
a6b4ce
- Be less aggressive when roaming due to signal strength changes (rh #837402)
a6b4ce
a6b4ce
* Mon Apr  1 2013 Dan Williams <dcbw@redhat.com> - 1:1.1-1
a6b4ce
- Update to 1.1
a6b4ce
- Be less aggressive when roaming due to signal strength changes
a6b4ce
a6b4ce
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-4
a6b4ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a6b4ce
a6b4ce
* Sun Jan 20 2013 Dan Horák <dan@danny.cz> - 1:1.0-3
a6b4ce
- rebuilt again for fixed soname in libnl3
a6b4ce
a6b4ce
* Sun Jan 20 2013 Kalev Lember <kalevlember@gmail.com> - 1:1.0-2
a6b4ce
- Rebuilt for libnl3
a6b4ce
a6b4ce
* Wed Aug 29 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-1
a6b4ce
- Enable lightweight AP mode support
a6b4ce
- Enable P2P (WiFi Direct) support
a6b4ce
- Enable RSN IBSS/AdHoc support
a6b4ce
a6b4ce
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-0.5
a6b4ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a6b4ce
a6b4ce
* Tue May  1 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.4
a6b4ce
- Update to wpa_supplicant 1.0-rc3
a6b4ce
- Fix systemd target dependencies (rh #815091)
a6b4ce
a6b4ce
* Fri Mar  2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.3
a6b4ce
- Update to latest 1.0 git snapshot
a6b4ce
- Rebuild against libnl3
a6b4ce
a6b4ce
* Thu Feb  2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.2
a6b4ce
- Fix driver fallback for non nl80211-based drivers (rh #783712)
a6b4ce
a6b4ce
* Tue Jan 10 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.1
a6b4ce
- Update to 1.0-rc1 + git
a6b4ce
a6b4ce
* Fri Sep  9 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-11
a6b4ce
- add missing systemd scriptlets
a6b4ce
a6b4ce
* Thu Sep  8 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-10
a6b4ce
- convert to systemd
a6b4ce
a6b4ce
* Wed Jul 27 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-9
a6b4ce
- Fix various crashes with D-Bus interface (rh #678625) (rh #725517)
a6b4ce
a6b4ce
* Tue May  3 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-8
a6b4ce
- Don't crash when trying to access invalid properties via D-Bus (rh #678625)
a6b4ce
a6b4ce
* Mon May  2 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-7
a6b4ce
- Make examples read-only to avoid erroneous python dependency (rh #687952)
a6b4ce
a6b4ce
* Tue Apr 19 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-6
a6b4ce
- Fix EAP patch to only apply when building libeap
a6b4ce
a6b4ce
* Fri Mar 25 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-5
a6b4ce
- Add libeap/libeap-devel subpackge for WiMAX usage
a6b4ce
a6b4ce
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.7.3-4
a6b4ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a6b4ce
a6b4ce
* Tue Jan 11 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-3
a6b4ce
- Enable EAP-TNC (rh #659038)
a6b4ce
a6b4ce
* Wed Dec 15 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-2
a6b4ce
- Enable the bgscan_simple plugin
a6b4ce
a6b4ce
* Wed Dec  8 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-1
a6b4ce
- Update to 0.7.3
a6b4ce
- Drop upstreamed and backported patches
a6b4ce
- Drop support for Qt3
a6b4ce
a6b4ce
* Thu Oct  7 2010 Peter Lemenkov <lemenkov@gmail.com> - 1:0.6.8-11
a6b4ce
- Added comments to some patches (see rhbz #226544#c17)
a6b4ce
- Shortened %%install section a bit
a6b4ce
a6b4ce
* Thu May 13 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-10
a6b4ce
- Remove prereq on chkconfig
a6b4ce
- Build GUI with qt4 for rawhide (rh #537105)
a6b4ce
a6b4ce
* Thu May  6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-9
a6b4ce
- Fix crash when interfaces are removed (like suspend/resume) (rh #589507)
a6b4ce
a6b4ce
* Wed Jan  6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-8
a6b4ce
- Fix handling of newer PKCS#12 files (rh #541924)
a6b4ce
a6b4ce
* Sun Nov 29 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-7
a6b4ce
- Fix supplicant initscript return value (rh #521807)
a6b4ce
- Fix race when connecting to WPA-Enterprise/802.1x-enabled access points (rh #508509)
a6b4ce
- Don't double-scan when attempting to associate
a6b4ce
a6b4ce
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.8-6
a6b4ce
- rebuilt with new openssl
a6b4ce
a6b4ce
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.6.8-5
a6b4ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a6b4ce
a6b4ce
* Wed May 13 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-4
a6b4ce
- Let D-Bus clients know when the supplicant is scanning
a6b4ce
a6b4ce
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-3
a6b4ce
- Ensure the supplicant starts and ends with clean driver state
a6b4ce
- Handle driver disconnect spammage by forcibly clearing SSID
a6b4ce
- Don't switch access points unless the current association is dire (rh #493745)
a6b4ce
a6b4ce
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-2
a6b4ce
- Avoid creating bogus Ad-Hoc networks when forcing the driver to disconnect (rh #497771)
a6b4ce
a6b4ce
* Mon Mar  9 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-1
a6b4ce
- Update to latest upstream release
a6b4ce
a6b4ce
* Wed Feb 25 2009 Colin Walters <walters@verbum.org> - 1:0.6.7-4
a6b4ce
- Add patch from upstream to suppress unrequested replies, this
a6b4ce
  quiets a dbus warning.
a6b4ce
a6b4ce
* Fri Feb  6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-3
a6b4ce
- Fix scan result retrieval in very dense wifi environments
a6b4ce
a6b4ce
* Fri Feb  6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-2
a6b4ce
- Ensure that drivers don't retry association when they aren't supposed to
a6b4ce
a6b4ce
* Fri Jan 30 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-1
a6b4ce
- Fix PEAP connections to Windows Server 2008 authenticators (rh #465022)
a6b4ce
- Stop supplicant on uninstall (rh #447843)
a6b4ce
- Suppress scan results message in logs (rh #466601)
a6b4ce
a6b4ce
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.4-3
a6b4ce
- rebuild with new openssl
a6b4ce
a6b4ce
* Wed Oct 15 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-2
a6b4ce
- Handle encryption keys correctly when switching 802.11 modes (rh #459399)
a6b4ce
- Better scanning behavior on resume from suspend/hibernate
a6b4ce
- Better interaction with newer kernels and drivers
a6b4ce
a6b4ce
* Wed Aug 27 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-1
a6b4ce
- Update to 0.6.4
a6b4ce
- Remove 'hostap', 'madwifi', and 'prism54' drivers; use standard 'wext' instead
a6b4ce
- Drop upstreamed patches
a6b4ce
a6b4ce
* Tue Jun 10 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-6
a6b4ce
- Fix 802.11a frequency bug
a6b4ce
- Always schedule specific SSID scans to help find hidden APs
a6b4ce
- Properly switch between modes on mac80211 drivers
a6b4ce
- Give adhoc connections more time to assocate
a6b4ce
a6b4ce
* Mon Mar 10 2008 Christopher Aillon <caillon@redhat.com> - 1:0.6.3-5
a6b4ce
- BuildRequires qt3-devel
a6b4ce
a6b4ce
* Sat Mar  8 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-4
a6b4ce
- Fix log file path in service config file
a6b4ce
a6b4ce
* Thu Mar  6 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-3
a6b4ce
- Don't start the supplicant by default when installed (rh #436380)
a6b4ce
a6b4ce
* Tue Mar  4 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-2
a6b4ce
- Fix a potential use-after-free in the D-Bus byte array demarshalling code
a6b4ce
a6b4ce
* Mon Mar  3 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-1
a6b4ce
- Update to latest development release; remove upstreamed patches
a6b4ce
a6b4ce
* Fri Feb 22 2008 Dan Williams <dcbw@redhat.com> 1:0.5.7-23
a6b4ce
- Fix gcc 4.3 rebuild issues
a6b4ce
a6b4ce
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:0.5.7-22
a6b4ce
- Autorebuild for GCC 4.3
a6b4ce
a6b4ce
* Tue Dec 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-21
a6b4ce
- Backport 'frequency' option for Ad-Hoc network configs
a6b4ce
a6b4ce
* Mon Dec 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-20
a6b4ce
- Fix LSB initscript header to ensure 'messagebus' is started first (rh #244029)
a6b4ce
a6b4ce
* Thu Dec  6 2007 Dan Williams <dcbw@redhat.com> - 1:0.5.7-19
a6b4ce
- Fix two leaks when signalling state and scan results (rh #408141)
a6b4ce
- Add logrotate config file (rh #404181)
a6b4ce
- Add new LSB initscript header to initscript with correct deps (rh #244029)
a6b4ce
- Move other runtime arguments to /etc/sysconfig/wpa_supplicant
a6b4ce
- Start after messagebus service (rh #385191)
a6b4ce
- Fix initscript 'condrestart' command (rh #217281)
a6b4ce
a6b4ce
* Tue Dec  4 2007 Matthias Clasen <mclasen@redhat.com> - 1:0.5.7-18
a6b4ce
- Rebuild against new openssl
a6b4ce
a6b4ce
* Tue Dec  4 2007 Ville Skyttä <ville.skytta at iki.fi> - 1:0.5.7-17
a6b4ce
- Group: Application/System -> Applications/System in -gui.
a6b4ce
a6b4ce
* Tue Nov 13 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-16
a6b4ce
- Add IW_ENCODE_TEMP patch for airo driver and Dynamic WEP
a6b4ce
- Fix error in wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch that
a6b4ce
    caused the last error to not be printed
a6b4ce
- Fix wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch to ignore
a6b4ce
    duplicate cert additions for all certs and keys
a6b4ce
- Change license to BSD due to linkage against OpenSSL since there is no
a6b4ce
    OpenSSL exception in the GPLv2 license text that upstream ships
a6b4ce
a6b4ce
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-15
a6b4ce
- Fix Dynamic WEP associations with mac80211-based drivers
a6b4ce
a6b4ce
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-14
a6b4ce
- Don't error an association on duplicate CA cert additions
a6b4ce
a6b4ce
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-13
a6b4ce
- Correctly set the length of blobs added via the D-Bus interface
a6b4ce
a6b4ce
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-12
a6b4ce
- Fix conversion of byte arrays to strings by ensuring the buffer is NULL
a6b4ce
    terminated after conversion
a6b4ce
a6b4ce
* Sat Oct 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-11
a6b4ce
- Add BLOB support to the D-Bus interface
a6b4ce
- Fix D-Bus interface permissions so that only root can use the wpa_supplicant
a6b4ce
    D-Bus interface
a6b4ce
a6b4ce
* Tue Oct  9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-10
a6b4ce
- Don't segfault with dbus control interface enabled and invalid network
a6b4ce
    interface (rh #310531)
a6b4ce
a6b4ce
* Tue Sep 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-9
a6b4ce
- Always allow explicit wireless scans triggered from a control interface
a6b4ce
a6b4ce
* Thu Sep 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-8
a6b4ce
- Change system bus activation file name to work around D-Bus bug that fails
a6b4ce
    to launch services unless their .service file is named the same as the
a6b4ce
    service itself
a6b4ce
a6b4ce
* Fri Aug 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-7
a6b4ce
- Make SIGUSR1 change debug level on-the-fly; useful in combination with
a6b4ce
    the -f switch to log output to /var/log/wpa_supplicant.log
a6b4ce
- Stop stripping binaries on install so we get debuginfo packages
a6b4ce
- Remove service start requirement for interfaces & devices from sysconfig file,
a6b4ce
    since wpa_supplicant's D-Bus interface is now turned on
a6b4ce
a6b4ce
* Fri Aug 17 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-6
a6b4ce
- Fix compilation with RPM_OPT_FLAGS (rh #249951)
a6b4ce
- Make debug output to logfile a runtime option
a6b4ce
a6b4ce
* Fri Aug 17 2007 Christopher Aillon <caillon@redhat.com> - 0.5.7-5
a6b4ce
- Update the license tag
a6b4ce
a6b4ce
* Tue Jun 19 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-4
a6b4ce
- Fix initscripts to use -Dwext by default, be more verbose on startup
a6b4ce
    (rh #244511)
a6b4ce
a6b4ce
* Mon Jun  4 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-3
a6b4ce
- Fix buffer overflow by removing syslog patch (#rh242455)
a6b4ce
a6b4ce
* Mon Apr  9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-2
a6b4ce
- Add patch to send output to syslog
a6b4ce
a6b4ce
* Thu Mar 15 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-1
a6b4ce
- Update to 0.5.7 stable release
a6b4ce
a6b4ce
* Fri Oct 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.9-1
a6b4ce
- Update to 0.4.9 for WE-21 fixes, remove upstreamed patches
a6b4ce
- Don't package doc/ because they aren't actually wpa_supplicant user documentation,
a6b4ce
    and becuase it pulls in perl
a6b4ce
a6b4ce
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.4.8-10.1
a6b4ce
- rebuild
a6b4ce
a6b4ce
* Thu Apr 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-10
a6b4ce
- Add fix for madwifi and WEP (wpa_supplicant/hostap bud #140) (#rh190075#)
a6b4ce
- Fix up madwifi-ng private ioctl()s for r1331 and later
a6b4ce
- Update madwifi headers to r1475
a6b4ce
a6b4ce
* Tue Apr 25 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-9
a6b4ce
- Enable Wired driver, PKCS12, and Smartcard options (#rh189805#)
a6b4ce
a6b4ce
* Tue Apr 11 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-8
a6b4ce
- Fix control interface key obfuscation a bit
a6b4ce
a6b4ce
* Sun Apr  2 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-7
a6b4ce
- Work around older & incorrect drivers that return null-terminated SSIDs
a6b4ce
a6b4ce
* Mon Mar 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-6
a6b4ce
- Add patch to make orinoco happy with WEP keys
a6b4ce
- Enable Prism54-specific driver
a6b4ce
- Disable ipw-specific driver; ipw2x00 should be using WEXT instead
a6b4ce
a6b4ce
* Fri Mar  3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-5
a6b4ce
- Increase association timeout, mainly for drivers that don't
a6b4ce
	fully support WPA ioctls yet
a6b4ce
a6b4ce
* Fri Mar  3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-4
a6b4ce
- Add additional BuildRequires #rh181914#
a6b4ce
- Add prereq on chkconfig #rh182905# #rh182906#
a6b4ce
- Own /var/run/wpa_supplicant and /etc/wpa_supplicant #rh183696#
a6b4ce
a6b4ce
* Wed Mar  1 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-3
a6b4ce
- Install wpa_passphrase too #rh183480#
a6b4ce
a6b4ce
* Mon Feb 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-2
a6b4ce
- Don't expose private data on the control interface unless requested
a6b4ce
a6b4ce
* Fri Feb 24 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-1
a6b4ce
- Downgrade to 0.4.8 stable release rather than a dev release
a6b4ce
a6b4ce
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-3
a6b4ce
- Documentation cleanup (Terje Rosten <terje.rosten@ntnu.no>)
a6b4ce
a6b4ce
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-2
a6b4ce
- Move initscript to /etc/rc.d/init.d
a6b4ce
a6b4ce
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.2
a6b4ce
- bump again for double-long bug on ppc(64)
a6b4ce
a6b4ce
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.1
a6b4ce
- rebuilt for new gcc4.1 snapshot and glibc changes
a6b4ce
a6b4ce
* Sun Feb  5 2006 Dan Williams <dcbw@redhat.com> 0.5.1-1
a6b4ce
- Update to 0.5.1
a6b4ce
- Add WE auth fallback to actually work with older drivers
a6b4ce
a6b4ce
* Thu Jan 26 2006 Dan Williams <dcbw@redhat.com> 0.4.7-2
a6b4ce
- Bring package into Fedora Core
a6b4ce
- Add ap_scan control interface patch
a6b4ce
- Enable madwifi-ng driver
a6b4ce
a6b4ce
* Sun Jan 15 2006 Douglas E. Warner <silfreed@silfreed.net> 0.4.7-1
a6b4ce
- upgrade to 0.4.7
a6b4ce
- added package w/ wpa_gui in it
a6b4ce
a6b4ce
* Mon Nov 14 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.6-1
a6b4ce
- upgrade to 0.4.6
a6b4ce
- adding ctrl interface changes recommended 
a6b4ce
  by Hugo Paredes <hugo.paredes@e-know.org>
a6b4ce
a6b4ce
* Sun Oct  9 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.5-1
a6b4ce
- upgrade to 0.4.5
a6b4ce
- updated config file wpa_supplicant is built with
a6b4ce
  especially, the ipw2100 driver changed to just ipw
a6b4ce
  and enabled a bunch more EAP
a6b4ce
- disabled dist tag
a6b4ce
a6b4ce
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-3
a6b4ce
- fix typo in init script
a6b4ce
a6b4ce
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-2
a6b4ce
- fixing init script using fedora-extras' template
a6b4ce
- removing chkconfig default startup
a6b4ce
a6b4ce
* Tue Jun 21 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-1
a6b4ce
- upgrade to 0.4.2
a6b4ce
- new sample conf file that will use any unrestricted AP
a6b4ce
- make sysconfig config entry
a6b4ce
- new BuildRoot for Fedora Extras
a6b4ce
- adding dist tag to Release
a6b4ce
a6b4ce
* Fri May 06 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.8-1
a6b4ce
- upgrade to 0.3.8
a6b4ce
a6b4ce
* Thu Feb 10 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-2
a6b4ce
- compile ipw driver in
a6b4ce
a6b4ce
* Wed Feb 09 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-1
a6b4ce
- upgrade to 0.3.6
a6b4ce
a6b4ce
* Thu Dec 23 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-4
a6b4ce
- fixing init script
a6b4ce
a6b4ce
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-3
a6b4ce
- fixing init script
a6b4ce
- adding post/preun items to add/remove via chkconfig
a6b4ce
a6b4ce
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-2
a6b4ce
- adding sysV scripts
a6b4ce
a6b4ce
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-1
a6b4ce
- Initial RPM release.
a6b4ce