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/basho-erlastic/
Date: Tue, 31 Jan 2023 17:13:39
Message-Id: 1675185198.531513e03f36f9aadc2db70bffbd5033c6ac4d95.mgorny@gentoo
1 commit: 531513e03f36f9aadc2db70bffbd5033c6ac4d95
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 17:13:18 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 17:13:18 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531513e0
7
8 dev-python/basho-erlastic: EAPI 8, PEP517, py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../basho-erlastic/basho-erlastic-2.1.1-r1.ebuild | 28 ++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/dev-python/basho-erlastic/basho-erlastic-2.1.1-r1.ebuild b/dev-python/basho-erlastic/basho-erlastic-2.1.1-r1.ebuild
16 new file mode 100644
17 index 000000000000..983e8fe7fba3
18 --- /dev/null
19 +++ b/dev-python/basho-erlastic/basho-erlastic-2.1.1-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2023 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_{9..11} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Erlang binary term codec and port interface"
32 +HOMEPAGE="
33 + https://github.com/basho/python-erlastic/
34 + https://pypi.org/project/basho-erlastic/
35 +"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="BSD"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
41 +
42 +RDEPEND="
43 + dev-python/six[${PYTHON_USEDEP}]
44 +"
45 +
46 +python_test() {
47 + "${EPYTHON}" tests.py || die
48 +}