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 5CF9115808B for ; Thu, 31 Mar 2022 16:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A17E1E07E0; Thu, 31 Mar 2022 16:03:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BB1AE07D1 for ; Thu, 31 Mar 2022 16:03:18 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0947C341824 for ; Thu, 31 Mar 2022 16:03:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FDFA35A for ; Thu, 31 Mar 2022 16:03:16 +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: <1648741324.85ac90eafe0609881ce94946fc9d49e9dac2152f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/graphviz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/graphviz/graphviz-0.19.1.ebuild X-VCS-Directories: dev-python/graphviz/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 85ac90eafe0609881ce94946fc9d49e9dac2152f X-VCS-Branch: master Date: Thu, 31 Mar 2022 16:03:16 +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: e0932cfc-dde2-49f6-9143-a6fe232bb124 X-Archives-Hash: d48d9497d5d78c70b8697d51d1db541b commit: 85ac90eafe0609881ce94946fc9d49e9dac2152f Author: Michał Górny gentoo org> AuthorDate: Thu Mar 31 15:42:04 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 31 15:42:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85ac90ea dev-python/graphviz: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/graphviz/graphviz-0.19.1.ebuild | 38 ------------------------------ 1 file changed, 38 deletions(-) diff --git a/dev-python/graphviz/graphviz-0.19.1.ebuild b/dev-python/graphviz/graphviz-0.19.1.ebuild deleted file mode 100644 index 4600484d191c..000000000000 --- a/dev-python/graphviz/graphviz-0.19.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Simple Python interface for Graphviz" -HOMEPAGE="https://graphviz.readthedocs.io/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" - -LICENSE="MIT" -KEYWORDS="amd64 ~riscv x86 ~amd64-linux ~x86-linux" -SLOT="0" - -RDEPEND="media-gfx/graphviz" -BDEPEND=" - app-arch/unzip - test? ( - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}] - >=dev-python/pytest-mock-1.8[${PYTHON_USEDEP}] - media-gfx/graphviz[gts,pdf] - ) -" - -distutils_enable_tests pytest - -src_prepare() { - sed -e 's:--cov --cov-report=term --cov-report=html::' \ - -i setup.cfg || die - distutils-r1_src_prepare -} - -python_test() { - "${EPYTHON}" run-tests.py -vv -ra -l -Wdefault -p no:xdoctest || - die "Tests failed with ${EPYTHON}" -}