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 4B6A915A7D9 for ; Mon, 20 Mar 2023 05:36:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EEF4E087A; Mon, 20 Mar 2023 05:36:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 26C9FE087A for ; Mon, 20 Mar 2023 05:36: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 434DB340A35 for ; Mon, 20 Mar 2023 05:36:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA989901 for ; Mon, 20 Mar 2023 05:36:25 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1679290579.0754193d8f73592a91329cfd0474f9db862f7cf9.mgorny@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-r3.ebuild X-VCS-Directories: dev-python/ioflo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0754193d8f73592a91329cfd0474f9db862f7cf9 X-VCS-Branch: master Date: Mon, 20 Mar 2023 05:36: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: f3321fbe-9856-420a-a432-938eb4ced675 X-Archives-Hash: c4b1e85ff06b40bd6fa2110bfec7eda8 commit: 0754193d8f73592a91329cfd0474f9db862f7cf9 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 20 05:22:49 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 20 05:36:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0754193d dev-python/ioflo: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/ioflo/ioflo-2.0.2-r3.ebuild | 37 ---------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/ioflo/ioflo-2.0.2-r3.ebuild b/dev-python/ioflo/ioflo-2.0.2-r3.ebuild deleted file mode 100644 index df2d9b3131ce..000000000000 --- a/dev-python/ioflo/ioflo-2.0.2-r3.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_10 ) -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" - -BDEPEND=" - test? ( - app-admin/salt[${PYTHON_USEDEP}] - dev-python/pytest-salt-factories[${PYTHON_USEDEP}] - ) -" - -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 -}