Date: Wednesday, April 12, 2023 @ 18:01:14
  Author: arojas
Revision: 1444980

archrelease: copy trunk to community-staging-any

Added:
  python-eventlet/repos/community-staging-any/
  python-eventlet/repos/community-staging-any/PKGBUILD
    (from rev 1444979, python-eventlet/trunk/PKGBUILD)
  python-eventlet/repos/community-staging-any/python310.patch
    (from rev 1444979, python-eventlet/trunk/python310.patch)

-----------------+
 PKGBUILD        |   57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 python310.patch |   26 ++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

Copied: python-eventlet/repos/community-staging-any/PKGBUILD (from rev 1444979, 
python-eventlet/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-12 18:01:14 UTC (rev 1444980)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+pkgname=python-eventlet
+_pyname=eventlet
+pkgver=0.33.3
+pkgrel=2
+pkgdesc='Highly concurrent networking library'
+url='https://eventlet.net'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-greenlet' 'python-six' 'python-dnspython')
+makedepends=('python-setuptools' 'python-sphinx')
+checkdepends=('python-psycopg2' 'python-nose' 'python-pyopenssl' 
'python-httplib2' 'python-mock' 'python-pyzmq')
+optdepends=(
+  'python-psycopg2: non-blocking PostgreSQL support'
+  'python-pyopenssl: non-blocking SSL support'
+  'python-httplib2: non-blocking HTTP support'
+  'python-pyzmq: non-blocking ZeroMQ support'
+  'python-dnspython: non-blocking DNS support'
+)
+options=('!makeflags')
+source=(https://github.com/eventlet/eventlet/archive/v${pkgver}/${_pyname}-${pkgver}.tar.gz
+        python310.patch)
+sha512sums=('b2e1818c7b6134be4020d2b4315bbb3db795960df76da08a490e0d952549eafb477800c884e7a99493146c1ac082aed5fb87c7e2882ee468ea42b5cc26b8517f'
+            
'07739075628ff9d140064e04189332b479f184e4647753f987b0818fa55aaca907d4880afb5cf31f980426f315e1014027dcd848551149000a12145f982cd883')
+b2sums=('19bcd7a5adc2ef24f2637bfd9b19e68a9a268ebb7791cc9c419d9da88e5860c4cbbf6ecbaa0f3c300246584082622e6dab7ab75374f7d54f3c4a65661e22dbfd'
+        
'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
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+  make -C doc text
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+  nosetests -sv tests -e test_018b_http_10_keepalive_framing # fails on 
build.a.o
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" -O1
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r doc/_build/text "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r examples "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: python-eventlet/repos/community-staging-any/python310.patch (from rev 
1444979, python-eventlet/trunk/python310.patch)
===================================================================
--- community-staging-any/python310.patch                               (rev 0)
+++ community-staging-any/python310.patch       2023-04-12 18:01:14 UTC (rev 
1444980)
@@ -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
[email protected]_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):
+ 

Reply via email to