From d7c5d176960fa12ac5de5e8c8fba76141d857e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 20 Dec 2025 15:49:01 +0100 Subject: [PATCH] net-news/canto-curses: Remove old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- .../canto-curses/canto-curses-0.9.9.ebuild | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 net-news/canto-curses/canto-curses-0.9.9.ebuild diff --git a/net-news/canto-curses/canto-curses-0.9.9.ebuild b/net-news/canto-curses/canto-curses-0.9.9.ebuild deleted file mode 100644 index d19be6fc05ba..000000000000 --- a/net-news/canto-curses/canto-curses-0.9.9.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_REQ_USE="ncurses(+),threads(+)" -inherit distutils-r1 - -DESCRIPTION="The ncurses client for canto-daemon" -HOMEPAGE="https://codezen.org/canto-ng/" -SRC_URI="https://github.com/themoken/canto-curses/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RESTRICT="test" -PROPERTIES="test_network" - -RDEPEND=">=net-news/canto-daemon-0.9.1[${PYTHON_USEDEP}]" -BDEPEND="test? ( ${RDEPEND} )" - -python_prepare_all() { - # Respect libdir during plugins installation - sed -i -e "s:lib/canto:$(get_libdir)/canto:" setup.py || die - - # Test fails because of lost site - rm tests/test-config-function.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - local test_file - for test_file in tests/*; do - "${EPYTHON}" "${test_file}" || die "Test ${test_file} failed with ${EPYTHON}" - done -}