mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
dev-python/pykeepass: drop 4.0.0, 4.0.1
Signed-off-by: James Beddek <telans@posteo.de>
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST pykeepass-4.0.0.tar.gz 88720 BLAKE2B 7dcce1ded4527f32e0a602d9a7b742fabd32ee6c5e6836f0d4d217c3117177f258e974275670c9cea408e05335004996bea6a68ba12fe02ac30b0276ac7cfb54 SHA512 03483c9dc78774b2c5d4088f9995db9a9142bc69a8d4bc1824f4868175d3556434cb155c1f35a3fa0c04fca72f571af518166f59bcbe21431b7fe34a20b57cb2
|
||||
DIST pykeepass-4.0.1.tar.gz 99343 BLAKE2B ed3ea6575041ef73adc769365078818af9080851bba8b31ee24ef283480633305147307c4ea7217fba96ca18cd90bcf33b0d66b0a9148121165f67937d8677b0 SHA512 512f25029fcaa7a84459767cd9101d113623722c2aaf466fd3e77cf0043c37d344ccd2c0226fcbc3b3c22e39f8060c172ab1e1c72993c469a4499b21c47f6134
|
||||
DIST pykeepass-4.0.2.tar.gz 102819 BLAKE2B 27bac0508328ed36bed779a5a74978a0e7d3aec25212811de7295214b05fc018e722530b3e40d2e09a68c8ffffd93f60dde79aa6ee03b1a445c1ac93d51c0847 SHA512 2e3704246fd1bf230fa6525a3d2cba1cd09634b669653df3c66ac52642bcd1a59f28ca09ef8a05b31e70604c70b9ad247d7ab2badddab325aa0dee837c0a2402
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
From 883714197ab39dfb68a5dffd2268e88a964f8913 Mon Sep 17 00:00:00 2001
|
||||
From: David Heidelberg <david@ixit.cz>
|
||||
Date: Wed, 14 Aug 2019 17:37:25 +0200
|
||||
Subject: [PATCH] setup.py: exclude tests directory
|
||||
|
||||
Fixes build on ebuild based distributions.
|
||||
|
||||
Signed-off-by: David Heidelberg <david@ixit.cz>
|
||||
---
|
||||
setup.py | 2 +-
|
||||
tests/__init__.py | 0
|
||||
2 files changed, 1 insertion(+), 1 deletion(-)
|
||||
delete mode 100644 tests/__init__.py
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 773acfc..2a8c17b 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -11,7 +11,7 @@ setup(
|
||||
author="Philipp Schmitt",
|
||||
author_email="philipp@schmitt.co",
|
||||
url="https://github.com/libkeepass/pykeepass",
|
||||
- packages=find_packages(),
|
||||
+ packages=find_packages(exclude=("tests")),
|
||||
install_requires=[
|
||||
"python-dateutil",
|
||||
"construct",
|
||||
diff --git a/tests/__init__.py b/tests/__init__.py
|
||||
deleted file mode 100644
|
||||
index e69de29..0000000
|
||||
--
|
||||
2.22.1
|
||||
|
||||
@@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..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
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..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