aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Anderson <telans@posteo.de>2021-02-08 15:52:01 +1300
committerTheo Anderson <telans@posteo.de>2021-02-08 15:52:01 +1300
commit7af8ad4bcc87a46a544b1c6d876d1492da1d643b (patch)
treef179be96aca8e2c5e5b1cf79843bfcdb7066aae7
parentdev-python/pykeepass: bump to 4.0.0; enable tests (diff)
downloadguru-7af8ad4b.tar.gz
guru-7af8ad4b.tar.bz2
guru-7af8ad4b.zip
dev-python/pykeepass: drop old
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
-rw-r--r--dev-python/pykeepass/Manifest2
-rw-r--r--dev-python/pykeepass/pykeepass-3.2.0-r1.ebuild39
-rw-r--r--dev-python/pykeepass/pykeepass-3.2.1-r1.ebuild38
3 files changed, 0 insertions, 79 deletions
diff --git a/dev-python/pykeepass/Manifest b/dev-python/pykeepass/Manifest
index b01fc9000..cdbff95aa 100644
--- a/dev-python/pykeepass/Manifest
+++ b/dev-python/pykeepass/Manifest
@@ -1,3 +1 @@
-DIST pykeepass-3.2.0.tar.gz 68381 BLAKE2B 05b0dbf86f5211596487a026ef0de438c540e302edf1a2b57403bbcd212d99a995fe91bf770d963f47a77a05adb66817b26d73154585254f1ed1b956e40bdaf6 SHA512 8ecdf667ef03f6189d75ce5d6fe0ec49fc683ebccc94a77fe31807b43abfc77417a26058281758aee5721558c267458106bc2626cddbf9ff29225297dc4896fb
-DIST pykeepass-3.2.1.tar.gz 46615 BLAKE2B fac973f9992b15d5f0bad94eb99201c6cf76e0fbf20fa2e04cc51bc6686a65c746608054afe4f0a0cfea1f534e55829d2e485def321ecf9b2dda0e729e6fc4ff SHA512 559287581741d5b3465fa722d0dc51dbbcb46776349c7a4ce2b688b8e692f188078718adcdf527723e35f30b3f68efa4625bba5db5109841b75d2590d0b67ff8
DIST pykeepass-4.0.0.tar.gz 88720 BLAKE2B 7dcce1ded4527f32e0a602d9a7b742fabd32ee6c5e6836f0d4d217c3117177f258e974275670c9cea408e05335004996bea6a68ba12fe02ac30b0276ac7cfb54 SHA512 03483c9dc78774b2c5d4088f9995db9a9142bc69a8d4bc1824f4868175d3556434cb155c1f35a3fa0c04fca72f571af518166f59bcbe21431b7fe34a20b57cb2
diff --git a/dev-python/pykeepass/pykeepass-3.2.0-r1.ebuild b/dev-python/pykeepass/pykeepass-3.2.0-r1.ebuild
deleted file mode 100644
index c5a9d7a59..000000000
--- a/dev-python/pykeepass/pykeepass-3.2.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_7 ) # not all dependency are 3.8 ready
-
-inherit distutils-r1 eutils toolchain-funcs
-
-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"
-IUSE=""
-
-RDEPEND="
- >=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" )
-
-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
-}
diff --git a/dev-python/pykeepass/pykeepass-3.2.1-r1.ebuild b/dev-python/pykeepass/pykeepass-3.2.1-r1.ebuild
deleted file mode 100644
index 549ffd7ee..000000000
--- a/dev-python/pykeepass/pykeepass-3.2.1-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- >=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" )
-
-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
-}