commit: d7c5d176960fa12ac5de5e8c8fba76141d857e46
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 14:49:01 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 14:59:29 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c5d176
net-news/canto-curses: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-news/canto-curses/canto-curses-0.9.9.ebuild | 41 -------------------------
1 file changed, 41 deletions(-)
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
-}