Install this version:
emerge -a =dev-python/pgdbconn-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/pgdbconn-9999
Or alternatively:
emerge --autounmask-write -a =dev-python/pgdbconn-9999
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..14} )
inherit distutils-r1
DESCRIPTION="Object-oriented layer over Psycopg2 to interact with Postgres databases"
HOMEPAGE="https://github.com/perseas/pgdbconn"
if [[ "${PV}" = 9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://github.com/perseas/${PN}.git"
KEYWORDS=""
else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
SLOT="0"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND="${DEPEND}
>=dev-python/psycopg-2.5
"