[arch-commits] Commit in python-jose/trunk (PKGBUILD pytest5.patch)
Felix Yan
felixonmars at archlinux.org
Tue Dec 24 17:24:45 UTC 2019
Date: Tuesday, December 24, 2019 @ 17:24:45
Author: felixonmars
Revision: 539984
upgpkg: python-jose 3.1.0-1
Modified:
python-jose/trunk/PKGBUILD
Deleted:
python-jose/trunk/pytest5.patch
---------------+
PKGBUILD | 14 ++++----------
pytest5.patch | 27 ---------------------------
2 files changed, 4 insertions(+), 37 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2019-12-24 17:02:02 UTC (rev 539983)
+++ PKGBUILD 2019-12-24 17:24:45 UTC (rev 539984)
@@ -1,8 +1,8 @@
# Maintainer: Felix Yan <felixonmars at archlinux.org>
pkgname=python-jose
-pkgver=3.0.1
-pkgrel=3
+pkgver=3.1.0
+pkgrel=1
pkgdesc="A JOSE implementation in Python"
arch=('any')
license=('MIT')
@@ -12,15 +12,9 @@
'python-pycryptodome: one option for better performance')
makedepends=('python-setuptools' 'python-rsa' 'python-six' 'python-ecdsa' 'python-future')
checkdepends=('python-pytest-runner' 'python-cryptography' 'python-pycryptodome' 'python-pytest-cov')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/mpdavis/python-jose/archive/$pkgver.tar.gz"
- 'pytest5.patch')
-sha512sums=('a39c3aa9acc6bcc0030e4435e499581043a820c54aa1a4b67ae478cf95f96f28755b03fa4453e484932a64865a61613a1ff4afe30249216e8f392638485693d7'
- '0406340a45309e0b9411e451a68ca353454bb10bc34309264abc9b56fe4fed1c2eda705d5a7625a35333043030b0032ad70cf7da1feea673595c2fdf8423a234')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mpdavis/python-jose/archive/$pkgver.tar.gz")
+sha512sums=('c4a04bed8fc17d65cb8fc9b2cf37996edb50fa0dcdc2dedd76a97c784f8af34a9c86748ea2f9ea348955ce780035fbe3a756abc8e1eb5e9b77ad57d411622c6b')
-prepare() {
- patch -Np1 -d python-jose-$pkgver <pytest5.patch
-}
-
build() {
cd python-jose-$pkgver
python setup.py build
Deleted: pytest5.patch
===================================================================
--- pytest5.patch 2019-12-24 17:02:02 UTC (rev 539983)
+++ pytest5.patch 2019-12-24 17:24:45 UTC (rev 539984)
@@ -1,27 +0,0 @@
-From a120278ad6a28abcc632673b47ef3af3c2c64d70 Mon Sep 17 00:00:00 2001
-From: Gasper Zejn <zelo.zejn at gmail.com>
-Date: Fri, 12 Apr 2019 10:30:37 +0200
-Subject: [PATCH] Fix incorrect use of pytest.raises(message=...)
-
-diff --git a/tests/test_jwt.py b/tests/test_jwt.py
-index 9ceb239..75ed3fc 100644
---- a/tests/test_jwt.py
-+++ b/tests/test_jwt.py
-@@ -62,7 +62,7 @@ def return_invalid_json(token, key, algorithms, verify=True):
-
- jws.verify = return_invalid_json
-
-- with pytest.raises(JWTError, message='Invalid payload string: ["a", "b"}'):
-+ with pytest.raises(JWTError, match='Invalid payload string: '):
- jwt.decode(token, 'secret', ['HS256'])
- finally:
- jws.verify = old_jws_verify
-@@ -77,7 +77,7 @@ def return_encoded_array(token, key, algorithms, verify=True):
-
- jws.verify = return_encoded_array
-
-- with pytest.raises(JWTError, message='Invalid payload string: must be a json object'):
-+ with pytest.raises(JWTError, match='Invalid payload string: must be a json object'):
- jwt.decode(token, 'secret', ['HS256'])
- finally:
- jws.verify = old_jws_verify
More information about the arch-commits
mailing list