dev-python/pykeepass: use PYTHON_USEDEP and drop python 3.8

all dependecies doesn't support python 3.8 yet

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: David Heidelberg <david@ixit.cz>
This commit is contained in:
David Heidelberg
2020-04-26 19:11:06 +02:00
parent a9158028a5
commit c9a30b6d22

View File

@@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{6,7} ) # not all dependency are 3.8 ready
inherit distutils-r1 eutils toolchain-funcs
@@ -14,16 +14,16 @@ SRC_URI="https://github.com/libkeepass/pykeepass/archive/${PV}.tar.gz -> ${P}.ta
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
IUSE=""
RDEPEND="
>=dev-python/lxml-4.3.4
>=dev-python/pycryptodome-3.8.2
>=dev-python/construct-2.9.45
>=dev-python/argon2_cffi-19.1.0
>=dev-python/python-dateutil-2.8.0
>=dev-python/future-0.17.0"
>=dev-python/argon2_cffi-19.1.0[${PYTHON_USEDEP}]
>=dev-python/construct-2.9.4[${PYTHON_USEDEP}]
>=dev-python/future-0.17.0[${PYTHON_USEDEP}]
>=dev-python/lxml-4.3.4[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.8.2[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/0001-setup.py-exclude-tests-directory.patch" )