dev-python/pykeepass: treeclean

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2025-04-05 13:48:18 +05:00
parent 5807c0887d
commit 157a0c810a
4 changed files with 0 additions and 51 deletions

View File

@@ -1 +0,0 @@
DIST pykeepass-4.0.7.gh.tar.gz 110217 BLAKE2B 314d02c7c9e04f7ef784f116d77fbf93f56720dedf4a36a19ce8d088d60326b87bb3d6926ffe39a47663554f65c67ef57852827f29f63d85416221dc230dc415 SHA512 51d2ade1cc7d3f0c705d39d0ec8a7087995ee6ed9ea573bb87ee8783792709a707230352e572ed0e420cbc8122ae741f4f3c40f5ef8949c53afcb0bc1da2a0fe

View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
<remote-id type="github">libkeepass/pykeepass</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,37 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..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}.gh.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
>=dev-python/argon2-cffi-19.2.0[${PYTHON_USEDEP}]
>=dev-python/construct-2.10.54[${PYTHON_USEDEP}]
>=dev-python/lxml-4.3.5[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.8.2[${PYTHON_USEDEP}]
test? ( >=dev-python/pyotp-2.9.0[${PYTHON_USEDEP}] )
"
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
}
python_test() {
"${EPYTHON}" tests/tests.py -v || die
}