mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 08:02:08 +00:00
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>
26 lines
492 B
Bash
26 lines
492 B
Bash
# 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
|
|
}
|