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 5F711158020 for ; Sun, 25 Dec 2022 17:55:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABBBFE0972; Sun, 25 Dec 2022 17:55:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 93C85E0972 for ; Sun, 25 Dec 2022 17:55:20 +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 D272A340952 for ; Sun, 25 Dec 2022 17:55:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 719B975E for ; Sun, 25 Dec 2022 17:55:18 +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: <1671990813.788fff174fe09daebd28af13d3d3ea2a43910b6f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yappi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/yappi/Manifest dev-python/yappi/yappi-1.3.6.ebuild X-VCS-Directories: dev-python/yappi/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 788fff174fe09daebd28af13d3d3ea2a43910b6f X-VCS-Branch: master Date: Sun, 25 Dec 2022 17:55:18 +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: 9e827f2c-cc86-4373-aefb-97a415d160a8 X-Archives-Hash: ec2a4357f455de6eeb5cd82e8563d52d commit: 788fff174fe09daebd28af13d3d3ea2a43910b6f Author: Michał Górny gentoo org> AuthorDate: Sun Dec 25 17:53:33 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 25 17:53:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=788fff17 dev-python/yappi: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/yappi/Manifest | 1 - dev-python/yappi/yappi-1.3.6.ebuild | 34 ---------------------------------- 2 files changed, 35 deletions(-) diff --git a/dev-python/yappi/Manifest b/dev-python/yappi/Manifest index c0c1e736d320..096ba09cf33c 100644 --- a/dev-python/yappi/Manifest +++ b/dev-python/yappi/Manifest @@ -1,2 +1 @@ -DIST yappi-1.3.6.gh.tar.gz 937785 BLAKE2B eb98d51f450091e66429affcc12f4329629bfc466dd8db9c5e77f5385a6b7bb551fd336825d64d94141ae41129618025a716a1b4e0718b022e67978330900bf0 SHA512 f55555042363581535eb4dfca096b1c698fb32720e5d1740d72ee7290f162ec44f0ed05936d6d85fc63f347e6be19b182550bd6e6593b65616d11d109fce8cbc DIST yappi-1.4.0.gh.tar.gz 938290 BLAKE2B 98a9c82d101e64f70f589b51ee461e1967c0fada75ab98e0de8f0446254e7ad73e25b842c85464953b9f81fc54d2007151dfc91e4176068a7cb320176c8828d2 SHA512 c557c67cfce29db1a526a2d385af28cd241eae46a653e9b4f7308a6f52ff1ede49b9211af09889c63eae3eeb38d55813a8026161b1184fccf4db4add8a022541 diff --git a/dev-python/yappi/yappi-1.3.6.ebuild b/dev-python/yappi/yappi-1.3.6.ebuild deleted file mode 100644 index a1a6c6a09003..000000000000 --- a/dev-python/yappi/yappi-1.3.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Yet Another Python Profiler" -HOMEPAGE=" - https://pypi.org/project/yappi/ - https://github.com/sumerc/yappi/ -" -SRC_URI=" - https://github.com/sumerc/yappi/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" - -distutils_enable_tests unittest - -PATCHES=( - "${FILESDIR}/yappi-1.2.5-warnings.patch" -) - -python_test() { - local -x PYTHONPATH=tests - eunittest -}