26 lines
424 B
Bash
26 lines
424 B
Bash
|
|
# Copyright 2024 Gentoo Authors
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=8
|
||
|
|
|
||
|
|
PYTHON_COMPAT=( python3_{6..11} )
|
||
|
|
|
||
|
|
inherit git-r3 python-r1
|
||
|
|
|
||
|
|
DESCRIPTION="PostgreSQL monitoring bridge"
|
||
|
|
HOMEPAGE="None"
|
||
|
|
|
||
|
|
LICENSE="BSD"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64"
|
||
|
|
|
||
|
|
EGIT_REPO_URL="https://code2.shh-dot-com.org/pgmon.git"
|
||
|
|
#EGIT_COMMIT=""
|
||
|
|
|
||
|
|
DEPEND="
|
||
|
|
${PYTHON_DEPS}
|
||
|
|
dev-python/psycopg:2
|
||
|
|
"
|
||
|
|
RDEPEND="${DEPEND}"
|
||
|
|
BDEPEND=""
|