From 678f99096ca8bc0af862e7740b8e125546cd825a Mon Sep 17 00:00:00 2001 From: Agostino Sarubbo Date: Thu, 4 Sep 2025 10:09:42 +0200 Subject: [PATCH] dev-db/pg_activity: remove old Signed-off-by: Agostino Sarubbo --- dev-db/pg_activity/pg_activity-3.6.1.ebuild | 45 --------------------- 1 file changed, 45 deletions(-) delete mode 100644 dev-db/pg_activity/pg_activity-3.6.1.ebuild diff --git a/dev-db/pg_activity/pg_activity-3.6.1.ebuild b/dev-db/pg_activity/pg_activity-3.6.1.ebuild deleted file mode 100644 index 512762c82bae1..0000000000000 --- a/dev-db/pg_activity/pg_activity-3.6.1.ebuild +++ /dev/null @@ -1,45 +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} ) - -inherit distutils-r1 - -DESCRIPTION="Realtime PostgreSQL database server monitoring tool" -HOMEPAGE="https://github.com/dalibo/pg_activity" -SRC_URI="https://github.com/dalibo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64" -SLOT="0" -LICENSE="POSTGRESQL" - -RDEPEND=" - dev-python/attrs[${PYTHON_USEDEP}] - dev-python/blessed[${PYTHON_USEDEP}] - dev-python/humanize[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] -" - -BDEPEND=" - dev-python/attrs[${PYTHON_USEDEP}] - test? ( - dev-python/psycopg:0[${PYTHON_USEDEP}] - dev-python/psycopg:2[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -python_test() { - # https://github.com/dalibo/pg_activity/issues/201 - export COLUMNS="80" - epytest -k 'not test_ui.txt and not test_data.py and not test_cli_help.txt and not test_cli_help_py312.txt' -} - -src_install() { - distutils-r1_src_install - doman docs/man/${PN}.1 -}