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 3F930158013 for ; Mon, 11 Dec 2023 18:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BF772BC02F; Mon, 11 Dec 2023 18:15:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 25D2F2BC02F for ; Mon, 11 Dec 2023 18:15:50 +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 616C933D3CF for ; Mon, 11 Dec 2023 18:15:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92C9E1440 for ; Mon, 11 Dec 2023 18:15:47 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1702318538.00cfb167ede281508ec284984092873d3f8e4232.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pyout/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pyout/pyout-0.7.1-r1.ebuild X-VCS-Directories: dev-python/pyout/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 00cfb167ede281508ec284984092873d3f8e4232 X-VCS-Branch: master Date: Mon, 11 Dec 2023 18:15:47 +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: d5ba5770-07c6-4b3a-b766-0c531a1bdc83 X-Archives-Hash: 3dd1fc138dc6240a4ba230c78704d415 commit: 00cfb167ede281508ec284984092873d3f8e4232 Author: Horea Christian chymera eu> AuthorDate: Mon Dec 11 18:15:38 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Dec 11 18:15:38 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=00cfb167 dev-python/pyout: drop 0.7.1-r1 Signed-off-by: Horea Christian chymera.eu> dev-python/pyout/pyout-0.7.1-r1.ebuild | 37 ---------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/pyout/pyout-0.7.1-r1.ebuild b/dev-python/pyout/pyout-0.7.1-r1.ebuild deleted file mode 100644 index 9cd796883..000000000 --- a/dev-python/pyout/pyout-0.7.1-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -inherit distutils-r1 - -DESCRIPTION="Terminal styling for structured data" -HOMEPAGE="https://github.com/pyout/pyout" -SRC_URI="https://github.com/pyout/pyout/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="MIT" -KEYWORDS="~amd64 ~x86" -RESTRICT="test" - -RDEPEND=" - dev-python/jsonschema[${PYTHON_USEDEP}] - dev-python/blessed[${PYTHON_USEDEP}] -" -DEPEND=" - test? ( - dev-python/pytest-timeout[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - - -PATCHES=( "${FILESDIR}/${PN}-0.7.2-blessed.patch" ) - - -python_prepare_all() { - sed -i -e '/pytest-runner/d' setup.py || die - distutils-r1_python_prepare_all -}