[arch-commits] Commit in python-eventlet/trunk (PKGBUILD python310.patch)

Evangelos Foutras foutrelis at gemini.archlinux.org
Thu Dec 9 22:13:56 UTC 2021


    Date: Thursday, December 9, 2021 @ 22:13:55
  Author: foutrelis
Revision: 1065902

Skip two tests on Python 3.10

Added:
  python-eventlet/trunk/python310.patch
Modified:
  python-eventlet/trunk/PKGBUILD

-----------------+
 PKGBUILD        |   12 +++++++++---
 python310.patch |   26 ++++++++++++++++++++++++++
 2 files changed, 35 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-12-09 22:00:17 UTC (rev 1065901)
+++ PKGBUILD	2021-12-09 22:13:55 UTC (rev 1065902)
@@ -19,12 +19,18 @@
   'python-dnspython: non-blocking DNS support'
 )
 options=('!makeflags')
-source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz)
-sha512sums=('455234ff08bd79e5a6b66f31f7ae87d93fde9a335f70244806cec80a4141316cd42aff91f6b8cff16f0bbe6fb673f19d6a76dc604281789e166bc41df853d8e5')
-b2sums=('6e740507307f4be34bc76d07aefb438e8562efe02220015bc0f029ada739058d9e5a5486e74e2786d44895fdea2e31ab57f0188e6bac081ea8705d08a6016b4e')
+source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz
+        python310.patch)
+sha512sums=('455234ff08bd79e5a6b66f31f7ae87d93fde9a335f70244806cec80a4141316cd42aff91f6b8cff16f0bbe6fb673f19d6a76dc604281789e166bc41df853d8e5'
+            '07739075628ff9d140064e04189332b479f184e4647753f987b0818fa55aaca907d4880afb5cf31f980426f315e1014027dcd848551149000a12145f982cd883')
+b2sums=('6e740507307f4be34bc76d07aefb438e8562efe02220015bc0f029ada739058d9e5a5486e74e2786d44895fdea2e31ab57f0188e6bac081ea8705d08a6016b4e'
+        '783445f708c12586e026f7feac982a7b6c21f86468609c375568b51ad6055977df3d0bc740f3127b9f8bc95c1c50e81aae02ca0e0be674ed4627910d39b1ef47')
 
 prepare() {
   cd ${_pyname}-${pkgver}
+  # https://github.com/eventlet/eventlet/issues/730
+  # https://github.com/eventlet/eventlet/issues/739
+  patch -Np1 -i ../python310.patch
   sed -r 's|(check_idle_cpu_usage\(.*,) .*\)|\1 0.8\)|g' -i tests/*_test.py
 }
 

Added: python310.patch
===================================================================
--- python310.patch	                        (rev 0)
+++ python310.patch	2021-12-09 22:13:55 UTC (rev 1065902)
@@ -0,0 +1,26 @@
+diff --git a/tests/patcher_test.py b/tests/patcher_test.py
+index dbf6e1c..1af4ac3 100644
+--- a/tests/patcher_test.py
++++ b/tests/patcher_test.py
+@@ -476,6 +476,8 @@ def test_patcher_existing_locks_late():
+     tests.run_isolated('patcher_existing_locks_late.py')
+ 
+ 
++# https://github.com/eventlet/eventlet/issues/730
++ at tests.skip_if(sys.version_info >= (3, 10))
+ def test_patcher_existing_locks_locked():
+     tests.run_isolated('patcher_existing_locks_locked.py')
+ 
+diff --git a/tests/wsgi_test.py b/tests/wsgi_test.py
+index 999d6f0..5c5bd92 100644
+--- a/tests/wsgi_test.py
++++ b/tests/wsgi_test.py
+@@ -556,6 +556,8 @@ class TestHttpd(_TestBase):
+         self.assertEqual(1, len(
+             [l for l in header_lines if l.lower().startswith(b'content-length')]))
+ 
++    # https://github.com/eventlet/eventlet/issues/739
++    @tests.skip_if(sys.version_info >= (3, 10))
+     @tests.skip_if_no_ssl
+     def test_017_ssl_zeroreturnerror(self):
+ 



More information about the arch-commits mailing list