Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ioflo/
Date: Wed, 02 Nov 2022 23:40:22
Message-Id: 1667432409.90b05102cd9bbdddff2056def4a1e4265bcaa45a.chutzpah@gentoo
1 commit: 90b05102cd9bbdddff2056def4a1e4265bcaa45a
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 23:32:48 2022 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 23:40:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b05102
7
8 dev-python/ioflo: revbump, eapi8, py311
9
10 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
11
12 dev-python/ioflo/Manifest | 1 +
13 dev-python/ioflo/ioflo-2.0.2-r3.ebuild | 41 ++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/ioflo/Manifest b/dev-python/ioflo/Manifest
17 index 4422795df98b..17fd3b8dbe73 100644
18 --- a/dev-python/ioflo/Manifest
19 +++ b/dev-python/ioflo/Manifest
20 @@ -1 +1,2 @@
21 +DIST ioflo-2.0.2.gh.tar.gz 837382 BLAKE2B 1fe878c8a9a47a9be5083e392e15256f1a566433b4341e2ee234e84332bb72af0c426d04c77ccace33cfb05664745caaa63e910913c3d63bbb2e5d8360a1ec90 SHA512 7485924ce329889afb1c3e0555b54fdbfb11eafce48fb0ac15bacd229fea512c44fcc118bbc4368ebc7c770d62129ee6b895b982f73a269de7131ea37daac02b
22 DIST ioflo-2.0.2.tar.gz 837382 BLAKE2B 1fe878c8a9a47a9be5083e392e15256f1a566433b4341e2ee234e84332bb72af0c426d04c77ccace33cfb05664745caaa63e910913c3d63bbb2e5d8360a1ec90 SHA512 7485924ce329889afb1c3e0555b54fdbfb11eafce48fb0ac15bacd229fea512c44fcc118bbc4368ebc7c770d62129ee6b895b982f73a269de7131ea37daac02b
23
24 diff --git a/dev-python/ioflo/ioflo-2.0.2-r3.ebuild b/dev-python/ioflo/ioflo-2.0.2-r3.ebuild
25 new file mode 100644
26 index 000000000000..55c8c1744226
27 --- /dev/null
28 +++ b/dev-python/ioflo/ioflo-2.0.2-r3.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..11} )
36 +DISTUTILS_USE_PEP517=setuptools
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Automated Reasoning Engine and Flow Based Programming Framework"
40 +HOMEPAGE="https://github.com/ioflo/ioflo/"
41 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + $(python_gen_cond_dep '>=dev-lang/python-3.7.4' python3_7)
50 +"
51 +BDEPEND="${RDEPEND}
52 + test? (
53 + dev-python/pytest-salt-factories[${PYTHON_USEDEP}]
54 + app-admin/salt[${PYTHON_USEDEP}]
55 + )
56 +"
57 +
58 +PATCHES=(
59 + "${FILESDIR}/ioflo-1.7.8-network-test.patch"
60 + "${FILESDIR}/ioflo-2.0.2-python39.patch"
61 + "${FILESDIR}/ioflo-2.0.2-tests.patch"
62 + "${FILESDIR}/ioflo-2.0.2-py310.patch"
63 +)
64 +
65 +distutils_enable_tests pytest
66 +
67 +python_prepare_all() {
68 + sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die
69 + distutils-r1_python_prepare_all
70 +}