Date: Thursday, April 13, 2023 @ 06:18:11
  Author: yan12125
Revision: 1445485

archrelease: copy trunk to community-testing-any

Added:
  python-httpx/repos/community-testing-any/
  python-httpx/repos/community-testing-any/PKGBUILD
    (from rev 1445484, python-httpx/trunk/PKGBUILD)
  python-httpx/repos/community-testing-any/uvicorn-test-server-use-h11.diff
    (from rev 1445484, python-httpx/trunk/uvicorn-test-server-use-h11.diff)

----------------------------------+
 PKGBUILD                         |   61 +++++++++++++++++++++++++++++++++++++
 uvicorn-test-server-use-h11.diff |   13 +++++++
 2 files changed, 74 insertions(+)

Copied: python-httpx/repos/community-testing-any/PKGBUILD (from rev 1445484, 
python-httpx/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD                              (rev 0)
+++ community-testing-any/PKGBUILD      2023-04-13 06:18:11 UTC (rev 1445485)
@@ -0,0 +1,61 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+# Contributor: Eli Schwartz <[email protected]>
+
+_pkgname=httpx
+pkgname=python-httpx
+# https://github.com/encode/httpx/blob/master/CHANGELOG.md
+pkgver=0.24.0
+pkgrel=1
+pkgdesc="A next generation HTTP client for Python"
+arch=('any')
+url="https://github.com/encode/${_pkgname}";
+license=('BSD')
+depends=('python' 'python-certifi' 'python-httpcore' 'python-idna' 
'python-rfc3986' 'python-sniffio')
+optdepends=(
+  'python-brotlicffi: for brotli response decompression'
+  'python-h2: HTTP/2 support'
+  'python-socksio: SOCKS proxy support'
+  'python-click: command line client support'
+  'python-rich: command line client support'
+  'python-pygments: command line client support'
+  'python-trio: alternative async library'
+)
+makedepends=('python-build' 'python-installer' 'python-hatchling' 
'python-hatch-fancy-pypi-readme'
+             'python-pygments')
+checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 
'python-typing_extensions' 'python-brotlicffi' 'python-h2' 'python-trustme' 
'uvicorn' 'python-socksio'
+              'python-rich' 'python-chardet')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+        "uvicorn-test-server-use-h11.diff")
+sha512sums=('52ccd285cee6032c604160484520522957fdfb4735385bf68d594574b4525b89ea007eb71a653cdf01381610f350c8120c36422e0fda91c39dad437f5cb3f486'
+            
'd3e6a9df365aff5e4e7b724469672c6da9c7e95cc5d79339ebd1ea249236802d81b8792efb0826f89747424fa1bef20d4965ddb75b3b67e9cd320b5fcc738f18')
+b2sums=('261298dcb65b22c4b188b03a7f650ed2527c8dd3b70d2d21f38f199ff465b107cf034140b349961da19894abdb287ceafb7997dbcc8a4e89b0e319b21121d024'
+        
'f7fc5aa67d59dfbf544ea2668a5df6449d1cb30f5adf1433d92ebbc0fd10d46fec592f1befe829e126d72240666b9c3ea1f69a9f2cca6f3f4e135a7e454be25d')
+
+prepare() {
+  cd ${_pkgname}-${pkgver}
+
+  # fix tests
+  patch -Np1 -i ../uvicorn-test-server-use-h11.diff
+
+  # disable -Werror, which often causes failures due to newer dependencies in 
Arch
+  sed -i '/\berror\b/d' setup.cfg
+}
+
+build() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+
+  pytest
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE.md 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.md
+}

Copied: 
python-httpx/repos/community-testing-any/uvicorn-test-server-use-h11.diff (from 
rev 1445484, python-httpx/trunk/uvicorn-test-server-use-h11.diff)
===================================================================
--- community-testing-any/uvicorn-test-server-use-h11.diff                      
        (rev 0)
+++ community-testing-any/uvicorn-test-server-use-h11.diff      2023-04-13 
06:18:11 UTC (rev 1445485)
@@ -0,0 +1,13 @@
+diff --git a/tests/conftest.py b/tests/conftest.py
+index 970c353..1ea3aa9 100644
+--- a/tests/conftest.py
++++ b/tests/conftest.py
+@@ -304,7 +304,7 @@ def serve_in_thread(server: Server):
+ 
+ @pytest.fixture(scope="session")
+ def server() -> typing.Iterator[TestServer]:
+-    config = Config(app=app, lifespan="off", loop="asyncio")
++    config = Config(app=app, lifespan="off", loop="asyncio", http="h11")
+     server = TestServer(config=config)
+     yield from serve_in_thread(server)
+ 

Reply via email to