Date: Wednesday, May 18, 2022 @ 10:18:03 Author: daurnimator Revision: 1207775
wip: Update to 3.2.0 check() currently failing with: ``` = 14 failed, 1002 passed, 6 skipped, 3 xfailed, 1 xpassed, 352 warnings in 156.64s (0:02:36) = ``` Modified: httpie/trunk/PKGBUILD ----------+ PKGBUILD | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-05-18 10:09:24 UTC (rev 1207774) +++ PKGBUILD 2022-05-18 10:18:03 UTC (rev 1207775) @@ -4,28 +4,32 @@ # Contributor: Thomas Weißschuh <thomas_weissschuh lavabit com> pkgname=httpie -pkgver=3.1.0 +pkgver=3.2.1 pkgrel=1 pkgdesc="human-friendly CLI HTTP client for the API era" url="https://github.com/httpie/httpie" -depends=('python-defusedxml' +depends=('python-charset-normalizer' + 'python-defusedxml' + 'python-multidict' + 'python-pip' 'python-pygments' 'python-pysocks' - 'python-multidict' 'python-requests' 'python-requests-toolbelt' - 'python-charset-normalizer') + 'python-rich') makedepends=('python-setuptools') checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-pytest-lazy-fixture' - 'python-responses') + 'python-pytest-mock' + 'python-responses' + 'python-werkzeug') conflicts=(python-httpie) replaces=(python-httpie python2-httpie) license=('BSD') arch=('any') source=($pkgname-$pkgver.tar.gz::"https://github.com/httpie/httpie/archive/$pkgver.tar.gz") -sha256sums=('823cb4856cb7edf016939b53fcc126d10416688980cf54895b3355b39a3f8dba') +sha256sums=('803e1624e005c2f7002802a77ebc687b05375aca76af42639f844405328633eb') build() { cd $pkgname-$pkgver @@ -45,5 +49,6 @@ check() { cd $pkgname-$pkgver + pytest --help PYTHONDONTWRITEBYTECODE=1 pytest tests }
