summaryrefslogtreecommitdiff
path: root/dev-db/pg_wait_sampling
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-16 10:53:11 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-16 10:53:11 -0500
commit8e65dc62f3f9f6b8f7b890fefedbf4ac05dfde0b (patch)
treebb1e83c18d1cc77cdebfc5aeb9b12ad39c9787b5 /dev-db/pg_wait_sampling
parentf997c3ee588099e4f43e9ec845935868e3e60b8e (diff)
downloadbaldeagleos-repo-8e65dc62f3f9f6b8f7b890fefedbf4ac05dfde0b.tar.gz
baldeagleos-repo-8e65dc62f3f9f6b8f7b890fefedbf4ac05dfde0b.tar.xz
baldeagleos-repo-8e65dc62f3f9f6b8f7b890fefedbf4ac05dfde0b.zip
Adding metadata
Diffstat (limited to 'dev-db/pg_wait_sampling')
-rw-r--r--dev-db/pg_wait_sampling/Manifest1
-rw-r--r--dev-db/pg_wait_sampling/metadata.xml15
-rw-r--r--dev-db/pg_wait_sampling/pg_wait_sampling-1.1.9.ebuild28
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-db/pg_wait_sampling/Manifest b/dev-db/pg_wait_sampling/Manifest
new file mode 100644
index 000000000000..6875a16cbaba
--- /dev/null
+++ b/dev-db/pg_wait_sampling/Manifest
@@ -0,0 +1 @@
+DIST pg_wait_sampling-1.1.9.tar.gz 17484 BLAKE2B e2b2492c56a1590e384357e51801bffb83315265ac2bdbbdcd0cf88ad74212d7f083afd2833c28b6df46128b2de2851e462aa5dbc03350d479d774ebc718b7f6 SHA512 42a4fc3f24100a0fb2b90b8cb745dd6bbb46192f3a0be113edbf1293159accada467ed4be78484e18b95cbaf5c26fc74877b75c11d563e68b9385fd70d762810
diff --git a/dev-db/pg_wait_sampling/metadata.xml b/dev-db/pg_wait_sampling/metadata.xml
new file mode 100644
index 000000000000..4f572a902527
--- /dev/null
+++ b/dev-db/pg_wait_sampling/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>conikost@gentoo.org</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <longdescription>
+ PostgreSQL provides information about current wait event of particular process.
+ However, in order to gather descriptive statistics of server behavior user have
+ to sample current wait event multiple times. This is an extension for collecting
+ sampling statistics of wait events.
+ </longdescription>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.9.ebuild b/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.9.ebuild
new file mode 100644
index 000000000000..88104ea2b3ef
--- /dev/null
+++ b/dev-db/pg_wait_sampling/pg_wait_sampling-1.1.9.ebuild
@@ -0,0 +1,28 @@
+# 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"
+
+RESTRICT="test"
+
+src_compile() {
+ export USE_PGXS="1"
+ default
+}
+
+src_install() {
+ default
+}