From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F06D315800F for ; Fri, 17 Feb 2023 08:52:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DD3FE08A0; Fri, 17 Feb 2023 08:52:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A319E08A0 for ; Fri, 17 Feb 2023 08:52:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D3F134111B for ; Fri, 17 Feb 2023 08:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8185C8B8 for ; Fri, 17 Feb 2023 08:52:25 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1676623884.bd565c433b2c5a8a3be6ee383fa02bdbb0e2a074.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ioflo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ioflo/ioflo-2.0.2-r4.ebuild X-VCS-Directories: dev-python/ioflo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bd565c433b2c5a8a3be6ee383fa02bdbb0e2a074 X-VCS-Branch: master Date: Fri, 17 Feb 2023 08:52:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5ebd5622-677f-4f34-9709-a372381a43d6 X-Archives-Hash: 0eb2df19c857bad996601e9c94249fa3 commit: bd565c433b2c5a8a3be6ee383fa02bdbb0e2a074 Author: Sam James gentoo org> AuthorDate: Fri Feb 17 08:46:52 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 17 08:51:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd565c43 dev-python/ioflo: enable py3.11 Doesn't seem to need salt bits at all anymore. Signed-off-by: Sam James gentoo.org> dev-python/ioflo/ioflo-2.0.2-r4.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-python/ioflo/ioflo-2.0.2-r4.ebuild b/dev-python/ioflo/ioflo-2.0.2-r4.ebuild new file mode 100644 index 000000000000..5ad220e1519b --- /dev/null +++ b/dev-python/ioflo/ioflo-2.0.2-r4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Automated Reasoning Engine and Flow Based Programming Framework" +HOMEPAGE="https://github.com/ioflo/ioflo/" +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +PATCHES=( + "${FILESDIR}/ioflo-1.7.8-network-test.patch" + "${FILESDIR}/ioflo-2.0.2-python39.patch" + "${FILESDIR}/ioflo-2.0.2-tests.patch" + "${FILESDIR}/ioflo-2.0.2-py310.patch" +) + +distutils_enable_tests pytest + +python_prepare_all() { + sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die + distutils-r1_python_prepare_all +}