Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyotp/
Date: Mon, 03 Sep 2018 09:27:23
Message-Id: 1535966815.5860202e93abb26b6fd534c462a8725054879ac0.monsieurp@gentoo
1 commit: 5860202e93abb26b6fd534c462a8725054879ac0
2 Author: Oleksandr Trotsenko <oleksandr.trotsenko <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 1 05:06:53 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 09:26:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5860202e
7
8 dev-python/pyotp: add Python 3.7 support.
9
10 Introducing support for Python 3.7.
11
12 Closes: https://bugs.gentoo.org/663160
13 Package-Manager: Portage-2.3.48, Repoman-2.3.10
14 Closes: https://github.com/gentoo/gentoo/pull/9749
15
16 dev-python/pyotp/pyotp-2.2.6-r1.ebuild | 22 ++++++++++++++++++++++
17 1 file changed, 22 insertions(+)
18
19 diff --git a/dev-python/pyotp/pyotp-2.2.6-r1.ebuild b/dev-python/pyotp/pyotp-2.2.6-r1.ebuild
20 new file mode 100644
21 index 00000000000..cd97f5e226f
22 --- /dev/null
23 +++ b/dev-python/pyotp/pyotp-2.2.6-r1.ebuild
24 @@ -0,0 +1,22 @@
25 +# Copyright 1999-2018 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
31 +
32 +inherit distutils-r1
33 +
34 +DESCRIPTION="PyOTP is a Python library for generating and verifying one-time passwords."
35 +HOMEPAGE="https://github.com/pyotp/pyotp https://pypi.org/project/pyotp/"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="MIT"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +
42 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
43 +
44 +python_test() {
45 + "${EPYTHON}" -m unittest discover -v || die "Testing failed with ${EPYTHON}"
46 +}