#5 Update to 0.29.1.20201102git087ba743
Merged 3 years ago by kevin. Opened 3 years ago by jcapitao.
rpms/ jcapitao/python-eventlet master  into  master

file modified
+1
@@ -20,3 +20,4 @@ 

  /eventlet-0.25.1.tar.gz

  /eventlet-0.25.2.tar.gz

  /eventlet-0.26.0.tar.gz

+ /087ba743c7af8a40ac1e4e2ec89409eee3b4233e.zip

file modified
+10 -4
@@ -1,13 +1,16 @@ 

  %global modname eventlet

+ %global git_commit 087ba743c7af8a40ac1e4e2ec89409eee3b4233e

+ %global git_date   20201102

+ %global git_commit_short %(c="%{git_commit}"; echo "${c:0:8}")

  %{?python_enable_dependency_generator}

  

  Name:           python-%{modname}

- Version:        0.26.0

- Release:        1%{?dist}

+ Version:        0.29.1

+ Release:        1.%{git_date}git%{git_commit_short}%{?dist}

  Summary:        Highly concurrent networking library

  License:        MIT

  URL:            http://eventlet.net

- Source0:        %{pypi_source %{modname}}

+ Source0:        https://github.com/eventlet/%{modname}/archive/%{git_commit}.zip

  

  BuildArch:      noarch

  
@@ -45,7 +48,7 @@ 

  %{summary}.

  

  %prep

- %autosetup -n %{modname}-%{version} -p1

+ %autosetup -n %{modname}-%{git_commit}

  rm -vrf *.egg-info

  # Remove dependency on enum-compat from setup.py

  # enum-compat is not needed for Python 3
@@ -83,6 +86,9 @@ 

  %doc html-3

  

  %changelog

+ * Fri Nov 06 2020 Joel Capitao <jcapitao@redhat.com> - 0.29.1-1.20201102git087ba743

+ - Update to 0.29.1.20201102git087ba743. (rhbz#1862178)

+ 

  * Sat Oct 10 2020 Kevin Fenzi <kevin@scrye.com> - 0.26.0-1

  - Update to 0.26.0.

  

file modified
+1 -1
@@ -1,1 +1,1 @@ 

- SHA512 (eventlet-0.26.0.tar.gz) = 9de50a138732bc9236dd287ef10c6a58a694b8cd85e785d1624950195caf68cb061ab573d70c8b7eab45accf5681193c80c9225af3cd53383dbcaa822bde5f52

+ SHA512 (087ba743c7af8a40ac1e4e2ec89409eee3b4233e.zip) = 8f35098d67ccee8aab8c5cce45e603fade9ea5d1a704a3e6aa49e0aefa9d60246c7a07562318a7b0db26671ddfe584230b67ffb2f0c19c0fa9e61fd480a14a8d

Fixes rhbz#1862178
We need to build it from a commit snapshot [1] post 0.29.1 because of a failing test with py39 [2].

Scratch build result: https://koji.fedoraproject.org/koji/taskinfo?taskID=55042539

[1] https://github.com/eventlet/eventlet/commit/087ba743c7af8a40ac1e4e2ec89409eee3b4233e
[2] https://github.com/eventlet/eventlet/issues/646

ok. looks good to me.

Pull-Request has been merged by kevin

3 years ago