diff options
author | 2020-11-23 09:37:59 +0100 | |
---|---|---|
committer | 2020-11-23 09:37:59 +0100 | |
commit | 6e3d7c60a6f162d9b88961b80bf74b80a6eec208 (patch) | |
tree | 1ece907285e1940e7080c2ad803a13910e606833 /dev-db | |
parent | sys-kernel/git-sources: Automated version bump to 5.10_rc5. (diff) | |
download | gentoo-6e3d7c60a6f162d9b88961b80bf74b80a6eec208.tar.gz gentoo-6e3d7c60a6f162d9b88961b80bf74b80a6eec208.tar.bz2 gentoo-6e3d7c60a6f162d9b88961b80bf74b80a6eec208.zip |
dev-db/pg_activity: version bump to 1.6.2
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/pg_activity/Manifest | 1 | ||||
-rw-r--r-- | dev-db/pg_activity/pg_activity-1.6.2.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-db/pg_activity/Manifest b/dev-db/pg_activity/Manifest index c4869ed32fed..bb98ab3bff28 100644 --- a/dev-db/pg_activity/Manifest +++ b/dev-db/pg_activity/Manifest @@ -1 +1,2 @@ DIST pg_activity-1.6.1.tar.gz 127376 BLAKE2B 4e9c055c2b7d7eb78ee735124284d4d34c70a067011c2bdd3d960a7e2ff59cb799fb4a3ec1a51d7ebd0e921f5d46e85a28625d3a1a7efc281fc751702f2b58b6 SHA512 4a67443521afe88283315be1c2b3d3f19df3cb2cb3e4e059149775f5dd45925dbab8bd34525878ac883f8d007da08fbdfe3d23db9a6e1f17a4af4aa9b9c96338 +DIST pg_activity-1.6.2.tar.gz 127561 BLAKE2B 5ddebd3068ddc33196903892c01b947ffc50ecff7ec790e196626e87ee8933ff79242e3ba61c207ea1020535c5d85dbbc4ac9e4825a19ab98004bb27ea0b6a6c SHA512 fd743f369201c6ec3762373c39969b2b7632d79a8fb9c8ebd12a88b66b91915c30e445e93162844b4a176cf7e13009c9c8136e973180b00e7cc708ecd66b4853 diff --git a/dev-db/pg_activity/pg_activity-1.6.2.ebuild b/dev-db/pg_activity/pg_activity-1.6.2.ebuild new file mode 100644 index 000000000000..2868663364ff --- /dev/null +++ b/dev-db/pg_activity/pg_activity-1.6.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python3_6 python3_7 python3_8 ) + +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" + +DEPEND="" +RDEPEND="dev-python/psutil[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/psycopg:2[${PYTHON_USEDEP}]" + +src_install() { + distutils-r1_src_install + doman docs/man/${PN}.1 +} |