[arch-commits] Commit in python-jose/repos/community-any (3 files)

Felix Yan felixonmars at archlinux.org
Tue Dec 24 17:24:58 UTC 2019


    Date: Tuesday, December 24, 2019 @ 17:24:57
  Author: felixonmars
Revision: 539985

archrelease: copy trunk to community-any

Added:
  python-jose/repos/community-any/PKGBUILD
    (from rev 539984, python-jose/trunk/PKGBUILD)
Deleted:
  python-jose/repos/community-any/PKGBUILD
  python-jose/repos/community-any/pytest5.patch

---------------+
 PKGBUILD      |   70 +++++++++++++++++++++++++-------------------------------
 pytest5.patch |   27 ---------------------
 2 files changed, 32 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-12-24 17:24:45 UTC (rev 539984)
+++ PKGBUILD	2019-12-24 17:24:57 UTC (rev 539985)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=python-jose
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="A JOSE implementation in Python"
-arch=('any')
-license=('MIT')
-url="https://github.com/mpdavis/python-jose"
-depends=('python-rsa' 'python-six' 'python-ecdsa' 'python-future')
-optdepends=('python-cryptography: one option for better performance'
-            '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')
-
-prepare() {
-  patch -Np1 -d python-jose-$pkgver <pytest5.patch
-}
-
-build() {
-  cd python-jose-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-jose-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd python-jose-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-jose/repos/community-any/PKGBUILD (from rev 539984, python-jose/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-12-24 17:24:57 UTC (rev 539985)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-jose
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="A JOSE implementation in Python"
+arch=('any')
+license=('MIT')
+url="https://github.com/mpdavis/python-jose"
+depends=('python-rsa' 'python-six' 'python-ecdsa' 'python-future')
+optdepends=('python-cryptography: one option for better performance'
+            '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")
+sha512sums=('c4a04bed8fc17d65cb8fc9b2cf37996edb50fa0dcdc2dedd76a97c784f8af34a9c86748ea2f9ea348955ce780035fbe3a756abc8e1eb5e9b77ad57d411622c6b')
+
+build() {
+  cd python-jose-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-jose-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd python-jose-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: pytest5.patch
===================================================================
--- pytest5.patch	2019-12-24 17:24:45 UTC (rev 539984)
+++ pytest5.patch	2019-12-24 17:24:57 UTC (rev 539985)
@@ -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