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 E9628158021 for ; Tue, 25 Oct 2022 10:31:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31C97E0ABB; Tue, 25 Oct 2022 10:31:25 +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 1E902E0ABB for ; Tue, 25 Oct 2022 10:31:25 +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 4480B3411CE for ; Tue, 25 Oct 2022 10:31:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D7E766B for ; Tue, 25 Oct 2022 10:31:21 +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: <1666693813.23af20091b32946e70c2403a5276375cc48fa7f4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/spur/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/spur/spur-0.3.22.ebuild X-VCS-Directories: dev-python/spur/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 23af20091b32946e70c2403a5276375cc48fa7f4 X-VCS-Branch: master Date: Tue, 25 Oct 2022 10:31:21 +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: 17ce4ccf-7da8-4d11-bf27-abb4f11a95fc X-Archives-Hash: acaf0ce5b26f6566fcd848e4ce573423 commit: 23af20091b32946e70c2403a5276375cc48fa7f4 Author: Michał Górny gentoo org> AuthorDate: Tue Oct 25 10:30:13 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Oct 25 10:30:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23af2009 dev-python/spur: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/spur/spur-0.3.22.ebuild | 39 -------------------------------------- 1 file changed, 39 deletions(-) diff --git a/dev-python/spur/spur-0.3.22.ebuild b/dev-python/spur/spur-0.3.22.ebuild deleted file mode 100644 index 0b5e31be2505..000000000000 --- a/dev-python/spur/spur-0.3.22.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -MY_P=spur.py-${PV} -DESCRIPTION="Run commands locally or over SSH using the same interface" -HOMEPAGE="https://github.com/mwilliamson/spur.py" -SRC_URI=" - https://github.com/mwilliamson/spur.py/archive/${PV}.tar.gz - -> ${MY_P}.gh.tar.gz" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" - -RDEPEND=" - dev-python/paramiko[${PYTHON_USEDEP}]" - -distutils_enable_tests nose - -src_prepare() { - # TODO: set up a local SSH server? - rm tests/{ssh_tests,testing}.py || die - - # does random guesswork on top of exceptions that stopped working - # in py3.8; this only causes a different exception to be raised - # https://github.com/mwilliamson/spur.py/issues/85 - sed -e 's:spawning_command_that_uses_path_env_variable_asks_if_command_is_installed:_&:' \ - -e 's:spawning_non_existent_command_raises_specific_no_such_command_exception:_&:' \ - -e 's:using_non_existent_command_and_correct_cwd_raises_no_such_command_exception:_&:' \ - -i tests/process_test_set.py || die - - distutils-r1_src_prepare -}