Date: Wednesday, September 8, 2021 @ 18:41:10 Author: anthraxx Revision: 1012950
upgpkg: python-socketio 5.4.0-1 Modified: python-socketio/trunk/PKGBUILD ----------+ PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-09-08 18:39:38 UTC (rev 1012949) +++ PKGBUILD 2021-09-08 18:41:10 UTC (rev 1012950) @@ -1,20 +1,20 @@ # Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> pkgname=python-socketio -pkgver=5.3.0 +pkgver=5.4.0 pkgrel=1 pkgdesc='Python implementation of the Socket.IO realtime server' url='https://github.com/miguelgrinberg/python-socketio' arch=('any') license=('MIT') -depends=('python' 'python-six' 'python-engineio' 'python-bidict') +depends=('python' 'python-six' 'python-engineio' 'python-bidict' 'python-msgpack') makedepends=('python-setuptools' 'python-sphinx' 'python-tornado') optdepends=('python-tornado: tornado asyncio webserver') checkdepends=('python-pytest' 'python-mock') options=('!makeflags') source=(https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz) -sha512sums=('1313b0d6308676ff5ff2e1652f8fdd8f66d0bd38148bdfbccf134adca0d64b53a1da21e6ad8bd6eb270354091e2bd48a3cdb26b5a7cae3a1ea991cd2f1c5e873') -b2sums=('f835f2e6bfc3e9bd409fab3c0ce21975dde9c39479bad59fc5decca894bfc169733b2cf23cae51dbd98b3f7ae39c10ad874b4a5aa98fb28d172cf4705920927d') +sha512sums=('cc5907c35428103b42bbd4bf95d59012211c3efaa925485e5dd31f8c0a8c626074f84f1a4d4e660abc02a019da90299f584c25f6a7c51fd41f5c7df126f2ef26') +b2sums=('e818fded7a7166363a1794de965bda49e8608b4614755a024550d083be738ed3e9c1a60f9298411ee9bf0699f4dfd1ed0c9106ea2a27da15822eaf2f045b7357') build() { cd ${pkgbase}-${pkgver} @@ -24,7 +24,7 @@ check() { cd ${pkgbase}-${pkgver} - py.test -k 'not test_logger' + python setup.py test } package() { @@ -31,7 +31,7 @@ cd ${pkgbase}-${pkgver} python setup.py install -O1 --root="${pkgdir}" --skip-build install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" - install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" + install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}" install -Dm 644 docs/_build/text/index.txt "${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION" install -Dm 644 docs/_build/man/python-socketio.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" }
