dev-python/pykeepass: bump to 4.0.7 and modernize

Switched to PEP 517 mode
Added Python compatibility for 3.11 and 3.12 after running tests

Closes: https://bugs.gentoo.org/921859
Closes: https://bugs.gentoo.org/897540

Signed-off-by: Kyle Elbert <kcelbert@gmail.com>
This commit is contained in:
Kyle Elbert
2024-04-08 05:03:21 -05:00
parent 6000289ff4
commit 1b5ed6af87
2 changed files with 9 additions and 10 deletions

View File

@@ -1 +1 @@
DIST pykeepass-4.0.2.tar.gz 102819 BLAKE2B 27bac0508328ed36bed779a5a74978a0e7d3aec25212811de7295214b05fc018e722530b3e40d2e09a68c8ffffd93f60dde79aa6ee03b1a445c1ac93d51c0847 SHA512 2e3704246fd1bf230fa6525a3d2cba1cd09634b669653df3c66ac52642bcd1a59f28ca09ef8a05b31e70604c70b9ad247d7ab2badddab325aa0dee837c0a2402
DIST pykeepass-4.0.7.gh.tar.gz 110217 BLAKE2B 314d02c7c9e04f7ef784f116d77fbf93f56720dedf4a36a19ce8d088d60326b87bb3d6926ffe39a47663554f65c67ef57852827f29f63d85416221dc230dc415 SHA512 51d2ade1cc7d3f0c705d39d0ec8a7087995ee6ed9ea573bb87ee8783792709a707230352e572ed0e420cbc8122ae741f4f3c40f5ef8949c53afcb0bc1da2a0fe

View File

@@ -1,15 +1,15 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_10 )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python library to interact with keepass databases (supports KDBX3 and KDBX4) "
HOMEPAGE="https://github.com/libkeepass/pykeepass"
SRC_URI="https://github.com/libkeepass/pykeepass/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/libkeepass/pykeepass/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-3"
SLOT="0"
@@ -18,16 +18,15 @@ KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-python/argon2-cffi-19.2.0[${PYTHON_USEDEP}]
>=dev-python/construct-2.10.54[${PYTHON_USEDEP}]
>=dev-python/future-0.18.2[${PYTHON_USEDEP}]
>=dev-python/lxml-4.3.5[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.8.2[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
test? ( >=dev-python/pyotp-2.9.0[${PYTHON_USEDEP}] )
"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest
distutils_enable_tests unittest
src_prepare() {
# their package listing was skipping the subpackage
sed -i '/packages =/d' pyproject.toml || die
distutils-r1_src_prepare
# pycryptodomex to pycryptodome conversion
sed -i 's/Cryptodome/Crypto/g' pykeepass/kdbx_parsing/{common,twofish}.py || die