rdobuilder 41a366
%global srcname eventlet
rdobuilder 41a366
%global _description %{expand:
rdobuilder 41a366
Eventlet is a networking library written in Python. It achieves high
rdobuilder 41a366
scalability by using non-blocking io while at the same time retaining
rdobuilder 41a366
high programmer usability by using coroutines to make the non-blocking
rdobuilder 41a366
io operations appear blocking at the source code level.}
rdobuilder 41a366
rdobuilder 41a366
# RHEL9 doesn't have nose, and it won't be added to EPEL9 because it's
rdobuilder 41a366
# abandoned upstream (and deprecated in Fedora).
rdobuilder 41a366
# https://bugzilla.redhat.com/show_bug.cgi?id=2041068
rdobuilder 41a366
%if %{undefined el9}
rdobuilder 41a366
%bcond_without  tests
rdobuilder 41a366
%endif
rdobuilder 41a366
rdobuilder 41a366
Name:           python-%{srcname}
rdobuilder 41a366
Version:        0.33.1
rdobuilder 41a366
Release:        4%{?dist}
rdobuilder 41a366
Summary:        Highly concurrent networking library
rdobuilder 41a366
License:        MIT
rdobuilder 41a366
rdobuilder 41a366
URL:            https://eventlet.net
rdobuilder 41a366
Source:         %pypi_source %{srcname}
rdobuilder 41a366
rdobuilder 41a366
BuildArch:      noarch
rdobuilder 41a366
rdobuilder 41a366
%description %{_description}
rdobuilder 41a366
rdobuilder 41a366
%package -n python3-%{srcname}
rdobuilder 41a366
Summary:        %{summary}
rdobuilder 41a366
BuildRequires:  python3-devel
rdobuilder 41a366
BuildRequires:  pyproject-rpm-macros
rdobuilder 41a366
%if %{with tests}
rdobuilder 41a366
BuildRequires:  python3-nose
rdobuilder 41a366
BuildRequires:  python3-pyOpenSSL
rdobuilder 41a366
%endif
rdobuilder 41a366
rdobuilder 41a366
%description -n python3-%{srcname} %{_description}
rdobuilder 41a366
rdobuilder 41a366
%package -n python3-%{srcname}-doc
rdobuilder 41a366
Summary:        Documentation for python3-%{srcname}
rdobuilder 41a366
BuildRequires:  make
rdobuilder 41a366
BuildRequires:  python3-sphinx
rdobuilder 41a366
BuildRequires:  python3-zmq
rdobuilder 41a366
rdobuilder 41a366
%description -n python3-%{srcname}-doc
rdobuilder 41a366
%{summary}.
rdobuilder 41a366
rdobuilder 41a366
%prep
rdobuilder 41a366
%setup -n %{srcname}-%{version} -q
rdobuilder 41a366
rdobuilder 41a366
%generate_buildrequires
rdobuilder 41a366
%pyproject_buildrequires
rdobuilder 41a366
rdobuilder 41a366
%build
rdobuilder 41a366
%pyproject_wheel
rdobuilder 41a366
%make_build -C doc html
rdobuilder 41a366
rdobuilder 41a366
%install
rdobuilder 41a366
%pyproject_install
rdobuilder 41a366
%pyproject_save_files %{srcname}
rdobuilder 41a366
rdobuilder 41a366
%check
rdobuilder 41a366
%if %{with tests}
rdobuilder 41a366
# Disable setting up dns (we have no /etc/resolv.conf in mock
rdobuilder 41a366
export EVENTLET_NO_GREENDNS=yes
rdobuilder 41a366
nosetests-%{python3_version} -v -e greendns_test -e socket_test -e test_patcher_existing_locks_locked -e test_017_ssl_zeroreturnerror
rdobuilder 41a366
%else
rdobuilder 41a366
%pyproject_check_import -t
rdobuilder 41a366
%endif
rdobuilder 41a366
rdobuilder 41a366
%files -n python3-%{srcname} -f %{pyproject_files}
rdobuilder 41a366
%doc README.rst AUTHORS NEWS
rdobuilder 41a366
rdobuilder 41a366
%files -n python3-%{srcname}-doc
rdobuilder 41a366
%license LICENSE
rdobuilder 41a366
%doc doc/_build/html
rdobuilder 41a366
rdobuilder 41a366
%changelog
rdobuilder 41a366
* Tue Jul 26 2022 Carl George <carl@george.computer> - 0.33.1-4
rdobuilder 41a366
- Convert to pyproject macros
rdobuilder 41a366
- Build docs with make
rdobuilder 41a366
- Disable tests on EPEL9
rdobuilder 41a366
rdobuilder 41a366
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.33.1-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 0.33.1-2
rdobuilder 41a366
- Rebuilt for Python 3.11
rdobuilder 41a366
rdobuilder 41a366
* Sun May 29 2022 Kevin Fenzi <kevin@scrye.com> - 0.33.1-1
rdobuilder 41a366
- Update to 0.33.1. Fixes rhbz#2085297
rdobuilder 41a366
rdobuilder 41a366
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.33.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Sat Jan 08 2022 Kevin Fenzi <kevin@scrye.com> - 0.33.0-1
rdobuilder 41a366
- Update to 0.33.0. Fixes rhbz#2023953
rdobuilder 41a366
rdobuilder 41a366
* Tue Oct 05 2021 Lumír Balhar <lbalhar@redhat.com> - 0.32.0-2
rdobuilder 41a366
- Unbundle dnspython
rdobuilder 41a366
rdobuilder 41a366
* Sat Sep 25 2021 Kevin Fenzi <kevin@scrye.com> - 0.32.0-1
rdobuilder 41a366
- Update to 0.32.0. Fixes rhbz#2000093
rdobuilder 41a366
rdobuilder 41a366
* Fri Jul 30 2021 Kevin Fenzi <kevin@scrye.com> - 0.31.1-1
rdobuilder 41a366
- Update to 0.31.1. Fixes rhbz#1981430
rdobuilder 41a366
- Fix FTBFS rhbz#1981320
rdobuilder 41a366
rdobuilder 41a366
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.31.0-4
rdobuilder 41a366
- Second attempt - Rebuilt for
rdobuilder 41a366
  https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Wed Jun 16 2021 Tomas Hrnciar <thrnciar@redhat.com> - 0.31.0-3
rdobuilder 41a366
- Backport upstream patch to add compatibility of Eventlet with Python 3.10
rdobuilder 41a366
- Fixes: rhbz#1913291
rdobuilder 41a366
rdobuilder 41a366
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.31.0-2
rdobuilder 41a366
- Rebuilt for Python 3.10
rdobuilder 41a366
rdobuilder 41a366
* Sun May 16 2021 Kevin Fenzi <kevin@scrye.com> - 0.31.0-1
rdobuilder 41a366
- Update to 0.31.0. Fixes rhbz#1957249
rdobuilder 41a366
- Mitigates CVE-2021-21419
rdobuilder 41a366
rdobuilder 41a366
* Sun Mar 07 2021 Kevin Fenzi <kevin@scrye.com> - 0.30.2-1
rdobuilder 41a366
- Update to 0.30.2. Fixes rhbz#1934511
rdobuilder 41a366
rdobuilder 41a366
* Sun Feb 07 2021 Kevin Fenzi <kevin@scrye.com> - 0.30.1-1
rdobuilder 41a366
- Update to 0.30.1. Fixes rhbz#1923933
rdobuilder 41a366
rdobuilder 41a366
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Sat Dec 26 2020 Kevin Fenzi <kevin@scrye.com> - 0.30.0-1
rdobuilder 41a366
- Update to 0.30.0. (rhbz#1907221)
rdobuilder 41a366
rdobuilder 41a366
* Mon Nov 30 2020 Joel Capitao <jcapitao@redhat.com> - 0.29.1-2.20201102git087ba743
rdobuilder 41a366
- Bundle dns1 (rhbz#1896191)
rdobuilder 41a366
rdobuilder 41a366
* Fri Nov 06 2020 Joel Capitao <jcapitao@redhat.com> - 0.29.1-1.20201102git087ba743
rdobuilder 41a366
- Update to 0.29.1.20201102git087ba743. (rhbz#1862178)
rdobuilder 41a366
rdobuilder 41a366
* Sat Oct 10 2020 Kevin Fenzi <kevin@scrye.com> - 0.26.0-1
rdobuilder 41a366
- Update to 0.26.0.
rdobuilder 41a366
rdobuilder 41a366
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.2-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 0.25.2-2
rdobuilder 41a366
- Rebuilt for Python 3.9
rdobuilder 41a366
rdobuilder 41a366
* Sat Apr 18 2020 Kevin Fenzi <kevin@scrye.com> - 0.25.2-1
rdobuilder 41a366
- Update to 0.25.2. Fixes bug #1822602
rdobuilder 41a366
rdobuilder 41a366
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.1-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Thu Sep 26 2019 Miro Hrončok <mhroncok@redhat.com> - 0.25.1-2
rdobuilder 41a366
- Subpackage python2-eventlet has been removed
rdobuilder 41a366
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
rdobuilder 41a366
rdobuilder 41a366
* Thu Aug 22 2019 Kevin Fenzi <kevin@scrye.com> - 0.25.1-1
rdobuilder 41a366
- Update to 0.25.1. Fixes bug #1744357
rdobuilder 41a366
rdobuilder 41a366
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.25.0-3
rdobuilder 41a366
- Rebuilt for Python 3.8
rdobuilder 41a366
rdobuilder 41a366
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue May 28 2019 Kevin Fenzi <kevin@scrye.com> - 0.25.0-1
rdobuilder 41a366
- Update to 0.25.0. Fixes bug #1713639
rdobuilder 41a366
rdobuilder 41a366
* Sat Mar 09 2019 Kevin Fenzi <kevin@scrye.com> - 0.24.1-4
rdobuilder 41a366
- Drop python2-eventlet-doc subpackage as python2-sphinx is going away.
rdobuilder 41a366
rdobuilder 41a366
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue Nov 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.24.1-2
rdobuilder 41a366
- use python dependency generator
rdobuilder 41a366
rdobuilder 41a366
* Sun Oct 14 2018 Kevin Fenzi <kevin@scrye.com> - 0.24.1-1
rdobuilder 41a366
- Update to 0.24.1. Fixes bug #1611023
rdobuilder 41a366
rdobuilder 41a366
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Fri Jun 22 2018 Miro Hrončok <mhroncok@redhat.com> - 0.23.0-1
rdobuilder 41a366
- Update to 0.23.0 (#1575434)
rdobuilder 41a366
- Add patch for Python 3.7 (#1594248)
rdobuilder 41a366
rdobuilder 41a366
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.22.1-2
rdobuilder 41a366
- Rebuilt for Python 3.7
rdobuilder 41a366
rdobuilder 41a366
* Sun Feb 18 2018 Kevin Fenzi <kevin@scrye.com> - 0.22.1-1
rdobuilder 41a366
- Update to 0.22.1. Fixes bug #1546471
rdobuilder 41a366
rdobuilder 41a366
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.22.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Sat Jan 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-1
rdobuilder 41a366
- Update to 0.22.0
rdobuilder 41a366
rdobuilder 41a366
* Tue Oct  3 2017 Haïkel Guémar <hguemar@fedoraproject.org> - 0.21.0-3
rdobuilder 41a366
- Fix upstream #401
rdobuilder 41a366
- Fix compat with PyOpenSSL 17.3.0
rdobuilder 41a366
- Cleanup BR
rdobuilder 41a366
rdobuilder 41a366
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue May 23 2017 Lumír Balhar <lbalhar@redhat.com> - 0.21.0-1
rdobuilder 41a366
- Upstream 0.21.0
rdobuilder 41a366
- Fix issue with enum-compat dependency for dependent packages
rdobuilder 41a366
- Enable tests
rdobuilder 41a366
- Fix tracebacks during docs generating by install python[23]-zmq
rdobuilder 41a366
rdobuilder 41a366
* Tue Apr 25 2017 Haïkel Guémar <hguemar@fedoraproject.org> - 0.20.1-1
rdobuilder 41a366
- Upstream 0.20.1
rdobuilder 41a366
rdobuilder 41a366
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.4-4
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.18.4-3
rdobuilder 41a366
- Rebuild for Python 3.6
rdobuilder 41a366
rdobuilder 41a366
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18.4-2
rdobuilder 41a366
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
rdobuilder 41a366
rdobuilder 41a366
* Mon Apr 25 2016 Kevin Fenzi <kevin@scrye.com> - 0.18.4-1
rdobuilder 41a366
- Update to 0.18.4. Fixes bug #1329993
rdobuilder 41a366
rdobuilder 41a366
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.4-6
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.4-5
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
rdobuilder 41a366
rdobuilder 41a366
* Mon Oct 19 2015 Jon Schlueter <jschluet@redhat.com> 0.17.4-4
rdobuilder 41a366
- greenio: send() was running empty loop on ENOTCONN rhbz#1268351
rdobuilder 41a366
rdobuilder 41a366
* Thu Sep 03 2015 Pádraig Brady <pbrady@redhat.com> - 0.17.4-3
rdobuilder 41a366
- Tighten up Provides: and Obsoletes: for previous change
rdobuilder 41a366
rdobuilder 41a366
* Tue Sep 01 2015 Chandan Kumar <chkumar246@gmail.com> - 0.17.4-2
rdobuilder 41a366
- Added python3 support
rdobuilder 41a366
rdobuilder 41a366
* Wed Jul 22 2015 Pádraig Brady <pbrady@redhat.com> - 0.17.4-1
rdobuilder 41a366
- Latest upstream
rdobuilder 41a366
rdobuilder 41a366
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.3-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue Apr 14 2015 Pádraig Brady <pbrady@redhat.com> - 0.17.3-1
rdobuilder 41a366
- Latest upstream
rdobuilder 41a366
rdobuilder 41a366
* Tue Mar 31 2015 Pádraig Brady <pbrady@redhat.com> - 0.17.1-1
rdobuilder 41a366
- Latest upstream
rdobuilder 41a366
rdobuilder 41a366
* Tue Sep 02 2014 Pádraig Brady <pbrady@redhat.com> - 0.15.2-1
rdobuilder 41a366
- Latest upstream
rdobuilder 41a366
rdobuilder 41a366
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Mon Oct 28 2013 Alan Pevec <apevec@redhat.com> - 0.14.0-1
rdobuilder 41a366
- Update to 0.14.0
rdobuilder 41a366
rdobuilder 41a366
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Wed Feb 20 2013 Pádraig Brady 
rdobuilder 41a366
- Update to 0.12.0
rdobuilder 41a366
rdobuilder 41a366
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.17-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Mon Nov 12 2012 Pádraig Brady 
rdobuilder 41a366
- fix waitpid() override to not return immediately
rdobuilder 41a366
rdobuilder 41a366
* Fri Aug 03 2012 Pádraig Brady 
rdobuilder 41a366
- Update to 0.9.17
rdobuilder 41a366
rdobuilder 41a366
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.16-7
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Tue Mar 27 2012 Pádraig Brady 
rdobuilder 41a366
- Update patch to avoid leak of _DummyThread objects
rdobuilder 41a366
rdobuilder 41a366
* Mon Mar  5 2012 Pádraig Brady 
rdobuilder 41a366
- Fix patch to avoid leak of _DummyThread objects
rdobuilder 41a366
rdobuilder 41a366
* Wed Feb 29 2012 Pádraig Brady 
rdobuilder 41a366
- Apply a patch to avoid leak of _DummyThread objects
rdobuilder 41a366
rdobuilder 41a366
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.16-3
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Wed Nov 09 2011 Pádraig Brady 
rdobuilder 41a366
- Apply a patch to support subprocess.Popen implementations
rdobuilder 41a366
  that accept the timeout parameter, which is the case on RHEL >= 6.1
rdobuilder 41a366
rdobuilder 41a366
* Sat Aug 27 2011 Kevin Fenzi <kevin@scrye.com> - 0.9.16-1
rdobuilder 41a366
- Update to 0.9.16
rdobuilder 41a366
rdobuilder 41a366
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.12-2
rdobuilder 41a366
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
rdobuilder 41a366
rdobuilder 41a366
* Wed Sep 08 2010 Lev Shamardin <shamardin@gmail.com> - 0.9.12-1
rdobuilder 41a366
- Updated to version 0.9.12.
rdobuilder 41a366
rdobuilder 41a366
* Wed Jul 28 2010 Lev Shamardin <shamardin@gmail.com> - 0.9.9-1
rdobuilder 41a366
- Updated to version 0.9.9.
rdobuilder 41a366
rdobuilder 41a366
* Wed Apr 14 2010 Lev Shamardin <shamardin@gmail.com> - 0.9.7-1
rdobuilder 41a366
- Initial package version.