mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-14 01:23:23 -04:00
dev-python/pykeepass: add 4.0.1
Signed-off-by: James Beddek <telans@posteo.de>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST pykeepass-4.0.0.tar.gz 88720 BLAKE2B 7dcce1ded4527f32e0a602d9a7b742fabd32ee6c5e6836f0d4d217c3117177f258e974275670c9cea408e05335004996bea6a68ba12fe02ac30b0276ac7cfb54 SHA512 03483c9dc78774b2c5d4088f9995db9a9142bc69a8d4bc1824f4868175d3556434cb155c1f35a3fa0c04fca72f571af518166f59bcbe21431b7fe34a20b57cb2
|
||||
DIST pykeepass-4.0.1.tar.gz 99343 BLAKE2B ed3ea6575041ef73adc769365078818af9080851bba8b31ee24ef283480633305147307c4ea7217fba96ca18cd90bcf33b0d66b0a9148121165f67937d8677b0 SHA512 512f25029fcaa7a84459767cd9101d113623722c2aaf466fd3e77cf0043c37d344ccd2c0226fcbc3b3c22e39f8060c172ab1e1c72993c469a4499b21c47f6134
|
||||
|
||||
40
dev-python/pykeepass/pykeepass-4.0.1.ebuild
Normal file
40
dev-python/pykeepass/pykeepass-4.0.1.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
|
||||
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/${PV}.tar.gz -> ${P}.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/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}]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/pykeepass-4.0.0-fix-tests-install.patch )
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user