dev-db/pgbadger: add 13.1

Also add dep on sys-apps/which so that the
buildsystem doesn't throw spurious warnings

Closes: https://bugs.gentoo.org/956291
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
This commit is contained in:
Patrick Lauer
2025-05-19 05:37:39 +00:00
parent f027875479
commit dedafd040d
3 changed files with 29 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
DIST pgbadger-12.1.tar.gz 3041661 BLAKE2B 0489b52a56b20442f4ad9c2f22c63eee7049ad93b65166d4d87a96aebf8ca20dd3709291fed4a31df77c0c49e4efa10a66d9c185b9f7f66818057aca1a83a607 SHA512 16cdb64cd425b58d9f13a4ffe06eb79aeb0238c585e325ed7f1613a32a960fb19a5871c29ebd082ffc52b063b8da16d22ded1367e47557473389ead001dffc06
DIST pgbadger-12.2.tar.gz 3044596 BLAKE2B ab25e4b52099fa22d8e0bbcc1e0702fc9ec0982e00027a28e3b5735d456058d7b2f2b67dc1e9c857fb87bcea7ae273eeb3b97a260fb5387ccd768057e11a826b SHA512 b07dba94a0eb57cf8559439660204fd40cb3f2a9fc9a8fd4c0200af1b41a13bad2bd908f9019ecabce2f17c76fcb6d364b2b3b64c64028d4e40665df1075bd5d
DIST pgbadger-12.4.tar.gz 4062907 BLAKE2B 1922d486a2ef4f87267156c2ebb5f038cbf5b48dc5a4dce80a517cbad000e5d4545b36c6a2404f699d987214c97ae9c867603138b8781131a71591d206adeaa0 SHA512 251035796275ed51efa2d3f45f8cf79c5ed89af34ee8b65c1ed2f481699152902a4f8820b316d06e4cf6528f894bc29ddce2b2ef2524e326a081f9412b9416d8
DIST pgbadger-13.1.tar.gz 4367754 BLAKE2B b88629278c5a635832ffe929025946be0a3932a204667c3a3edd27174830b162c72a1e29e4e6e6d4ba8949203ae8d96dbeec884cb9ea2e6b7ea97e2fa445a083 SHA512 336b2d59eaa7f8e0ff0d42b07e61e674d08fa12eb1711220a6f3fdf6a2c84de4d01b4aa4af2d8644e873e84cf887badf203ab95029a5e2f3b5280a739a7c945e

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2024 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -17,6 +17,7 @@ DEPEND="
dev-perl/JSON-XS
dev-perl/Text-CSV_XS
dev-perl/Pod-Markdown
sys-apps/which
"
RDEPEND="${DEPEND}"

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
DESCRIPTION="pgBadger is a PostgreSQL log analyzer"
HOMEPAGE="https://pgbadger.darold.net/"
SRC_URI="https://github.com/darold/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-perl/JSON-XS
dev-perl/Text-CSV_XS
dev-perl/Pod-Markdown
sys-apps/which
"
RDEPEND="${DEPEND}"
src_test() {
prove || die
}