Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pbkdf2/
Date: Sun, 05 Jun 2022 16:53:55
Message-Id: 1654448023.bfea9932841e691719256c2ec62260606d465992.arthurzam@gentoo
1 commit: bfea9932841e691719256c2ec62260606d465992
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 16:14:31 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 16:53:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfea9932
7
8 dev-python/pbkdf2: EAPI=8, Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild b/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild
16 new file mode 100644
17 index 000000000000..a76b4f47da35
18 --- /dev/null
19 +++ b/dev-python/pbkdf2/pbkdf2-1.3-r2.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Implementation of PBKDF2, specified in RSA PKCS#5 v2.0"
32 +HOMEPAGE="https://www.dlitz.net/software/python-pbkdf2/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86 ~amd64-linux"
38 +
39 +python_test() {
40 + "${EPYTHON}" test/test_pbkdf2.py -v || die "Tests failed with ${EPYTHON}"
41 +}