diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-30 16:31:22 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-30 16:31:22 +0100 |
commit | dbaf77aee1af6f6df1758e3e6562e59e1b1b3b4c (patch) | |
tree | 40221a2d72b5f20a26f11125e298cf427c6bdb38 /testing/py3-fido2 | |
parent | f028411f47575ca9dadb4cbd8e023ae14bf62bd9 (diff) | |
download | aports-dbaf77aee1af6f6df1758e3e6562e59e1b1b3b4c.tar.bz2 aports-dbaf77aee1af6f6df1758e3e6562e59e1b1b3b4c.tar.xz |
testing/py3-fido2: upgrade to 0.8.1
Diffstat (limited to 'testing/py3-fido2')
-rw-r--r-- | testing/py3-fido2/APKBUILD | 11 | ||||
-rw-r--r-- | testing/py3-fido2/broken-check.patch | 23 |
2 files changed, 4 insertions, 30 deletions
diff --git a/testing/py3-fido2/APKBUILD b/testing/py3-fido2/APKBUILD index 3b34085710..10484b9951 100644 --- a/testing/py3-fido2/APKBUILD +++ b/testing/py3-fido2/APKBUILD @@ -2,8 +2,8 @@ # Maintainer: Daniel Everett <deverett@gmail.com> pkgname=py3-fido2 _pkgname=${pkgname#py3-} -pkgver=0.7.3 -pkgrel=1 +pkgver=0.8.1 +pkgrel=0 pkgdesc="Provides library functionality for FIDO 2.0, including communication with a device over USB" url="https://developers.yubico.com/python-fido2/" arch="noarch" @@ -11,9 +11,7 @@ license="BSD-2-Clause AND Apache-2.0 AND MPL-2.0" depends="py3-cryptography py3-six" makedepends="py3-setuptools" checkdepends="py3-cparser py3-mock" -source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz - broken-check.patch - " +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver build() { @@ -30,5 +28,4 @@ check() { python3 setup.py test } -sha512sums="715779ecc9dba19de0e45df13d018e7dd223f20f5662860874aa8aa6f811c1df71c07656d21b49a4b6f14a149134d8af6bac076a7f71cb7392ca2fef70b173e1 fido2-0.7.3.tar.gz -2c2a3d2423cd9e7178e5423a08f118054d70c717b31bcab4ac71ddc5cf73031973454ce2c67a1d1f19bbf81a3401d6359a1b9f2f3028ab11e28815ac2b7a261b broken-check.patch" +sha512sums="fc0753ea694f2170d529129764cd9f9c5439cd2f467e4f384d7a698266ee8391a5c9c7c6e51d2dc2a99b93fca1c7d5288d5236e302672a87b8ca7704f328c0b5 fido2-0.8.1.tar.gz" diff --git a/testing/py3-fido2/broken-check.patch b/testing/py3-fido2/broken-check.patch deleted file mode 100644 index f65dd22ff9..0000000000 --- a/testing/py3-fido2/broken-check.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff --git a/setup.py b/setup.py -index fa723fc..2298bac 100755 ---- a/setup.py -+++ b/setup.py -@@ -25,17 +25,10 @@ - # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - # POSSIBILITY OF SUCH DAMAGE. - --from distutils.version import StrictVersion - from setuptools import setup, find_packages, __version__ - import re - import sys - --if StrictVersion(__version__) < StrictVersion("20.2"): -- sys.exit( -- "Your setuptools version does not support PEP 508.\n" -- "Please install setuptools 20.2 or later." -- ) -- - - def get_version(): - with open("fido2/__init__.py", "r") as f: - |