dev-python/pg8000: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2021-10-06 23:54:39 +02:00
parent 091c9d47e8
commit 9bc6a7c077
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pg8000-1.21.2.tar.gz 118673 BLAKE2B 1b6366d1e9d4a3b795e196d3aa0be95f6eab416a8b71f2d69e15d9480e76d0f134624d0c6df625b549e6dd40dfcabaf5966adbe7d75e3d064aeabb15e18ce167 SHA512 e7979b2a43711d5013f3f2f3f91a80dc632ca501f3ec86e12f1b0f33477c41acc7c10129a4b55e363049ab7e6aa655a1813cca81bb9ead2f0c21c9b20dc38295

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/tlocke/pg8000/issues</bugs-to>
<remote-id type="pypi">pg8000</remote-id>
<remote-id type="github">tlocke/pg8000</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A Pure-Python PostgreSQL Driver"
HOMEPAGE="
https://github.com/tlocke/pg8000
https://pypi.org/project/pg8000
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64"
RDEPEND="
dev-python/scramp[${PYTHON_USEDEP}]
"
DEPEND="
${RDEPEND}
test? (
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest