From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 89DB61581CF for ; Sat, 14 Jun 2025 11:48:05 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 72D493424E5 for ; Sat, 14 Jun 2025 11:48:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id F2FAA110504; Sat, 14 Jun 2025 11:47:50 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E2D1C110504 for ; Sat, 14 Jun 2025 11:47: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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F6963424DE for ; Sat, 14 Jun 2025 11:47:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5C4C29AE for ; Sat, 14 Jun 2025 11:47:47 +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: <1749901575.73b12d9fb905be2032f4df2ce863802f24e7b45c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynvim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynvim/pynvim-0.5.2.ebuild X-VCS-Directories: dev-python/pynvim/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 73b12d9fb905be2032f4df2ce863802f24e7b45c X-VCS-Branch: master Date: Sat, 14 Jun 2025 11:47: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: b18aeb25-1848-44bb-934c-987569c5eb11 X-Archives-Hash: 0a77e14199ebc9c4dd70d0388d169f06 commit: 73b12d9fb905be2032f4df2ce863802f24e7b45c Author: Michał Górny gentoo org> AuthorDate: Sat Jun 14 11:46:15 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 14 11:46:15 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b12d9f dev-python/pynvim: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pynvim/pynvim-0.5.2.ebuild | 52 ----------------------------------- 1 file changed, 52 deletions(-) diff --git a/dev-python/pynvim/pynvim-0.5.2.ebuild b/dev-python/pynvim/pynvim-0.5.2.ebuild deleted file mode 100644 index adb5d1958451..000000000000 --- a/dev-python/pynvim/pynvim-0.5.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..13} pypy3_11 ) - -inherit distutils-r1 - -DESCRIPTION="Python client for Neovim" -HOMEPAGE=" - https://github.com/neovim/pynvim/ - https://pypi.org/project/pynvim/ -" -SRC_URI=" - https://github.com/neovim/pynvim/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~x86" - -RDEPEND=" - dev-python/msgpack[${PYTHON_USEDEP}] - $(python_gen_cond_dep ' - >=dev-python/greenlet-3.0[${PYTHON_USEDEP}] - ' 'python*') - $(python_gen_cond_dep ' - >=dev-python/typing-extensions-4.5[${PYTHON_USEDEP}] - ' 3.11 3.12) -" -BDEPEND=" - test? ( - app-editors/neovim - dev-python/pytest-timeout[${PYTHON_USEDEP}] - ) -" - -: ${EPYTEST_TIMEOUT:=5} -distutils_enable_tests pytest - -python_test() { - local EPYTEST_DESELECT=( - # hangs - test/test_events.py::test_broadcast - ) - - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -}