Blame SPECS/scapy.spec

rdobuilder 1745a8
Name:           scapy
rdobuilder 1745a8
Version:        2.5.0
rdobuilder 1745a8
Release:        4%{?dist}
rdobuilder 1745a8
Summary:        Interactive packet manipulation tool and network scanner
rdobuilder 1745a8
rdobuilder 1745a8
%global         gituser         secdev
rdobuilder 1745a8
%global         gitname         scapy
rdobuilder 1745a8
%global         commit          95ba5b8504152a1f820bbe679ccf03668cb5118f
rdobuilder 1745a8
%global         shortcommit     %(c=%{commit}; echo ${c:0:7})
rdobuilder 1745a8
rdobuilder 1745a8
License:        GPLv2
rdobuilder 1745a8
URL:            http://www.secdev.org/projects/scapy/
rdobuilder 1745a8
#               https://github.com/secdev/scapy/releases
rdobuilder 1745a8
#               https://bitbucket.org/secdev/scapy/pull-request/80
rdobuilder 1745a8
#               https://scapy.readthedocs.io/en/latest/introduction.html
rdobuilder 1745a8
Source0:        https://github.com/%{gituser}/%{gitname}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
rdobuilder 1745a8
rdobuilder 1745a8
%global         common_desc %{expand:
rdobuilder 1745a8
Scapy is a powerful interactive packet manipulation program built on top
rdobuilder 1745a8
of the Python interpreter. It can be used to forge or decode packets of
rdobuilder 1745a8
a wide number of protocols, send them over the wire, capture them, match
rdobuilder 1745a8
requests and replies, and much more.}
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
# By default build with python3 subpackage
rdobuilder 1745a8
%bcond_without     python3
rdobuilder 1745a8
rdobuilder 1745a8
# Build also the python2 package on releases up to fc31 and rhel8
rdobuilder 1745a8
%if (0%{?fedora} && 0%{?fedora} <= 31 ) || ( 0%{?rhel} && 0%{?rhel} <= 8 )
rdobuilder 1745a8
%bcond_without     python2
rdobuilder 1745a8
%else
rdobuilder 1745a8
%bcond_with        python2
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
# By default build the documentation only on Fedora due to cc-by-nc-sa license
rdobuilder 1745a8
%if 0%{?fedora}
rdobuilder 1745a8
%bcond_without     doc
rdobuilder 1745a8
%else
rdobuilder 1745a8
%bcond_with        doc
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
BuildArch:      noarch
rdobuilder 1745a8
rdobuilder 1745a8
BuildRequires:  make
rdobuilder 1745a8
BuildRequires:  sed
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python2}
rdobuilder 1745a8
BuildRequires:  python2-devel
rdobuilder 1745a8
BuildRequires:  python2-setuptools
rdobuilder 1745a8
%if 0%{?with_doc}
rdobuilder 1745a8
BuildRequires:  python2-tox
rdobuilder 1745a8
%endif
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python3}
rdobuilder 1745a8
BuildRequires:  python%{python3_pkgversion}-devel
rdobuilder 1745a8
BuildRequires:  python%{python3_pkgversion}-setuptools
rdobuilder 1745a8
%if 0%{?with_doc}
rdobuilder 1745a8
BuildRequires:  python%{python3_pkgversion}-tox
rdobuilder 1745a8
%endif
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
# Recommends only supported on fedora and rhel8+
rdobuilder 1745a8
%if (0%{?fedora}) || ( 0%{?rhel} && 0%{?rhel} >= 8 )
rdobuilder 1745a8
Recommends:     tcpdump
rdobuilder 1745a8
# Using database of manufactures /usr/share/wireshark/manuf
rdobuilder 1745a8
Recommends:     wireshark-cli
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%description %{common_desc}
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python2}
rdobuilder 1745a8
%package -n python2-%{name}
rdobuilder 1745a8
Summary:        Interactive packet manipulation tool and network scanner
rdobuilder 1745a8
rdobuilder 1745a8
%{?python_provide:%python_provide python2-%{name}}
rdobuilder 1745a8
rdobuilder 1745a8
%if (0%{?fedora}) || ( 0%{?rhel} && 0%{?rhel} >= 8 ) 
rdobuilder 1745a8
Recommends:     python2-pyx
rdobuilder 1745a8
Recommends:     python2-matplotlib
rdobuilder 1745a8
Recommends:     ipython2
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%description -n python2-%{name}
rdobuilder 1745a8
%{common_desc}
rdobuilder 1745a8
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python3}
rdobuilder 1745a8
%package -n python%{python3_pkgversion}-%{name}
rdobuilder 1745a8
Summary:        Interactive packet manipulation tool and network scanner
rdobuilder 1745a8
rdobuilder 1745a8
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
rdobuilder 1745a8
Provides:       %{name} = %{version}-%{release}
rdobuilder 1745a8
rdobuilder 1745a8
%if (0%{?fedora}) || ( 0%{?rhel} && 0%{?rhel} >= 8 ) 
rdobuilder 1745a8
Recommends:     PyX
rdobuilder 1745a8
Recommends:     python%{python3_pkgversion}-matplotlib
rdobuilder 1745a8
Recommends:     ipython3
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%description -n python%{python3_pkgversion}-%{name}
rdobuilder 1745a8
%{common_desc}
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_doc}
rdobuilder 1745a8
%package doc
rdobuilder 1745a8
Summary:        Interactive packet manipulation tool and network scanner
rdobuilder 1745a8
rdobuilder 1745a8
BuildRequires:  python%{python3_pkgversion}-sphinx
rdobuilder 1745a8
BuildRequires:  python%{python3_pkgversion}-sphinx_rtd_theme
rdobuilder 1745a8
rdobuilder 1745a8
%description doc
rdobuilder 1745a8
%{common_desc}
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%prep
rdobuilder 1745a8
%autosetup -p 1 -n %{name}-%{version}
rdobuilder 1745a8
rdobuilder 1745a8
# Remove shebang
rdobuilder 1745a8
# https://github.com/secdev/scapy/pull/2332
rdobuilder 1745a8
SHEBANGS=$(find ./scapy -name '*.py' -print | xargs grep -l -e '^#!.*env python')
rdobuilder 1745a8
for FILE in $SHEBANGS ; do
rdobuilder 1745a8
    sed -i.orig -e 1d "${FILE}"
rdobuilder 1745a8
    touch -r "${FILE}.orig" "${FILE}"
rdobuilder 1745a8
    rm "${FILE}.orig"
rdobuilder 1745a8
done
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%build
rdobuilder 1745a8
%if 0%{?with_python2}
rdobuilder 1745a8
%py2_build
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python3}
rdobuilder 1745a8
%py3_build
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_doc}
rdobuilder 1745a8
make -C doc/scapy html BUILDDIR=_build_doc SPHINXBUILD=sphinx-build-%python3_version
rdobuilder 1745a8
rdobuilder 1745a8
rm -f doc/scapy/_build_doc/html/.buildinfo
rdobuilder 1745a8
rm -f doc/scapy/_build_doc/html/_static/_dummy
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%install
rdobuilder 1745a8
install -dp -m0755 %{buildroot}%{_mandir}/man1
rdobuilder 1745a8
install -Dp -m0644 doc/scapy.1* %{buildroot}%{_mandir}/man1/
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python2}
rdobuilder 1745a8
%py2_install
rdobuilder 1745a8
rm -f %{buildroot}%{python2_sitelib}/*egg-info/requires.txt
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
# Rename the executables
rdobuilder 1745a8
mv -f %{buildroot}%{_bindir}/scapy   %{buildroot}%{_bindir}/scapy2
rdobuilder 1745a8
rdobuilder 1745a8
%if ! 0%{?with_python3}
rdobuilder 1745a8
# Link the default to the py2 version of executables if py3 not built
rdobuilder 1745a8
ln -s %{_bindir}/scapy2   %{buildroot}%{_bindir}/scapy
rdobuilder 1745a8
%endif
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python3}
rdobuilder 1745a8
%py3_install
rdobuilder 1745a8
rm -f %{buildroot}%{python3_sitelib}/*egg-info/requires.txt
rdobuilder 1745a8
rdobuilder 1745a8
# Rename the executables
rdobuilder 1745a8
mv -f %{buildroot}%{_bindir}/scapy   %{buildroot}%{_bindir}/scapy3
rdobuilder 1745a8
rdobuilder 1745a8
# Link the default to the python3 version of executables
rdobuilder 1745a8
ln -s %{_bindir}/scapy3   %{buildroot}%{_bindir}/scapy
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
# check
rdobuilder 1745a8
# TODO: Need to fix/remove slow/failed test
rdobuilder 1745a8
# cd test/
rdobuilder 1745a8
# ./run_tests_py2 || true
rdobuilder 1745a8
# ./run_tests_py3 || true
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python2}
rdobuilder 1745a8
%files -n python2-%{name}
rdobuilder 1745a8
%license LICENSE
rdobuilder 1745a8
%if ! 0%{?with_python3}
rdobuilder 1745a8
%doc %{_mandir}/man1/scapy.1*
rdobuilder 1745a8
%{_bindir}/scapy
rdobuilder 1745a8
%endif
rdobuilder 1745a8
%{_bindir}/scapy2
rdobuilder 1745a8
%{python2_sitelib}/scapy/
rdobuilder 1745a8
%{python2_sitelib}/scapy-*.egg-info
rdobuilder 1745a8
%exclude %{python2_sitelib}/test/
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_python3}
rdobuilder 1745a8
%files -n python%{python3_pkgversion}-%{name}
rdobuilder 1745a8
%license LICENSE
rdobuilder 1745a8
%doc %{_mandir}/man1/scapy.1*
rdobuilder 1745a8
%{_bindir}/scapy
rdobuilder 1745a8
%{_bindir}/scapy3
rdobuilder 1745a8
%{python3_sitelib}/scapy/
rdobuilder 1745a8
%{python3_sitelib}/scapy-*.egg-info
rdobuilder 1745a8
%exclude %{python3_sitelib}/test/
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%if 0%{?with_doc}
rdobuilder 1745a8
%files doc
rdobuilder 1745a8
%doc doc/scapy/_build_doc/html
rdobuilder 1745a8
%endif
rdobuilder 1745a8
rdobuilder 1745a8
rdobuilder 1745a8
%changelog
rdobuilder 1745a8
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 2.5.0-3
rdobuilder 1745a8
- Rebuilt for Python 3.12
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.0-2
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Jan 02 2023 Jonathan Wright <jonathan@almalinux.org> - 2.5.0-1
rdobuilder 1745a8
- Update to 2.5.0 rhbz#2156396
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-6
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.4.5-5
rdobuilder 1745a8
- Rebuilt for Python 3.11
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-3
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.4.5-2
rdobuilder 1745a8
- Rebuilt for Python 3.10
rdobuilder 1745a8
rdobuilder 1745a8
* Tue Apr 20 2021 Michal Ambroz <rebus _AT seznam.cz> - 2.4.5-1
rdobuilder 1745a8
- bump to 2.4.5 release
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Mar 12 2021 Michal Ambroz <rebus _AT seznam.cz> - 2.4.4-1
rdobuilder 1745a8
- bump to 2.4.4 release
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Mar 11 2021 W. Michael Petullo <mike@flyn.org> - 2.4.3-8
rdobuilder 1745a8
- Patch to fix loading libc.a; see https://bugs.python.org/issue42580
rdobuilder 1745a8
rdobuilder 1745a8
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-7
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-6
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.4.3-5
rdobuilder 1745a8
- Rebuilt for Python 3.9
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Nov 08 2019 Michal Ambroz <rebus _AT seznam.cz> - 2.4.3-3
rdobuilder 1745a8
- remove colliding manpage from python2 package
rdobuilder 1745a8
- add license files
rdobuilder 1745a8
- add doc subpackage
rdobuilder 1745a8
- remove shebangs
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Oct 06 2019 Michal Ambroz <rebus _AT seznam.cz> - 2.4.3-2
rdobuilder 1745a8
- change to recommended python build dependencies for EPEL7 - thanks Miro Hroncok
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Sep 26 2019 Michal Ambroz <rebus _AT seznam.cz> - 2.4.3-1
rdobuilder 1745a8
- bump to 2.4.3 release
rdobuilder 1745a8
- change the python2 to conditional build to be able to keep one spec for all
rdobuilder 1745a8
- add Recommends for dependencies, except for EPEL7
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Sep 20 2019 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-8
rdobuilder 1745a8
- Subpackage python2-scapy has been removed
rdobuilder 1745a8
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-7
rdobuilder 1745a8
- Rebuilt for Python 3.8
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-6
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-5
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-3
rdobuilder 1745a8
- Rebuilt for Python 3.7
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Apr 30 2018 Michal Ambroz <rebus _AT seznam.cz> - 2.4.0-2
rdobuilder 1745a8
- disable the test for now - there is too many failing (network) tests
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Apr 30 2018 Michal Ambroz <rebus _AT seznam.cz> - 2.4.0-1
rdobuilder 1745a8
- bump to 2.4.0 release
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Mar 9 2018 Michal Ambroz <rebus _AT seznam.cz> - 2.4.0-0.rc5.1
rdobuilder 1745a8
- bump to upstream 2.4.0 release candidate 5
rdobuilder 1745a8
- enable separate python3 and python2 build
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Wed Jan 31 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.3.3-3
rdobuilder 1745a8
- Update Python 2 dependency declarations to new packaging standards
rdobuilder 1745a8
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.3-2
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Tue May 23 2017 Michal Ambroz <rebus _AT seznam.cz> - 2.3.3-1
rdobuilder 1745a8
- bump to upstream 2.3.3
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-3
rdobuilder 1745a8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1-2
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Dec 26 2015 Sven Lankes <athmane@fedoraproject.org> - 2.3.1-1
rdobuilder 1745a8
- update to latest upstream release (2.3.1)
rdobuilder 1745a8
- Update to 2.3.1
rdobuilder 1745a8
- Remove upstreamed patch
rdobuilder 1745a8
- Some spec fixes
rdobuilder 1745a8
- Thanks to Athmane Madjoudj for the patch
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-6
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Oct 02 2014 Lubomir Rintel <lkundrak@v3.sk> - 2.2.0-5
rdobuilder 1745a8
- Fix psdump()/pdfdump()
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-3
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Jul 22 2012 Sven Lankes <sven@lank.es> - 2.2.0-1
rdobuilder 1745a8
- Update to Scapy 2.2.0
rdobuilder 1745a8
- Fixes rhbz #788659 - thanks to Thiébaud Weksteen
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.10-7
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.10-6
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.10-5
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.0.0.10-4
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.10-3
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0.10-2
rdobuilder 1745a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Dec 22 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 2.0.0.10-1
rdobuilder 1745a8
- Update to Scapy 2.0.0.10.
rdobuilder 1745a8
rdobuilder 1745a8
* Sun Dec 07 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 2.0.0.9-2
rdobuilder 1745a8
- Update for Scapy 2.0.0.9.
rdobuilder 1745a8
rdobuilder 1745a8
* Tue Jan 22 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 1.1.1-4
rdobuilder 1745a8
- Switch to using rm macro.
rdobuilder 1745a8
rdobuilder 1745a8
* Mon Jan 21 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 1.1.1-2
rdobuilder 1745a8
- Spec file cleanup.
rdobuilder 1745a8
rdobuilder 1745a8
* Fri Jan 18 2008 Devan Goodwin <dgoodwin@dangerouslyinc.com> 1.1.1-1
rdobuilder 1745a8
- Initial packaging for Fedora.
rdobuilder 1745a8