diff --git a/trunk/PKGBUILD b/trunk/PKGBUILD index 220d9a4..a3e4ef0 100644 --- a/trunk/PKGBUILD +++ b/trunk/PKGBUILD @@ -3,8 +3,8 @@ _pkgname=aiohttp pkgname=python-aiohttp -_gitcommit=2f655a59d0daedfa2a794996c4355b576c98ecc8 -pkgver=3.7.3 +_gitcommit=0a26acc1de9e1b0244456b7881ec16ba8bb64fc3 +pkgver=3.7.4 pkgrel=1 pkgdesc='HTTP client/server for asyncio' url='https://aiohttp.readthedocs.io' @@ -14,13 +14,13 @@ depends=('python' 'python-chardet' 'python-multidict' 'python-async-timeout' 'python-yarl' 'python-attrs') makedepends=('cython' 'python-setuptools' 'git') checkdepends=('python-pytest' 'python-pytest-runner' 'python-pytest-mock' - 'python-pytest-timeout' 'python-async_generator' 'python-brotlipy' + 'python-pytest-timeout' 'python-async_generator' 'python-brotli' 'python-pytest-xdist' 'python-pytest-forked' 'python-pytest-cov' 'python-trustme' 'python-freezegun' 'gunicorn' 'python-re-assert') optdepends=('gunicorn: to deploy using Gunicorn' 'python-aiodns: for fast DNS resolving' 'python-cchardet: for faster encoding detection' - 'python-brotlipy: for Brotli transfer-encodings support') + 'python-brotli: for Brotli transfer-encodings support') source=(${pkgname}::"git+https://github.com/aio-libs/aiohttp#commit=${_gitcommit}" git+https://github.com/nodejs/http-parser) sha512sums=('SKIP' @@ -36,6 +36,8 @@ prepare() { git submodule init git config submodule."vendor/http-parser".url "${srcdir}/http-parser" git submodule update --recursive + git cherry-pick -n --strategy-option=ours fe5e684a8f81f3a8db69a8c063641b7d1da94f61 #Release all forgotten resources in tests PR #5495 + git cherry-pick -n --strategy-option=ours 506d07548a15c4301affa0c8b8e23fd7826eb977 #Replace brotlipy with Brotli sed 's|.install-cython ||' -i Makefile }