diff --git a/dev-db/pg_wait_sampling/Manifest b/dev-db/pg_wait_sampling/Manifest index 6875a16cbabae..a3ff4a9c6b538 100644 --- a/dev-db/pg_wait_sampling/Manifest +++ b/dev-db/pg_wait_sampling/Manifest @@ -1 +1,2 @@ +DIST pg_wait_sampling-1.1.11.tar.gz 18052 BLAKE2B 119101b76cb67a68c4e77b37040483d92c5bda33d98bd058042ca6c0a07f8c5e7ccd6b4532c9bb113de29410c4c86f53c38a8719568f2c818aaf62c9a5b061d4 SHA512 328c962710f3dc11e32a7cf1965c86127363a6fc574c08dc9710ed67dd56bef2cb31b98e05dfb94e3daf2a4c66dcb274c785bf01e441871a0b409201eb395e91 DIST pg_wait_sampling-1.1.9.tar.gz 17484 BLAKE2B e2b2492c56a1590e384357e51801bffb83315265ac2bdbbdcd0cf88ad74212d7f083afd2833c28b6df46128b2de2851e462aa5dbc03350d479d774ebc718b7f6 SHA512 42a4fc3f24100a0fb2b90b8cb745dd6bbb46192f3a0be113edbf1293159accada467ed4be78484e18b95cbaf5c26fc74877b75c11d563e68b9385fd70d762810 diff --git a/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.11.ebuild b/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.11.ebuild new file mode 100644 index 0000000000000..d440323ab5cc5 --- /dev/null +++ b/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.11.ebuild @@ -0,0 +1,33 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +POSTGRES_COMPAT=( 14 15 16 17 18 ) +POSTGRES_USEDEP="server(+)" + +inherit postgres-multi + +DESCRIPTION="Sampling based statistics of wait events" +HOMEPAGE="https://github.com/postgrespro/pg_wait_sampling" +SRC_URI="https://github.com/postgrespro/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${POSTGRES_REQ_USE}" + +RDEPEND="${POSTGRES_DEP}" +DEPEND="${RDEPEND}" + +RESTRICT="test" + +src_compile() { + export USE_PGXS="1" + postgres-multi_src_compile +} + +src_install() { + einstalldocs + postgres-multi_src_install +}