Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pbkdf2/
Date: Tue, 30 Jul 2019 08:08:10
Message-Id: 1564474080.711fdac7455b9bcb562367275b40f133bcfa787b.mgorny@gentoo
1 commit: 711fdac7455b9bcb562367275b40f133bcfa787b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 07:38:22 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 08:08:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=711fdac7
7
8 dev-python/pbkdf2: Bump to EAPI 7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild | 21 +++++++++++++++++++++
13 1 file changed, 21 insertions(+)
14
15 diff --git a/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild b/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..0a5ba845698
18 --- /dev/null
19 +++ b/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild
20 @@ -0,0 +1,21 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy pypy3 )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Implementation of PBKDF2, specified in RSA PKCS#5 v2.0"
31 +HOMEPAGE="https://www.dlitz.net/software/python-pbkdf2/"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86 ~amd64-linux"
37 +IUSE=""
38 +
39 +python_test() {
40 + "${EPYTHON}" test/test_pbkdf2.py -v || die "Tests failed with ${EPYTHON}"
41 +}