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/python-axolotl-curve25519/
Date: Mon, 29 Oct 2018 23:15:28
Message-Id: 1540854900.ad91bba1c93ea7c4b0c956bbdbda14506b9eaa8a.monsieurp@gentoo
1 commit: ad91bba1c93ea7c4b0c956bbdbda14506b9eaa8a
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sun Oct 28 16:14:54 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 29 23:15:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad91bba1
7
8 dev-python/python-axolotl-curve25519: add python3.7 support.
9
10 Also bumped to EAPI=7.
11
12 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
13 Package-Manager: Portage-2.3.51, Repoman-2.3.11
14 Closes: https://github.com/gentoo/gentoo/pull/10276
15 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
16
17 .../python-axolotl-curve25519-0.4.1_p2-r1.ebuild | 22 ++++++++++++++++++++++
18 1 file changed, 22 insertions(+)
19
20 diff --git a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild
21 new file mode 100644
22 index 00000000000..98206da4369
23 --- /dev/null
24 +++ b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild
25 @@ -0,0 +1,22 @@
26 +# Copyright 1999-2018 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI="7"
30 +
31 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
32 +
33 +inherit distutils-r1
34 +
35 +MY_PV="${PV/_p/-}"
36 +
37 +DESCRIPTION="A python wrapper for the curve25519 library with ed25519 signatures"
38 +HOMEPAGE="https://github.com/tgalal/python-axolotl-curve25519"
39 +SRC_URI="https://github.com/tgalal/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
40 +
41 +LICENSE="BSD GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
46 +
47 +S="${WORKDIR}/${PN}-${MY_PV}"