New port: databases/py-aiopg: Python library for accessing PostgreSQL database using asyncio

This commit is contained in:
Babak Farrokhi 2018-07-07 06:34:04 +00:00
parent bff5d83e44
commit fff981e77f
4 changed files with 36 additions and 0 deletions

View file

@ -773,6 +773,7 @@
SUBDIR += py-PyGreSQL
SUBDIR += py-Pyrseas
SUBDIR += py-agate-sql
SUBDIR += py-aiopg
SUBDIR += py-aioredis
SUBDIR += py-alembic
SUBDIR += py-apsw

View file

@ -0,0 +1,27 @@
# Created by: Babak Farrokhi <farrokhi@FreeBSD.org>
# $FreeBSD$
PORTNAME= aiopg
PORTVERSION= 0.14.0
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= farrokhi@FreeBSD.org
COMMENT= Python library for accessing PostgreSQL database using asyncio
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
OPTIONS_DEFINE= DOCS
USES= pgsql:9.2+ python:3.4+
USE_PYTHON= autoplist concurrent distutils setuptools
PORTDOCS= PKG-INFO README.rst CHANGES.txt
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1530944962
SHA256 (aiopg-0.14.0.tar.gz) = 7dee52e0fa4697bace62d39180df96e94a328ee96aa211c8e93c346b8ffd1bcc
SIZE (aiopg-0.14.0.tar.gz) = 27071

View file

@ -0,0 +1,5 @@
aiopg is a library for accessing a PostgreSQL database from the asyncio
(PEP-3156/tulip) framework. It wraps asynchronous features of the Psycopg
database driver.
WWW: https://github.com/aio-libs/aiopg