From: "Agostino Sarubbo" <ago@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pg_activity/
Date: Wed, 3 Apr 2024 12:57:43 +0000 (UTC) [thread overview]
Message-ID: <1712149050.16a392949c011224d93baf94b3b7582205007a46.ago@gentoo> (raw)
commit: 16a392949c011224d93baf94b3b7582205007a46
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 3 12:57:30 2024 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 3 12:57:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a39294
dev-db/pg_activity: remove old
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-db/pg_activity/Manifest | 2 --
dev-db/pg_activity/pg_activity-3.4.2.ebuild | 45 -----------------------------
dev-db/pg_activity/pg_activity-3.5.0.ebuild | 45 -----------------------------
3 files changed, 92 deletions(-)
diff --git a/dev-db/pg_activity/Manifest b/dev-db/pg_activity/Manifest
index 880488b72bc5..4b17cda8ea28 100644
--- a/dev-db/pg_activity/Manifest
+++ b/dev-db/pg_activity/Manifest
@@ -1,3 +1 @@
-DIST pg_activity-3.4.2.tar.gz 432160 BLAKE2B 3f9a54a9f58c2d107e01e15aad1e8bb58c2df589cb8f0d58288636c16adfad2156f2c140506dc15bd6eb26a75a441afbf9db8a2db0766a17867fd5b8ed50b9bc SHA512 adcc12277341c60a8959103c30d38bdc76d2315130f1bb92239e5c2c8d20f8fc4a786be3fe1f97e3c142e6c74303a631017e1a3e6feaf18266b7fd42c2e155f3
-DIST pg_activity-3.5.0.tar.gz 436670 BLAKE2B 16b19d269684fd059a1fcf22bb2a5a6eafda9295b5c95df936d7af7bce83d0480e90ab1893087b4a6f47f212081b308c1c82a5b059b912545b82eb82b99ba13b SHA512 f635edc9a3595651d9990a3493c2fb5e5f17b3981a2075fbd1c67d0536cee94d374005cc8c1ad5cb75b5e7add3f4168b67f6c37b21491f71364583f7885afcbf
DIST pg_activity-3.5.1.tar.gz 436863 BLAKE2B 8312b2145ba89b807fb5e4e76f8eb57ad1f33079735e1be4a6ef7614034bbfbbb428567e90d7b8a6bc16dd65af186a3f6742e09584cef6136a7f8b3763724806 SHA512 f44f1ca08a250e35c056441f11c19e3618fba82a36f367df211ceb5787983ff76d2637a155de80c998680f9c0f79d66fcb38873d1b04368e73b5a06e650789c5
diff --git a/dev-db/pg_activity/pg_activity-3.4.2.ebuild b/dev-db/pg_activity/pg_activity-3.4.2.ebuild
deleted file mode 100644
index bb4c7b32493d..000000000000
--- a/dev-db/pg_activity/pg_activity-3.4.2.ebuild
+++ /dev/null
@@ -1,45 +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} )
-
-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'
-}
-
-src_install() {
- distutils-r1_src_install
- doman docs/man/${PN}.1
-}
diff --git a/dev-db/pg_activity/pg_activity-3.5.0.ebuild b/dev-db/pg_activity/pg_activity-3.5.0.ebuild
deleted file mode 100644
index 778d01d26dde..000000000000
--- a/dev-db/pg_activity/pg_activity-3.5.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-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'
-}
-
-src_install() {
- distutils-r1_src_install
- doman docs/man/${PN}.1
-}
next reply other threads:[~2024-04-03 12:57 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-03 12:57 Agostino Sarubbo [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-03 12:57 [gentoo-commits] repo/gentoo:master commit in: dev-db/pg_activity/ Agostino Sarubbo
2024-04-02 13:58 Agostino Sarubbo
2023-07-06 13:14 Agostino Sarubbo
2023-07-06 13:14 Agostino Sarubbo
2023-04-21 9:43 Agostino Sarubbo
2023-04-21 9:38 Agostino Sarubbo
2023-04-21 9:38 Agostino Sarubbo
2023-03-13 15:42 Agostino Sarubbo
2023-03-13 15:42 Agostino Sarubbo
2022-09-29 14:16 Agostino Sarubbo
2022-09-29 14:16 Agostino Sarubbo
2022-09-21 13:40 Agostino Sarubbo
2022-09-21 13:40 Agostino Sarubbo
2022-06-15 12:53 Agostino Sarubbo
2022-06-15 12:53 Agostino Sarubbo
2022-02-18 8:44 Agostino Sarubbo
2022-02-17 11:00 Agostino Sarubbo
2021-09-08 14:00 Agostino Sarubbo
2021-09-08 14:00 Agostino Sarubbo
2021-04-28 13:10 Agostino Sarubbo
2021-04-09 7:32 Agostino Sarubbo
2021-03-20 18:54 Agostino Sarubbo
2021-03-18 17:04 Agostino Sarubbo
2020-11-27 7:07 Agostino Sarubbo
2020-11-23 8:38 Agostino Sarubbo
2020-09-08 15:48 Agostino Sarubbo
2020-09-08 15:48 Agostino Sarubbo
2020-08-11 13:56 Agostino Sarubbo
2020-02-26 14:09 Agostino Sarubbo
2020-01-11 14:11 Agostino Sarubbo
2019-05-23 11:13 Agostino Sarubbo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1712149050.16a392949c011224d93baf94b3b7582205007a46.ago@gentoo \
--to=ago@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox