Diff pyotp-2.9.0 with a pyotp-2.10.0

/usr/portage/dev-python/pyotp/pyotp-2.10.0.ebuild 2026-06-18 19:41:04.177720804 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_COMPAT=( python3_{11..14} )
6
DISTUTILS_USE_PEP517=hatchling
7
PYPI_PN=PyOTP
8
PYPI_VERIFY_REPO=https://github.com/pyauth/pyotp
9
PYTHON_COMPAT=( python3_{12..15} )
8 10

  
9 11
inherit distutils-r1 pypi
10 12

  
11 13
DESCRIPTION="PyOTP is a Python library for generating and verifying one-time passwords"
12 14
HOMEPAGE="
13 15
	https://github.com/pyauth/pyotp/
14
	https://pypi.org/project/pyotp/
16
	https://pypi.org/project/PyOTP/
15 17
"
16 18

  
17 19
LICENSE="MIT"
18 20
SLOT="0"
19
KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86"
21
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
22

  
23
BDEPEND="
24
	dev-python/hatch-vcs[${PYTHON_USEDEP}]
25
"
20 26

  
21 27
distutils_enable_tests unittest
Thank you!