dev-python/pgdbconn - 9999 (vayerx)

Search

Install

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

Package Information

Description:
Object-oriented layer over Psycopg2 to interact with Postgres databases
Homepage:
https://github.com/perseas/pgdbconn
License:
BSD

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# 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
"

Inherited Eclasses

Dependencies

DEPEND

dev-python/setuptools

RDEPEND

dev-python/setuptools
	>=dev-python/psycopg-2.5