Diff fido2-0.9.3-r1 with a fido2-1.1.2

/usr/portage/dev-python/fido2/fido2-1.1.2.ebuild 2023-10-09 14:52:30.280368370 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..11} )
7
DISTUTILS_USE_PEP517=setuptools
6
PYTHON_COMPAT=( python3_{10..12} )
7
DISTUTILS_USE_PEP517=poetry
8 8

  
9 9
inherit distutils-r1
10 10

  
11 11
DESCRIPTION="Python based FIDO 2.0 library"
12
HOMEPAGE="https://github.com/Yubico/python-fido2"
13
SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz"
12
HOMEPAGE="
13
	https://github.com/Yubico/python-fido2/
14
	https://pypi.org/project/fido2/
15
"
16
SRC_URI="
17
	https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz
18
"
14 19

  
15 20
LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
16
SLOT="0/0.9" # Bumped every time a backwards-incompatible version is released
21
SLOT="0/1.0" # Bumped every time a backwards-incompatible version is released
17 22
KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
18 23
IUSE="examples"
19 24

  
20 25
RDEPEND="
21
	dev-python/six[${PYTHON_USEDEP}]
22
	dev-python/cryptography[${PYTHON_USEDEP}]
23
	dev-python/pyscard[${PYTHON_USEDEP}]
26
	<dev-python/cryptography-44[${PYTHON_USEDEP}]
27
	<dev-python/pyscard-3[${PYTHON_USEDEP}]
24 28
	examples? (
25 29
		dev-python/flask[${PYTHON_USEDEP}]
26 30
		dev-python/pyopenssl[${PYTHON_USEDEP}]
27 31
	)
28 32
"
29
BDEPEND="test? (
30
	dev-python/mock[${PYTHON_USEDEP}]
31
	>=dev-python/pyfakefs-3.4[${PYTHON_USEDEP}] )
32
"
33 33

  
34
distutils_enable_tests unittest
34
distutils_enable_tests pytest
35 35

  
36 36
python_install_all() {
37 37
	distutils-r1_python_install_all
Thank you!