537ca1
%undefine __cmake_in_source_build
537ca1
%global with_lua 1
537ca1
%global with_maxminddb 1
537ca1
%global plugins_version 3.4
537ca1
537ca1
Summary:	Network traffic analyzer
537ca1
Name:		wireshark
537ca1
Version:	3.4.10
537ca1
Release:	1%{?dist}
537ca1
Epoch:		1
537ca1
License:	GPL+
537ca1
Url:		http://www.wireshark.org/
537ca1
537ca1
Source0:	https://wireshark.org/download/src/%{name}-%{version}.tar.xz
537ca1
Source1:        https://www.wireshark.org/download/src/all-versions/SIGNATURES-%{version}.txt
537ca1
Source2:	90-wireshark-usbmon.rules
537ca1
537ca1
# Fedora-specific
537ca1
Patch2:		wireshark-0002-Customize-permission-denied-error.patch
537ca1
# Will be proposed upstream
537ca1
Patch3:		wireshark-0003-fix-string-overrun-in-plugins-profinet.patch
537ca1
# Fedora-specific
537ca1
Patch4:		wireshark-0004-Restore-Fedora-specific-groups.patch
537ca1
# Fedora-specific
537ca1
Patch5:		wireshark-0005-Fix-paths-in-a-wireshark.desktop-file.patch
537ca1
# Fedora-specific
537ca1
Patch6:		wireshark-0006-Move-tmp-to-var-tmp.patch
537ca1
Patch7:		wireshark-0007-cmakelists.patch
537ca1
#Patch8:		wireshark-0008-move-glib.patch
537ca1
Patch9:		wireshark-0009-smc-support.patch
537ca1
537ca1
#install tshark together with wireshark GUI
537ca1
Requires:	%{name}-cli = %{epoch}:%{version}-%{release}
537ca1
537ca1
Requires:	xdg-utils
537ca1
Requires:	hicolor-icon-theme
537ca1
537ca1
%if %{with_maxminddb} && 0%{?fedora}
537ca1
Requires:	libmaxminddb
537ca1
%endif
537ca1
537ca1
BuildRequires:	bzip2-devel
537ca1
BuildRequires:	c-ares-devel
537ca1
BuildRequires:	elfutils-devel
537ca1
BuildRequires:	gcc-c++
537ca1
BuildRequires:	glib2-devel
537ca1
BuildRequires:	gnutls-devel
537ca1
BuildRequires:	krb5-devel
537ca1
BuildRequires:	libcap-devel
537ca1
BuildRequires:	libgcrypt-devel
537ca1
BuildRequires:	libnl3-devel
537ca1
BuildRequires:	libpcap-devel >= 0.9
537ca1
BuildRequires:	libselinux-devel
537ca1
BuildRequires:	libsmi-devel
537ca1
BuildRequires:	openssl-devel
537ca1
BuildRequires:	desktop-file-utils
537ca1
BuildRequires:	xdg-utils
537ca1
BuildRequires:	bison
537ca1
BuildRequires:	flex
537ca1
BuildRequires:	pcre-devel
537ca1
BuildRequires:	perl(Pod::Html)
537ca1
BuildRequires:	perl(Pod::Man)
537ca1
BuildRequires:	perl(open)
537ca1
Buildrequires:	libssh-devel
537ca1
BuildRequires:	qt5-linguist
537ca1
BuildRequires:	qt5-qtbase-devel
537ca1
BuildRequires:	qt5-qtmultimedia-devel
537ca1
BuildRequires:	qt5-qtsvg-devel
537ca1
BuildRequires:	zlib-devel
537ca1
%if %{with_maxminddb}
537ca1
BuildRequires:	libmaxminddb-devel
537ca1
%endif
537ca1
%if %{with_lua} && 0%{?fedora}
537ca1
BuildRequires:	compat-lua-devel
537ca1
%endif
537ca1
Buildrequires: git
537ca1
Buildrequires: python3-devel
537ca1
Buildrequires: cmake
537ca1
#needed for sdjournal external capture interface
537ca1
BuildRequires: systemd-devel
537ca1
BuildRequires: libnghttp2-devel
537ca1
537ca1
Obsoletes: wireshark-qt, wireshark-gtk
537ca1
537ca1
%description
537ca1
Wireshark allows you to examine protocol data stored in files or as it is
537ca1
captured from wired or wireless (WiFi or Bluetooth) networks, USB devices,
537ca1
and many other sources.  It supports dozens of protocol capture file formats
537ca1
and understands more than a thousand protocols.
537ca1
537ca1
It has many powerful features including a rich display filter language
537ca1
and the ability to reassemble multiple protocol packets in order to, for
537ca1
example, view a complete TCP stream, save the contents of a file which was
537ca1
transferred over HTTP or CIFS, or play back an RTP audio stream.
537ca1
537ca1
%package	cli
537ca1
Summary:	Network traffic analyzer
537ca1
Requires(pre):	shadow-utils
537ca1
Requires(post): systemd-udev
537ca1
537ca1
%description cli
537ca1
This package contains command-line utilities, plugins, and documentation for
537ca1
Wireshark.
537ca1
537ca1
%package devel
537ca1
Summary:	Development headers and libraries for wireshark
537ca1
Requires:	%{name} = %{epoch}:%{version}-%{release} glibc-devel glib2-devel
537ca1
537ca1
%description devel
537ca1
The wireshark-devel package contains the header files, developer
537ca1
documentation, and libraries required for development of wireshark scripts
537ca1
and plugins.
537ca1
537ca1
537ca1
%prep
537ca1
%autosetup -S git
537ca1
537ca1
%build
537ca1
%cmake -G "Unix Makefiles" \
537ca1
  -DDISABLE_WERROR=ON \
537ca1
  -DBUILD_wireshark=ON \
537ca1
%if %{with_lua} && 0%{?fedora}
537ca1
  -DENABLE_LUA=ON \
537ca1
%else
537ca1
  -DENABLE_LUA=OFF \
537ca1
%endif
537ca1
%if %{with_maxminddb} && 0%{?fedora} 
537ca1
  -DBUILD_mmdbresolve=ON \
537ca1
%else
537ca1
  -DBUILD_mmdbresolve=OFF \
537ca1
%endif
537ca1
  -DBUILD_randpktdump=OFF \
537ca1
  -DBUILD_androiddump=ON \
537ca1
  -DENABLE_SMI=ON \
537ca1
  -DENABLE_PLUGINS=ON \
537ca1
  -DENABLE_NETLINK=ON \
537ca1
  -DBUILD_dcerpcidl2wrs=OFF \
537ca1
  -DBUILD_sdjournal=ON \
537ca1
  %{nil}
537ca1
537ca1
%cmake_build
537ca1
537ca1
%install
537ca1
%cmake_install
537ca1
537ca1
desktop-file-validate %{buildroot}%{_datadir}/applications/wireshark.desktop
537ca1
537ca1
#install devel files (inspired by debian/wireshark-dev.header-files)
537ca1
install -d -m 0755  %{buildroot}%{_includedir}/wireshark
537ca1
IDIR="%{buildroot}%{_includedir}/wireshark"
537ca1
mkdir -p "${IDIR}/epan"
537ca1
mkdir -p "${IDIR}/epan/crypt"
537ca1
mkdir -p "${IDIR}/epan/ftypes"
537ca1
mkdir -p "${IDIR}/epan/dfilter"
537ca1
mkdir -p "${IDIR}/epan/dissectors"
537ca1
mkdir -p "${IDIR}/epan/wmem"
537ca1
mkdir -p "${IDIR}/wiretap"
537ca1
mkdir -p "${IDIR}/wsutil"
537ca1
mkdir -p %{buildroot}%{_udevrulesdir}
537ca1
install -m 644 %{_vpath_builddir}/config.h epan/register.h	"${IDIR}/"
537ca1
install -m 644 cfile.h file.h		"${IDIR}/"
537ca1
install -m 644 ws_symbol_export.h	"${IDIR}/"
537ca1
install -m 644 epan/*.h			"${IDIR}/epan/"
537ca1
install -m 644 epan/crypt/*.h		"${IDIR}/epan/crypt"
537ca1
install -m 644 epan/ftypes/*.h		"${IDIR}/epan/ftypes"
537ca1
install -m 644 epan/dfilter/*.h		"${IDIR}/epan/dfilter"
537ca1
install -m 644 epan/dissectors/*.h	"${IDIR}/epan/dissectors"
537ca1
install -m 644 epan/wmem/*.h		"${IDIR}/epan/wmem"
537ca1
install -m 644 wiretap/*.h		"${IDIR}/wiretap"
537ca1
install -m 644 wsutil/*.h		"${IDIR}/wsutil"
537ca1
install -m 644 ws_diag_control.h	"${IDIR}/"
537ca1
install -m 644 %{SOURCE2}		%{buildroot}%{_udevrulesdir}
537ca1
537ca1
touch %{buildroot}%{_bindir}/%{name}
537ca1
537ca1
# Remove libtool archives and static libs
537ca1
find %{buildroot} -type f -name "*.la" -delete
537ca1
537ca1
%pre cli
537ca1
getent group wireshark >/dev/null || groupadd -r wireshark
537ca1
getent group usbmon >/dev/null || groupadd -r usbmon
537ca1
537ca1
%post cli
537ca1
%{?ldconfig}
537ca1
# skip triggering if udevd isn't even accessible, e.g. containers or
537ca1
# rpm-ostree-based systems
537ca1
if [ -S /run/udev/control ]; then
537ca1
    /usr/bin/udevadm trigger --subsystem-match=usbmon
537ca1
fi
537ca1
537ca1
%ldconfig_postun cli
537ca1
537ca1
%files
537ca1
%{_datadir}/appdata/%{name}.appdata.xml
537ca1
%{_datadir}/applications/wireshark.desktop
537ca1
%{_datadir}/icons/hicolor/*/apps/*
537ca1
%{_datadir}/icons/hicolor/*/mimetypes/*
537ca1
%{_datadir}/mime/packages/wireshark.xml
537ca1
%{_bindir}/wireshark
537ca1
%{_mandir}/man1/wireshark.*
537ca1
537ca1
%files cli
537ca1
%license COPYING
537ca1
%doc AUTHORS INSTALL NEWS README*
537ca1
%{_bindir}/capinfos
537ca1
%{_bindir}/captype
537ca1
%{_bindir}/editcap
537ca1
%{_bindir}/mergecap
537ca1
%{_bindir}/randpkt
537ca1
%{_bindir}/reordercap
537ca1
%{_bindir}/sharkd
537ca1
%{_bindir}/text2pcap
537ca1
%{_bindir}/tshark
537ca1
%if %{with_maxminddb} && 0%{?fedora}
537ca1
%{_bindir}/mmdbresolve
537ca1
%endif
537ca1
%attr(0750, root, wireshark) %caps(cap_net_raw,cap_net_admin=ep) %{_bindir}/dumpcap
537ca1
%{_bindir}/rawshark
537ca1
%{_udevrulesdir}/90-wireshark-usbmon.rules
537ca1
%{_libdir}/lib*.so.*
537ca1
%dir %{_libdir}/wireshark
537ca1
%dir %{_libdir}/wireshark/extcap
537ca1
%dir %{_libdir}/wireshark/plugins
537ca1
%{_libdir}/wireshark/extcap/ciscodump
537ca1
%{_libdir}/wireshark/extcap/udpdump
537ca1
%{_libdir}/wireshark/extcap/sshdump
537ca1
%{_libdir}/wireshark/extcap/sdjournal
537ca1
%{_libdir}/wireshark/extcap/dpauxmon
537ca1
%{_libdir}/wireshark/extcap/androiddump
537ca1
%dir %{_libdir}/wireshark/cmake
537ca1
%{_libdir}/wireshark/cmake/*.cmake
537ca1
#the version wireshark uses to store plugins is only x.y, not .z
537ca1
%dir %{_libdir}/wireshark/plugins/%{plugins_version}
537ca1
%dir %{_libdir}/wireshark/plugins/%{plugins_version}/epan
537ca1
%dir %{_libdir}/wireshark/plugins/%{plugins_version}/wiretap
537ca1
%dir %{_libdir}/wireshark/plugins/%{plugins_version}/codecs
537ca1
%{_libdir}/wireshark/plugins/%{plugins_version}/epan/*.so
537ca1
%{_libdir}/wireshark/plugins/%{plugins_version}/wiretap/*.so
537ca1
%{_libdir}/wireshark/plugins/%{plugins_version}/codecs/*.so
537ca1
%{_mandir}/man1/editcap.*
537ca1
%{_mandir}/man1/tshark.*
537ca1
%{_mandir}/man1/mergecap.*
537ca1
%{_mandir}/man1/text2pcap.*
537ca1
%{_mandir}/man1/capinfos.*
537ca1
%{_mandir}/man1/dumpcap.*
537ca1
%{_mandir}/man4/wireshark-filter.*
537ca1
%{_mandir}/man1/rawshark.*
537ca1
%{_mandir}/man1/dftest.*
537ca1
%{_mandir}/man1/randpkt.*
537ca1
%{_mandir}/man1/reordercap.*
537ca1
%{_mandir}/man1/sshdump.*
537ca1
%{_mandir}/man1/udpdump.*
537ca1
%{_mandir}/man1/androiddump.*
537ca1
%{_mandir}/man1/captype.*
537ca1
%{_mandir}/man1/ciscodump.*
537ca1
%{_mandir}/man1/randpktdump.*
537ca1
%{_mandir}/man1/dpauxmon.*
537ca1
%{_mandir}/man1/sdjournal.*
537ca1
%{_mandir}/man4/extcap.*
537ca1
%if %{with_maxminddb} && 0%{?fedora}
537ca1
%{_mandir}/man1/mmdbresolve.*
537ca1
%endif
537ca1
%dir %{_datadir}/wireshark
537ca1
%{_datadir}/wireshark/*
537ca1
%{_docdir}/wireshark/*.html
537ca1
537ca1
%files devel
537ca1
%doc doc/README.* ChangeLog
537ca1
%{_includedir}/wireshark
537ca1
%{_libdir}/lib*.so
537ca1
%{_libdir}/pkgconfig/%{name}.pc
537ca1
537ca1
%changelog
537ca1
* Thu Dec 16 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.10-1
537ca1
- Resolves: #2032966 - Rebase wireshark to fix multiple CVEs
537ca1
537ca1
* Mon Aug 16 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.7-3
537ca1
- Resolves: #1988120 - Enable LTO build of wireshark for RHEL 9
537ca1
537ca1
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1:3.4.7-2
537ca1
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
537ca1
  Related: rhbz#1991688
537ca1
537ca1
* Tue Jul 20 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.7-1
537ca1
- Related: #1967546 - Rebase wireshark to latest version
537ca1
537ca1
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1:3.4.6-2
537ca1
- Rebuilt for RHEL 9 BETA for openssl 3.0
537ca1
  Related: rhbz#1971065
537ca1
537ca1
* Fri Jun 11 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.6-1
537ca1
- Related: #1967546 - Rebase wireshark to latest version
537ca1
537ca1
* Thu Jun 03 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.5-1
537ca1
- Resolves: #1967546 - Rebase wireshark to latest version
537ca1
537ca1
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:3.4.4-2
537ca1
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
537ca1
537ca1
* Tue Mar 16 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.4-1
537ca1
- New version 3.4.4
537ca1
- Fix for CVE-2021-22191
537ca1
537ca1
* Tue Feb 23 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.3-3
537ca1
- Adding more commits to make SMC complete
537ca1
537ca1
* Mon Feb 22 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.3-2
537ca1
- Adding SMC-R, SMC-D and SMC-D v2
537ca1
537ca1
* Tue Feb 16 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.3-1
537ca1
- New version 3.4.3
537ca1
- Fix for CVE-2021-22173, CVE-2021-22174
537ca1
537ca1
* Fri Jan 29 2021 Michal Ruprich <mruprich@redhat.com> - 1:3.4.2-1
537ca1
- New version 3.4.2
537ca1
- Fix for CVE-2020-26418, CVE-2020-26419, CVE-2020-26420, CVE-2020-26421
537ca1
537ca1
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.4.0-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
537ca1
537ca1
* Wed Dec 02 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.4.0-1
537ca1
- New version 3.4.0
537ca1
- Fix for CVE-2020-26575, CVE-2020-28030
537ca1
537ca1
* Fri Oct 09 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.7-1
537ca1
- New version 3.2.7
537ca1
- Fix for CVE-2020-25862, CVE-2020-25863, CVE-2020-25866
537ca1
537ca1
* Thu Sep 10 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.6-2
537ca1
- Temprorarily disabling LTO build due to errors in libqt5core
537ca1
537ca1
* Wed Aug 19 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.6-1
537ca1
- New version 3.2.6
537ca1
- Fix for CVE-2020-17498
537ca1
537ca1
* Thu Jul 30 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.5-3
537ca1
- Adding ownership for dirs created by wireshark (rhbz#1860650)
537ca1
537ca1
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.2.5-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
537ca1
537ca1
* Thu Jul 02 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.5-1
537ca1
- New version 3.2.5
537ca1
537ca1
* Fri May 22 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.4-1
537ca1
- New version 3.2.4
537ca1
- Enabling build with androiddump (rhbz#1834367)
537ca1
537ca1
* Mon Apr 13 2020 Gwyn Ciesla <gwync@protonmail.com> - 1:3.2.3-1
537ca1
- 3.2.3
537ca1
537ca1
* Fri Apr 03 2020 Michal Ruprich <mruprich@redhat.com> - 1:3.2.2-1
537ca1
- New version 3.2.2
537ca1
537ca1
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.2.0-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
537ca1
537ca1
* Thu Dec 19 2019 Michal Ruprich <mruprich@redhat.com> - 1:3.2.0-1
537ca1
- New version 3.2.0
537ca1
537ca1
* Wed Oct 30 2019 Michal Ruprich <mruprich@redhat.com> - 1:3.0.5-1
537ca1
- New version 3.0.5
537ca1
537ca1
* Tue Aug 20 2019 Michal Ruprich <mruprich@redhat.com> - 1:3.0.3-1
537ca1
- New version 3.0.3
537ca1
- Fixes CVE-2019-13619
537ca1
537ca1
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.1-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
537ca1
537ca1
* Tue Apr 09 2019 Michal Ruprich <mruprich@redhat.com> - 1:3.0.1-1
537ca1
- New version 3.0.1
537ca1
- Fixes CVE-2019-10894, CVE-2019-10895, CVE-2019-10896, CVE-2019-10897, CVE-2019-10898, CVE-2019-10899, CVE-2019-10900, CVE-2019-10901, CVE-2019-10902, CVE-2019-10903
537ca1
537ca1
* Mon Mar 11 2019 Michal Ruprich <mruprich@redhat.com> - 1:3.0.0-1
537ca1
- New version 3.0.0
537ca1
537ca1
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6.6-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
537ca1
537ca1
* Mon Jan 21 2019 Michal Ruprich <mruprich@redhat.com> - 1:2.6.6-1
537ca1
- New version 2.6.6 
537ca1
- Contains fixes for CVE-2019-5716, CVE-2019-5717, CVE-2019-5718, CVE-2019-5719
537ca1
- Add explicit curdir on CMake invokation
537ca1
537ca1
* Wed Jan 02 2019 Michal Ruprich <mruprich@redhat.com> - 1:2.6.5-2
537ca1
- Adding libnghttp2-devel as BuildRequires - needed for HTTP2 support(rhbz#1512722)
537ca1
537ca1
* Mon Dec 10 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.5-1
537ca1
- New version 2.6.5
537ca1
- Contains fixes for CVE-2018-19622, CVE-2018-19623,  CVE-2018-19624, CVE-2018-19625, CVE-2018-19626, CVE-2018-19627, CVE-2018-19628
537ca1
537ca1
* Mon Nov 12 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.4-1
537ca1
- New version 2.6.4
537ca1
- Contains fixes for CVE-2018-16056, CVE-2018-16057, CVE-2018-16058
537ca1
537ca1
* Mon Jul 23 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.2-1
537ca1
- New version 2.6.2
537ca1
- Contains fixes for CVE-2018-14339, CVE-2018-14340, CVE-2018-14341, CVE-2018-14342, CVE-2018-14343, CVE-2018-14344, CVE-2018-14367, CVE-2018-14368, CVE-2018-14369, CVE-2018-14370
537ca1
537ca1
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6.1-3
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
537ca1
537ca1
* Wed Jul 11 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.1-2
537ca1
- Fixing build error with newer qt5 version
537ca1
537ca1
* Thu May 24 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.1-1
537ca1
- New version 2.6.1
537ca1
537ca1
* Tue May 15 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.0-2
537ca1
- Added Obsoletes for wireshark-qt and wireshark-gtk
537ca1
537ca1
* Wed May 02 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.6.0-1
537ca1
- New version 2.6.0
537ca1
- Fix for CVE-2018-9256, CVE-2018-9257, CVE-2018-9258, CVE-2018-9259, CVE-2018-9260, CVE-2018-9261, CVE-2018-9262, CVE-2018-9263, CVE-2018-9264, CVE-2018-9265, CVE-2018-9266, CVE-2018-9267, CVE-2018-9268, CVE-2018-9269, CVE-2018-9270, CVE-2018-9271, CVE-2018-9272, CVE-2018-9273, CVE-2018-9274
537ca1
- Switch from autotools to cmake
537ca1
- Removed python2-devel(#1560284) and libssh2-devel from dependencies
537ca1
- Removed python scripts
537ca1
537ca1
* Thu Mar 15 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.4.5-2
537ca1
- Removing dependency on wireshark from wireshark-cli (rhbz#1554818)
537ca1
- Removing deprecated Group tags
537ca1
537ca1
* Fri Mar 09 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.4.5-1
537ca1
- New upstream version 2.4.5
537ca1
- Contains fixes for CVE-2018-7419, CVE-2018-7418, CVE-2018-7417, CVE-2018-7420, CVE-2018-7320, CVE-2018-7336, CVE-2018-7337, CVE-2018-7334, CVE-2018-7335, CVE-2018-6836, CVE-2018-5335,  CVE-2018-5334,  CVE-2017-6014, CVE-2017-9616, CVE-2017-9617, CVE-2017-9766
537ca1
- Removed GTK+ based GUI (rhbz#1486203)
537ca1
- Corrected LDFLAGS in spec (rhbz#1548665)
537ca1
- Alternatives are no longer needed (rhbz#1533701)
537ca1
537ca1
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:2.4.4-2
537ca1
- Escape macros in %%changelog
537ca1
537ca1
* Fri Jan 19 2018 Michal Ruprich <mruprich@redhat.com> - 1:2.4.4-1
537ca1
- New upstream version 2.4.4
537ca1
- Contains fix for CVE-2017-17935 
537ca1
537ca1
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:2.4.3-2
537ca1
- Remove obsolete scriptlets
537ca1
537ca1
* Wed Dec 20 2017 Michal Ruprich <mruprich@redhat.com> - 1:2.4.3-1
537ca1
- New upstream version 2.4.3
537ca1
- Contains fixe for CVE-2017-17085, CVE-2017-17084, CVE-2017-17083
537ca1
537ca1
* Thu Oct 12 2017 Michal Ruprich <mruprich@redhat.com> - 1:2.4.2-1
537ca1
- New upstream version 2.4.2
537ca1
- Contains fixes for CVE-2017-15189, CVE-2017-15190, CVE-2017-15191, CVE-2017-15192, CVE-2017-15193, CVE-2017-13764, CVE-2017-13765, CVE-2017-13766, CVE-2017-13767
537ca1
537ca1
* Tue Aug 08 2017 Martin Sehnoutka <msehnout@redhat.com> - 1:2.4.0-6
537ca1
- Use epoch in Requires (rhbz#1478501)
537ca1
537ca1
* Thu Aug 03 2017 Martin Sehnoutka <msehnout@redhat.com> - 1:2.4.0-5
537ca1
- Add libssh as a build dependency (rhbz#1419131)
537ca1
537ca1
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
537ca1
537ca1
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-3
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
537ca1
537ca1
* Fri Jul 21 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.4.0-2
537ca1
- Move init.lua file into the main subpackage (rhbz#1463270)
537ca1
537ca1
* Thu Jul 20 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.4.0-2
537ca1
- New upstream version 2.4.0
537ca1
537ca1
* Thu Jun 29 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.4.0rc2-1
537ca1
- New upstream version
537ca1
537ca1
* Mon Jun 12 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.7-1
537ca1
- New upstream release 2.2.7
537ca1
537ca1
* Thu May 25 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.6-5
537ca1
- Add triggerin script to remove old alternatives
537ca1
- Remove appdata.xml as it is provided by upstream now
537ca1
537ca1
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-3
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
537ca1
537ca1
* Mon Apr 24 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.6-2
537ca1
- Build with lua support (resolves: #1259623)
537ca1
537ca1
* Fri Apr 21 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.6-1
537ca1
- New upstream release 2.2.6
537ca1
537ca1
* Fri Apr 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.2.5-2
537ca1
- Stop patching pkg-config
537ca1
537ca1
* Tue Mar 07 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.5-1
537ca1
- New upstream version 2.2.5
537ca1
537ca1
* Mon Mar 06 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.4-3
537ca1
- Fix python_sitearch macro
537ca1
- Fix path in desktop file
537ca1
537ca1
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
537ca1
537ca1
* Wed Jan 25 2017 Martin Sehnoutka <msehnout@redhat.com> - 2.2.4-2
537ca1
- New upstream release 2.2.4
537ca1
537ca1
* Thu Dec 08 2016 Martin Sehnoutka <msehnout@redhat.com> - 2.2.2-4
537ca1
- Change update-alternatives name from wireshark to wireshark-gui; Resolve:
537ca1
  #1400654
537ca1
537ca1
* Thu Dec 01 2016 Martin Sehnoutka <msehnout@redhat.com> - 2.2.2-3
537ca1
- Move all executables into /usr/bin/ directory
537ca1
537ca1
* Fri Nov 18 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.2.2-2
537ca1
- Build QT GUI with qt5 (rhbz #1347752)
537ca1
537ca1
* Fri Nov 18 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.2.2-1
537ca1
- Version 2.2.2
537ca1
- See https://www.wireshark.org/docs/relnotes/wireshark-2.2.2.html
537ca1
- Use %%license, spec cleanups
537ca1
- Put udev rules in right location (rhbz #1365581)
537ca1
537ca1
* Wed Nov  2 2016 Peter Lemenkov <lemenkov@gmail.com> - 2.1.1-3
537ca1
- No longer uses adns ( https://github.com/wireshark/wireshark/commit/7a1d3f6 )
537ca1
- Remove --with-ipv6 switch ( https://github.com/wireshark/wireshark/commit/fad1565 )
537ca1
- Change GTK option switch ( https://github.com/wireshark/wireshark/commit/d77029d )
537ca1
537ca1
* Tue Sep 13 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.1-2
537ca1
- Add Requires(post) for systemd-udev to avoid rpm scriptlet failures
537ca1
537ca1
* Sun Jul 24 2016 Peter Hatina <phatina@gmail.com> - 2.1.1-1
537ca1
- Ver. 2.1.1
537ca1
- See https://www.wireshark.org/docs/relnotes/wireshark-2.1.1.html
537ca1
537ca1
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-4
537ca1
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
537ca1
537ca1
* Wed Jul 13 2016 Peter Hatina <phatina@gmail.com> - 2.1.0-3
537ca1
- Fix typo, install ws_diag_control
537ca1
- Related: rhbz#1347869
537ca1
537ca1
* Mon Jun 20 2016 Peter Hatina <phatina@gmail.com> - 2.1.0-2
537ca1
- Install ws_diag_control.h into standard include directory
537ca1
- Resolves: rhbz#1347869
537ca1
537ca1
* Tue Jun 14 2016 Peter Hatina <phatina@gmail.com> - 2.1.0-1
537ca1
- Ver. 2.1.0
537ca1
- See https://www.wireshark.org/docs/relnotes/wireshark-2.1.0.html
537ca1
537ca1
* Thu Apr 28 2016 Peter Hatina <phatina@redhat.com> - 2.0.3-1
537ca1
- Ver. 2.0.3
537ca1
537ca1
* Tue Mar 01 2016 Peter Hatina <phatina@redhat.com> - 2.0.2-1
537ca1
- Ver. 2.0.2
537ca1
537ca1
* Tue Feb 23 2016 Peter Hatina <phatina@redhat.com> - 2.0.1-3
537ca1
- Fix missing Requires in wireshark.pc
537ca1
537ca1
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
537ca1
537ca1
* Thu Jan 14 2016 Peter Hatina <phatina@redhat.com> - 2.0.1-1
537ca1
- Ver. 2.0.1
537ca1
- Introduced wireshark metapackage for wireshark-cli and wireshark-gtk
537ca1
- wireshark-qt and wireshark-gtk contain the GUI applications
537ca1
- See https://www.wireshark.org/docs/relnotes/wireshark-2.0.1.html
537ca1
537ca1
* Fri Jan  8 2016 Peter Lemenkov <lemenkov@gmail.com> - 1.12.9-1
537ca1
- Ver. 1.12.9
537ca1
- See https://www.wireshark.org/docs/relnotes/wireshark-1.12.9.html
537ca1
537ca1
* Tue Nov  3 2015 Peter Lemenkov <lemenkov@gmail.com> - 1.12.8-2
537ca1
- Fixed Wireshark detection in external projects using wireshark.m4 script.
537ca1
  See https://bugzilla.redhat.com/1274831 for further details.
537ca1
537ca1
* Thu Oct 15 2015 Peter Hatina <phatina@redhat.com> - 1.12.8-1
537ca1
- Ver. 1.12.8
537ca1
- Dropped patch no. 10 (applied upstream)
537ca1
537ca1
* Fri Aug 21 2015 Peter Lemenkov <lemenkov@gmail.com> - 1.12.7-2
537ca1
- Enable libnl3 (see rhbz#1207386, rhbz#1247566)
537ca1
- Remove airpcap switch (doesn't have any effect on Linux)
537ca1
- Backport patch no. 11
537ca1
- Fixed building with F24+
537ca1
537ca1
* Tue Aug 18 2015 Peter Lemenkov <lemenkov@gmail.com> - 1.12.7-1
537ca1
- Ver. 1.12.7
537ca1
- Dropped patch no. 11 (applied upstream)
537ca1
537ca1
* Tue Jun 30 2015 Peter Hatina <phatina@redhat.com> - 1.12.6-4
537ca1
- Move plugins to %%{_libdir}/wireshark/plugins to avoid
537ca1
  transaction conflicts
537ca1
537ca1
* Fri Jun 26 2015 Peter Hatina <phatina@redhat.com> - 1.12.6-3
537ca1
- Disable overlay scrolling in main window
537ca1
- Resolves: rhbz#1235830
537ca1
537ca1
* Fri Jun 26 2015 Peter Hatina <phatina@redhat.com> - 1.12.6-2
537ca1
- Add symlink plugins/current -> plugins/%%{version}
537ca1
537ca1
* Thu Jun 18 2015 Peter Hatina <phatina@redhat.com> - 1.12.6-1
537ca1
- Ver. 1.12.6
537ca1
537ca1
* Wed May 13 2015 Peter Hatina <phatina@redhat.com> - 1.12.5-1
537ca1
- Ver. 1.12.5
537ca1
537ca1
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 1.12.4-2
537ca1
- Add an AppData file for the software center
537ca1
537ca1
* Thu Mar  5 2015 Peter Hatina <phatina@redhat.com> - 1.12.4-1
537ca1
- Ver. 1.12.4
537ca1
537ca1
* Mon Feb  2 2015 Peter Hatina <phatina@redhat.com> - 1.12.3-3
537ca1
- temporary: disable lua
537ca1
537ca1
* Mon Feb  2 2015 Peter Hatina <phatina@redhat.com> - 1.12.3-2
537ca1
- rebuild with gtk3
537ca1
- fix gdk crash
537ca1
537ca1
* Thu Jan  8 2015 Peter Hatina <phatina@redhat.com> - 1.12.3-1
537ca1
- Ver. 1.12.3
537ca1
537ca1
* Mon Dec 22 2014 Peter Hatina <phatina@redhat.com> - 1.12.2-2
537ca1
- fix CLI parsing by getopt_long
537ca1
537ca1
* Mon Nov 17 2014 Peter Hatina <phatina@redhat.com> - 1.12.2-1
537ca1
- Ver. 1.12.2
537ca1
537ca1
* Mon Sep 22 2014 Peter Hatina <phatina@redhat.com> - 1.12.1-1
537ca1
- Ver. 1.12.1
537ca1
537ca1
* Tue Sep 09 2014 Peter Lemenkov <lemenkov@gmail.com> - 1.12.0-5
537ca1
- Install epan/wmem/*.h files. See rhbz #1129419
537ca1
537ca1
* Wed Sep  3 2014 Peter Hatina <phatina@redhat.com> - 1.12.0-4
537ca1
- fix fields print format
537ca1
537ca1
* Mon Aug 18 2014 Rex Dieter <rdieter@fedoraproject.org> 1.12.0-3
537ca1
- update mime scriptlets
537ca1
537ca1
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.0-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
537ca1
537ca1
* Tue Aug 05 2014 Peter Lemenkov <lemenkov@gmail.com> - 1.12.0-1
537ca1
- Ver. 1.12.0
537ca1
- Dropped a lot of outdated patches.
537ca1
- Added /usr/sbin/captype application.
537ca1
- Added temporary workaround for wireshark.pc.in missing in the official
537ca1
  tarball.
537ca1
- Removed outdated --with-dumpcap-group="wireshark" cli switch. It doesn't work
537ca1
  during rpmbuild, and we still set group explicitly in the 'files' section.
537ca1
- Removed --enable-setcap-install. Likewise.
537ca1
- Some ANSI C header files were moved to epan/
537ca1
537ca1
* Fri Aug  1 2014 Peter Hatina <phatina@redhat.com> - 1.10.9-1
537ca1
- Ver. 1.10.9
537ca1
537ca1
* Fri Jun 13 2014 Peter Hatina <phatina@redhat.com> - 1.10.8-1
537ca1
- Ver. 1.10.8
537ca1
537ca1
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.7-3
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
537ca1
537ca1
* Fri May 30 2014 Peter Hatina <phatina@redhat.com> - 1.0.7-2
537ca1
- add AMQP 1.0 support
537ca1
537ca1
* Wed Apr 23 2014 Peter Hatina <phatina@redhat.com> - 1.10.7-1
537ca1
- Ver. 1.10.7
537ca1
537ca1
* Fri Mar 21 2014 Peter Hatina <phatina@redhat.com> - 1.10.6-2
537ca1
- Reload udev rule for usbmon subsystem only
537ca1
537ca1
* Sat Mar 08 2014 Peter Lemenkov <lemenkov@gmail.com> - 1.10.6-1
537ca1
- Ver. 1.10.6
537ca1
537ca1
* Fri Mar  7 2014 Peter Hatina <phatina@redhat.com> - 1.10.5-4
537ca1
- Fix Capture Dialog layout on low resolution displays
537ca1
- Resolves: #1071313
537ca1
537ca1
* Sun Feb  9 2014 Ville Skyttä <ville.skytta@iki.fi>
537ca1
- Fix --with-gtk* build option usage.
537ca1
537ca1
* Wed Jan 29 2014 Peter Lemenkov <lemenkov@gmail.com> - 1.10.5-3
537ca1
- Fixed paths in the desktop-file (see rhbz #1059188)
537ca1
537ca1
* Mon Jan 13 2014 Peter Lemenkov <lemenkov@gmail.com> - 1.10.5-2
537ca1
- Updated RTPproxy dissector (again)
537ca1
- Fix rare issue with the Sniffer traces (patch no. 23)
537ca1
537ca1
* Mon Dec 23 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.5-1
537ca1
- Ver. 1.10.5
537ca1
- Don't apply upstreamed patches no. 18, 19, 20.
537ca1
537ca1
* Thu Dec 19 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.4-2
537ca1
- Fix endianness in the Bitcoin protocol dissector (patch no. 19)
537ca1
- Last-minute fix for wrongly backported change (patch no. 20)
537ca1
- Fix FTBFS in Rawhide (see patch no. 21 - recent Glib doesn't provide g_memmove macro anymore)
537ca1
537ca1
* Wed Dec 18 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.4-1
537ca1
- Ver. 1.10.4
537ca1
- Don't apply upsteamed patches no. 13, 14, 15, 16, 17
537ca1
- Fix variable overflow (patch no. 18)
537ca1
- Updated RTPproxy dissector (backported three more patches from trunk)
537ca1
537ca1
* Tue Dec 10 2013 Peter Hatina <phatina@redhat.com> - 1.10-3-9
537ca1
- remove python support
537ca1
537ca1
* Tue Dec 10 2013 Peter Hatina <phatina@redhat.com> - 1.10-3-8
537ca1
- fix read permissions of /dev/usbmon* for non-root users
537ca1
537ca1
* Mon Dec 09 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.3-7
537ca1
- Fix error in the backported RTPproxy patches
537ca1
537ca1
* Fri Dec 06 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.3-6
537ca1
- Updated RTPproxy dissector (again), squashed patch no. 15 (applied upstream).
537ca1
- Use proper soname in the python scripts
537ca1
- Don't apply no longer needed fix for pod2man.
537ca1
- Fix for main window. See patch no. 15
537ca1
- Fix for SCTP dissection. See patch no. 16
537ca1
- Fix for rare issue in Base Station Subsystem GPRS Protocol dissection. See
537ca1
  patch no. 17
537ca1
- Fix building w/o Lua
537ca1
537ca1
* Wed Nov 27 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.3-5
537ca1
- Updated RTPproxy dissector (again)
537ca1
- Allow packets more than 64k (for USB capture). See patch no. 13
537ca1
- Don't die during loading of some SIP capture files. See patch no. 14
537ca1
- Backport support for RTPproxy dissector timeouts detection. See patch no. 15
537ca1
537ca1
* Wed Nov 13 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.3-4
537ca1
- Updated RTPproxy dissector
537ca1
537ca1
* Thu Nov 07 2013 Peter Hatina <phatina@redhat.com> - 1.10.3-3
537ca1
- fix subpackage requires
537ca1
537ca1
* Wed Nov 06 2013 Peter Hatina <phatina@redhat.com> - 1.10.3-2
537ca1
- harden dumpcap capabilities
537ca1
537ca1
* Sat Nov 02 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.3-1
537ca1
- Ver. 1.10.3
537ca1
- Dropped upsteamed patch no. 13
537ca1
537ca1
* Tue Oct 01 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.2-8
537ca1
- Added support for rtpproxy conversations (req/resp matching)
537ca1
537ca1
* Tue Sep 24 2013 Peter Hatina <phatina@redhat.com> - 1.10.2-7
537ca1
- fix build error caused by symbols clash
537ca1
537ca1
* Tue Sep 17 2013 Peter Hatina <phatina@redhat.com> - 1.10.2-6
537ca1
- move default temporary directory to /var/tmp
537ca1
537ca1
* Fri Sep 13 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.2-5
537ca1
- Convert automake/pkgconfig files into patches (better upstream integration)
537ca1
- Restored category in the *.desktop file
537ca1
- Install another one necessary header file - frame_data_sequence.h
537ca1
537ca1
* Thu Sep 12 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.2-4
537ca1
- Enhance desktop integration (*.desktop and MIME-related files)
537ca1
537ca1
* Thu Sep 12 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.2-3
537ca1
- Fix building on Fedora 18 (no perl-podlators)
537ca1
537ca1
* Thu Sep 12 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.2-2
537ca1
- Add an OpenFlow dissector
537ca1
537ca1
* Wed Sep 11 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10-2-1
537ca1
- Ver. 1.10.2
537ca1
- Actually remove the console helper
537ca1
537ca1
* Mon Sep 09 2013 Peter Lemenkov <lemenkov@gmail.com> - 1.10.1-1
537ca1
- Ver. 1.10.1
537ca1
- Backported rtpproxy dissector module
537ca1
537ca1
* Wed Sep 04 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-11
537ca1
- fix missing ws_symbol_export.h
537ca1
537ca1
* Wed Sep 04 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-10
537ca1
- fix tap iostat overflow
537ca1
537ca1
* Wed Sep 04 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-9
537ca1
- fix sctp bytes graph crash
537ca1
537ca1
* Wed Sep 04 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-8
537ca1
- fix string overrun in plugins/profinet
537ca1
537ca1
* Tue Sep 03 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-7
537ca1
- fix BuildRequires - libgcrypt-devel
537ca1
537ca1
* Tue Sep 03 2013 Peter Hatina <phatina@redhat.com> - 1.10.0-6
537ca1
- fix build parameter -fstack-protector-all
537ca1
537ca1
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-5
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
537ca1
537ca1
* Mon Jun 24 2013 Peter Hatina <phatina@redhat.com> 1.10.0-4
537ca1
- fix pod2man build error
537ca1
537ca1
* Mon Jun 24 2013 Peter Hatina <phatina@redhat.com> 1.10.0-3
537ca1
- fix bogus date
537ca1
537ca1
* Mon Jun 17 2013 Peter Hatina <phatina@redhat.com> 1.10.0-2
537ca1
- fix flow graph crash
537ca1
537ca1
* Mon Jun 17 2013 Peter Hatina <phatina@redhat.com> 1.10.0-1
537ca1
- upgrade to 1.10.0
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.10.0.html
537ca1
537ca1
* Mon Apr 08 2013 Peter Hatina <phatina@redhat.com> 1.8.6-5
537ca1
- fix documentation build error
537ca1
537ca1
* Wed Mar 27 2013 Peter Hatina <phatina@redhat.com> 1.8.6-4
537ca1
- fix capture crash (#894753)
537ca1
537ca1
* Tue Mar 19 2013 Peter Hatina <phatina@redhat.com> 1.8.6-3
537ca1
- fix dns resolving crash (#908211)
537ca1
537ca1
* Mon Mar 18 2013 Peter Hatina <phatina@redhat.com> 1.8.6-2
537ca1
- return to gtk2, stable branch 1.8 is not gtk3 ready
537ca1
537ca1
* Tue Mar 12 2013 Peter Hatina <phatina@redhat.com> 1.8.6-1
537ca1
- upgrade to 1.8.6
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.6.html
537ca1
537ca1
* Sun Feb 10 2013 Parag Nemade <paragn AT fedoraproject DOT org> - 1.8.5-3
537ca1
- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077
537ca1
537ca1
* Tue Feb 05 2013 Peter Hatina <phatina@redhat.com> - 1.8.5-2
537ca1
- fix gtk3 layout issues
537ca1
- NOTE: there may be some windows with broken layouts left
537ca1
537ca1
* Thu Jan 31 2013 Peter Hatina <phatina@redhat.com> - 1.8.5-1
537ca1
- upgrade to 1.8.5
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.5.html
537ca1
537ca1
* Mon Dec 03 2012 Peter Hatina <phatina@redhat.com> - 1.8.4-1
537ca1
- upgrade to 1.8.4
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.4.html
537ca1
537ca1
* Tue Oct 16 2012 Peter Hatina <phatina@redhat.com> - 1.8.3-2
537ca1
- backport dissector table fix
537ca1
- TODO: remove this after new release
537ca1
537ca1
* Thu Oct 11 2012 Peter Hatina <phatina@redhat.com> - 1.8.3-1
537ca1
- upgrade to 1.8.3
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.3.html
537ca1
537ca1
* Tue Sep  4 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.2-3
537ca1
- added back compatibility with RHEL6
537ca1
- GeoIP build dependency made also conditional on with_GeoIP variable
537ca1
537ca1
* Wed Aug 29 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.2-2
537ca1
- fixed "libwireshark.so.1: cannot open shared object file" error
537ca1
  message on startup
537ca1
537ca1
* Thu Aug 16 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.2-1
537ca1
- upgrade to 1.8.2
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.2.html
537ca1
537ca1
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
537ca1
537ca1
* Tue Jul 24 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.1-1
537ca1
- upgrade to 1.8.1
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.1.html
537ca1
537ca1
* Mon Jun 25 2012 Jan Safranek <jsafrane@redhat.com> - 1.8.0
537ca1
- upgrade to 1.8.0
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.8.0.html
537ca1
537ca1
* Wed May 23 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.8-1
537ca1
- upgrade to 1.6.8
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.8.html
537ca1
537ca1
* Mon May 21 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.7-2
537ca1
- Removed dependency on GeoIP on RHEL.
537ca1
537ca1
* Tue Apr 10 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.7-1
537ca1
- upgrade to 1.6.7
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.7.html
537ca1
537ca1
* Wed Mar 28 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.6-1
537ca1
- upgrade to 1.6.6
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.6.html
537ca1
537ca1
* Fri Mar  9 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.5-2
537ca1
- fixed wireshark crashing when using combo box in import dialog (#773290)
537ca1
- added AES support into netlogon dissector
537ca1
537ca1
* Wed Jan 11 2012 Jan Safranek <jsafrane@redhat.com> - 1.6.5-1
537ca1
- upgrade to 1.6.5
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.5.html
537ca1
537ca1
* Fri Dec  2 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.4-1
537ca1
- upgrade to 1.6.4
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.4.html
537ca1
- build with c-ares and libpcap (#759305)
537ca1
- fixed display of error message boxes on startup in gnome3 (#752559)
537ca1
537ca1
* Mon Nov 14 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.3-2
537ca1
- added dependency on shadow-utils (#753293)
537ca1
- removed usermode support
537ca1
537ca1
* Wed Nov  2 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.3-1
537ca1
- upgrade to 1.6.3
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.3.html
537ca1
537ca1
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-5
537ca1
- Rebuilt for glibc bug#747377
537ca1
537ca1
* Fri Oct 21 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.2-4
537ca1
- updated autoconf macros and pkgconfig file in wireshark-devel to reflect
537ca1
  current config.h (#746655)
537ca1
537ca1
* Mon Oct 17 2011 Steve Dickson <steved@redhat.com> - 1.6.2-3
537ca1
- Fixed a regression introduce by upstream patch r38306
537ca1
    which caused v4.1 traffic not to be displayed.
537ca1
- Added v4 error status to packet detail window.
537ca1
537ca1
* Tue Sep 13 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.2-2
537ca1
- fixed spelling of the security message (#737270)
537ca1
537ca1
* Fri Sep  9 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.2-1
537ca1
- upgrade to 1.6.2
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.2.html
537ca1
537ca1
537ca1
* Thu Jul 21 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.1-1
537ca1
- upgrade to 1.6.1
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.1.html
537ca1
537ca1
* Thu Jun 16 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.0-4
537ca1
- fixed previous incomplete fix
537ca1
537ca1
* Thu Jun 16 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.0-3
537ca1
- fixed Fedora-specific message when user is not part of 'wireshark' group
537ca1
  - now it does not contain '<' and '>' characters (#713545)
537ca1
537ca1
* Thu Jun  9 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.0-2
537ca1
- added wspy_dissectors directory to the package
537ca1
  - other packages can add Python plugins there
537ca1
  - as side effect, removed following message:
537ca1
    [Errno 2] No such file or directory: '/usr/lib64/wireshark/python/1.6.0/wspy_dissectors'
537ca1
- enabled zlib support
537ca1
537ca1
* Wed Jun  8 2011 Jan Safranek <jsafrane@redhat.com> - 1.6.0-1
537ca1
- upgrade to 1.6.0
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.6.0.html
537ca1
537ca1
* Thu Jun  2 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.7-1
537ca1
- upgrade to 1.4.7
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.7.html
537ca1
537ca1
* Thu May 19 2011 Steve Dickson <steved@redhat.com> - 1.4.6-3
537ca1
- Improved the NFS4.1 patcket dissectors 
537ca1
537ca1
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1.4.6-2
537ca1
- Update icon cache scriptlet
537ca1
537ca1
* Tue Apr 19 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.6-1
537ca1
- upgrade to 1.4.6
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.6.html
537ca1
537ca1
* Mon Apr 18 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.5-1
537ca1
- upgrade to 1.4.5
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.5.html
537ca1
537ca1
* Sun Apr 03 2011 Cosimo Cecchi <cosimoc@redhat.com> - 1.4.4-2
537ca1
- Use hi-res icons
537ca1
537ca1
* Thu Mar  3 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.4-1
537ca1
- upgrade to 1.4.4
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.4.html
537ca1
537ca1
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-3
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
537ca1
537ca1
* Mon Jan 17 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.3-2
537ca1
- create the 'wireshark' group as system, not user
537ca1
- add few additional header files to -devel subpackage (#671997)
537ca1
537ca1
* Thu Jan 13 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.3-1
537ca1
- upgrade to 1.4.3
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.3.html
537ca1
537ca1
* Wed Jan  5 2011 Jan Safranek <jsafrane@redhat.com> - 1.4.2-5
537ca1
- fixed buffer overflow in ENTTEC dissector (#666897)
537ca1
537ca1
* Wed Dec 15 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.2-4
537ca1
- added epan/dissectors/*.h to -devel subpackage (#662969)
537ca1
537ca1
* Mon Dec  6 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.2-3
537ca1
- fixed generation of man pages again (#635878)
537ca1
537ca1
* Fri Nov 26 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.2-2
537ca1
- rework the Wireshark security (#657490). Remove the console helper and
537ca1
  allow only members of new 'wireshark' group to capture the packets.
537ca1
537ca1
* Mon Nov 22 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.2-1
537ca1
- upgrade to 1.4.2
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.2.html
537ca1
537ca1
* Mon Nov  1 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.1-2
537ca1
- temporarily disable zlib until
537ca1
  https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4955 is resolved (#643461)
537ca1
537ca1
* Fri Oct 22 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.1-1
537ca1
- upgrade to 1.4.1
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.1.html
537ca1
- Own the %%{_libdir}/wireshark dir (#644508)
537ca1
- associate *.pcap files with wireshark (#641163)
537ca1
537ca1
* Wed Sep 29 2010 jkeating - 1.4.0-2
537ca1
- Rebuilt for gcc bug 634757
537ca1
537ca1
* Fri Sep 24 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.0-2
537ca1
- fixed generation of man pages (#635878)
537ca1
537ca1
* Tue Aug 31 2010 Jan Safranek <jsafrane@redhat.com> - 1.4.0-1
537ca1
- upgrade to 1.4.0
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.4.0.html
537ca1
537ca1
* Fri Jul 30 2010 Jan Safranek <jsafrane@redhat.com> - 1.2.10-1
537ca1
- upgrade to 1.2.10
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.2.10.html
537ca1
537ca1
* Fri Jul 30 2010 Jan Safranek <jsafrane@redhat.com> - 1.2.9-4
537ca1
- Rebuilt again for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
537ca1
537ca1
* Thu Jul 22 2010 Jan Safranek <jsafrane@redhat.com> - 1.2.9-3
537ca1
- removing useless LDFLAGS (#603224)
537ca1
537ca1
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.2.9-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
537ca1
537ca1
* Fri Jun 11 2010 Radek Vokal <rvokal@redhat.com> - 1.2.9-1
537ca1
- upgrade to 1.2.9
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.2.9.html
537ca1
537ca1
* Mon May 17 2010 Radek Vokal <rvokal@redhat.com> - 1.2.8-4
537ca1
- removing traling bracket from python_sitearch (#592391)
537ca1
537ca1
* Fri May  7 2010 Radek Vokal <rvokal@redhat.com> - 1.2.8-3
537ca1
- fix patched applied without fuzz=0
537ca1
537ca1
* Thu May  6 2010 Radek Vokal <rvokal@redhat.com> - 1.2.8-2
537ca1
- use sitearch instead of sitelib to avoid pyo and pyc conflicts
537ca1
537ca1
* Thu May  6 2010 Radek Vokal <rvokal@redhat.com> - 1.2.8-1
537ca1
- upgrade to 1.2.8
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.2.8.html
537ca1
537ca1
* Tue Apr  6 2010 Radek Vokal <rvokal@redhat.com> - 1.2.7-2
537ca1
- rebuild with GeoIP support (needs to be turned on in IP protocol preferences)
537ca1
537ca1
* Fri Apr  2 2010 Radek Vokal <rvokal@redhat.com> - 1.2.7-1
537ca1
- upgrade to 1.2.7
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.2.7.html
537ca1
537ca1
* Wed Mar 24 2010 Radek Vokal <rvokal@redhat.com> - 1.2.6-3
537ca1
- bring back -pie
537ca1
537ca1
* Tue Mar 16 2010 Jeff Layton <jlayton@redhat.com> - 1.2.6-2
537ca1
- add patch to allow decode of NFSv4.0 callback channel
537ca1
- add patch to allow decode of more SMB FIND_FILE infolevels
537ca1
537ca1
* Fri Jan 29 2010 Radek Vokal <rvokal@redhat.com> - 1.2.6-1
537ca1
- upgrade to 1.2.6
537ca1
- see https://www.wireshark.org/docs/relnotes/wireshark-1.2.6.html
537ca1
537ca1
* Wed Jan 20 2010 Radek Vokal <rvokal@redhat.com> - 1.2.5-5
537ca1
- minor spec file tweaks for better svn checkout support (#553500)
537ca1
537ca1
* Tue Jan 05 2010 Radek Vokál <rvokal@redhat.com> - 1.2.5-4
537ca1
- init.lua is present always and not only when lua support is enabled
537ca1
537ca1
* Tue Jan 05 2010 Radek Vokál <rvokal@redhat.com> - 1.2.5-3
537ca1
- fix file list, init.lua is only in -devel subpackage (#552406)
537ca1
537ca1
* Fri Dec 18 2009 Patrick Monnerat <pm@datasphere.ch> 1.2.5-2
537ca1
- Autoconf macro for plugin development.
537ca1
537ca1
* Fri Dec 18 2009 Radek Vokal <rvokal@redhat.com> - 1.2.5-1
537ca1
- upgrade to 1.2.5
537ca1
- fixes security vulnaribilities, see https://www.wireshark.org/security/wnpa-sec-2009-09.html
537ca1
537ca1
* Thu Dec 17 2009 Radek Vokal <rvokal@redhat.com> - 1.2.4-3
537ca1
- split -devel package (#547899, #203642, #218451)
537ca1
- removing root warning dialog (#543709)
537ca1
537ca1
* Mon Dec 14 2009 Radek Vokal <rvokal@redhat.com> - 1.2.4-2
537ca1
- enable lua support - https://wiki.wireshark.org/Lua
537ca1
- attempt to fix filter crash on 64bits
537ca1
537ca1
* Wed Nov 18 2009 Radek Vokal <rvokal@redhat.com> - 1.2.4-1
537ca1
- upgrade to 1.2.4
537ca1
- https://www.wireshark.org/docs/relnotes/wireshark-1.2.4.html
537ca1
537ca1
* Fri Oct 30 2009 Radek Vokal <rvokal@redhat.com> - 1.2.3-1
537ca1
- upgrade to 1.2.3
537ca1
- https://www.wireshark.org/docs/relnotes/wireshark-1.2.3.html
537ca1
537ca1
* Mon Sep 21 2009 Radek Vokal <rvokal@redhat.com> - 1.2.2-1
537ca1
- upgrade to 1.2.2
537ca1
- https://www.wireshark.org/docs/relnotes/wireshark-1.2.2.html
537ca1
537ca1
* Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> - 1.2.1-5
537ca1
- do not use portaudio in RHEL
537ca1
537ca1
* Fri Aug 28 2009 Radek Vokal <rvokal@redhat.com> - 1.2.1-4
537ca1
- yet anohter rebuilt
537ca1
537ca1
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.2.1-3
537ca1
- rebuilt with new openssl
537ca1
537ca1
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
537ca1
537ca1
* Wed Jul 22 2009 Radek Vokal <rvokal@redhat.com> - 1.2.1
537ca1
- upgrade to 1.2.1
537ca1
- https://www.wireshark.org/docs/relnotes/wireshark-1.2.1.html
537ca1
537ca1
* Tue Jun 16 2009 Radek Vokal <rvokal@redhat.com> - 1.2.0
537ca1
- upgrade to 1.2.0
537ca1
- https://www.wireshark.org/docs/relnotes/wireshark-1.2.0.html
537ca1
537ca1
* Fri May 22 2009 Radek Vokal <rvokal@redhat.com> - 1.1.4-0.pre1
537ca1
- update to latest development build
537ca1
537ca1
* Thu Mar 26 2009 Radek Vokal <rvokal@redhat.com> - 1.1.3-1
537ca1
- upgrade to 1.1.3
537ca1
537ca1
* Thu Mar 26 2009 Radek Vokal <rvokal@redhat.com> - 1.1.2-4.pre1
537ca1
- fix libsmi support
537ca1
537ca1
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-3.pre1
537ca1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
537ca1
537ca1
* Mon Feb 16 2009 Radek Vokal <rvokal@redhat.com> - 1.1.2-2.pre1
537ca1
- add netdump support
537ca1
537ca1
* Sun Feb 15 2009 Steve Dickson <steved@redhat.com> - 1.1.2-1.pre1
537ca1
- NFSv4.1: Add support for backchannel decoding
537ca1
537ca1
* Mon Jan 19 2009 Radek Vokal <rvokal@redhat.com> - 1.1.2-0.pre1
537ca1
- upgrade to latest development release
537ca1
- added support for portaudio (#480195)
537ca1
537ca1
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1.1.1-0.pre1.2
537ca1
- rebuild with new openssl
537ca1
537ca1
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.1.1-0.pre1.1
537ca1
- Rebuild for Python 2.6
537ca1
537ca1
* Thu Nov 13 2008 Radek Vokál <rvokal@redhat.com> 1.1.1-0.pre1
537ca1
- upgrade to 1.1.1 development branch
537ca1
537ca1
* Wed Sep 10 2008 Radek Vokál <rvokal@redhat.com> 1.0.3-1
537ca1
- upgrade to 1.0.3
537ca1
- Security-related bugs in the NCP dissector, zlib compression code, and Tektronix .rf5 file parser have been fixed.
537ca1
- WPA group key decryption is now supported.
537ca1
- A bug that could cause packets to be wrongly dissected as "Redback Lawful Intercept" has been fixed.
537ca1
537ca1
* Mon Aug 25 2008 Radek Vokál <rvokal@redhat.com> 1.0.2-3
537ca1
- fix requires for wireshark-gnome
537ca1
537ca1
* Thu Jul 17 2008 Steve Dickson <steved@redhat.com> 1.0.2-2
537ca1
- Added patches to support NFSv4.1
537ca1
537ca1
* Fri Jul 11 2008 Radek Vokál <rvokal@redhat.com> 1.0.2-1
537ca1
- upgrade to 1.0.2
537ca1
537ca1
* Tue Jul  8 2008 Radek Vokál <rvokal@redhat.com> 1.0.1-1
537ca1
- upgrade to 1.0.1
537ca1
537ca1
* Sun Jun 29 2008 Dennis Gilmore <dennis@ausil.us> 1.0.0-3
537ca1
- add sparc arches to -fPIE
537ca1
- rebuild for new gnutls
537ca1
537ca1
* Tue Apr  1 2008 Radek Vokál <rvokal@redhat.com> 1.0.0-2
537ca1
- fix BuildRequires - python, yacc, bison
537ca1
537ca1
* Tue Apr  1 2008 Radek Vokál <rvokal@redhat.com> 1.0.0-1
537ca1
- April Fools' day upgrade to 1.0.0
537ca1
537ca1
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.99.7-3
537ca1
- Autorebuild for GCC 4.3
537ca1
537ca1
* Wed Dec 19 2007 Radek Vokál <rvokal@redhat.com> 0.99.7-2
537ca1
- fix crash in unprivileged mode (#317681)
537ca1
537ca1
* Tue Dec 18 2007 Radek Vokál <rvokal@redhat.com> 0.99.7-1
537ca1
- upgrade to 0.99.7
537ca1
537ca1
* Fri Dec  7 2007 Radek Vokál <rvokal@redhat.com> 0.99.7-0.pre2.1
537ca1
- rebuilt for openssl
537ca1
537ca1
* Mon Nov 26 2007 Radek Vokal <rvokal@redhat.com> 0.99.7-0.pre2
537ca1
- switch to libsmi from net-snmp
537ca1
- disable ADNS due to its lack of Ipv6 support
537ca1
- 0.99.7 prerelease 2
537ca1
537ca1
* Tue Nov 20 2007 Radek Vokal <rvokal@redhat.com> 0.99.7-0.pre1
537ca1
- upgrade to 0.99.7 pre-release
537ca1
537ca1
* Wed Sep 19 2007 Radek Vokál <rvokal@redhat.com> 0.99.6-3
537ca1
- fixed URL
537ca1
537ca1
* Thu Aug 23 2007 Radek Vokál <rvokal@redhat.com> 0.99.6-2
537ca1
- rebuilt
537ca1
537ca1
* Mon Jul  9 2007 Radek Vokal <rvokal@redhat.com> 0.99.6-1
537ca1
- upgrade to 0.99.6 final
537ca1
537ca1
* Fri Jun 15 2007 Radek Vokál <rvokal@redhat.com> 0.99.6-0.pre2
537ca1
- another pre-release
537ca1
- turn on ADNS support
537ca1
537ca1
* Wed May 23 2007 Radek Vokál <rvokal@redhat.com> 0.99.6-0.pre1
537ca1
- update to pre1 of 0.99.6 release
537ca1
537ca1
* Mon Feb  5 2007 Radek Vokál <rvokal@redhat.com> 0.99.5-1
537ca1
- multiple security issues fixed (#227140)
537ca1
- CVE-2007-0459 - The TCP dissector could hang or crash while reassembling HTTP packets
537ca1
- CVE-2007-0459 - The HTTP dissector could crash.
537ca1
- CVE-2007-0457 - On some systems, the IEEE 802.11 dissector could crash.
537ca1
- CVE-2007-0456 - On some systems, the LLT dissector could crash.
537ca1
537ca1
* Mon Jan 15 2007 Radek Vokal <rvokal@redhat.com> 0.99.5-0.pre2
537ca1
- another 0.99.5 prerelease, fix build bug and pie flags
537ca1
537ca1
* Tue Dec 12 2006 Radek Vokal <rvokal@redhat.com> 0.99.5-0.pre1
537ca1
- update to 0.99.5 prerelease
537ca1
537ca1
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.99.4-5
537ca1
- rebuild for python 2.5
537ca1
537ca1
* Tue Nov 28 2006 Radek Vokal <rvokal@redhat.com> 0.99.4-4
537ca1
- rebuilt for new libpcap and net-snmp
537ca1
537ca1
* Thu Nov 23 2006 Radek Vokal <rvokal@redhat.com> 0.99.4-3
537ca1
- add htmlview to Buildrequires to be picked up by configure scripts (#216918)
537ca1
537ca1
* Tue Nov  7 2006 Radek Vokal <rvokal@redhat.com> 0.99.4-2.fc7
537ca1
- Requires: net-snmp for the list of MIB modules
537ca1
537ca1
* Wed Nov  1 2006 Radek Vokál <rvokal@redhat.com> 0.99.4-1
537ca1
- upgrade to 0.99.4 final
537ca1
537ca1
* Tue Oct 31 2006 Radek Vokál <rvokal@redhat.com> 0.99.4-0.pre2
537ca1
- upgrade to 0.99.4pre2
537ca1
537ca1
* Tue Oct 10 2006 Radek Vokal <rvokal@redhat.com> 0.99.4-0.pre1
537ca1
- upgrade to 0.99.4-0.pre1
537ca1
537ca1
* Fri Aug 25 2006 Radek Vokál <rvokal@redhat.com> 0.99.3-1
537ca1
- upgrade to 0.99.3
537ca1
- Wireshark 0.99.3 fixes the following vulnerabilities:
537ca1
- the SCSI dissector could crash. Versions affected: CVE-2006-4330
537ca1
- the IPsec ESP preference parser was susceptible to off-by-one errors. CVE-2006-4331
537ca1
- a malformed packet could make the Q.2931 dissector use up available memory. CVE-2006-4333
537ca1
537ca1
* Tue Jul 18 2006 Radek Vokál <rvokal@redhat.com> 0.99.2-1
537ca1
- upgrade to 0.99.2
537ca1
537ca1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.99.2-0.pre1.1
537ca1
- rebuild
537ca1
537ca1
* Tue Jul 11 2006 Radek Vokál <rvokal@redhat.com> 0.99.2-0.pre1
537ca1
- upgrade to 0.99.2pre1, fixes (#198242)
537ca1
537ca1
* Tue Jun 13 2006 Radek Vokal <rvokal@redhat.com> 0.99.1-0.pre1
537ca1
- spec file changes
537ca1
537ca1
* Fri Jun  9 2006 Radek Vokal <rvokal@redhat.com> 0.99.1pre1-1
537ca1
- initial build for Fedora Core