forked from Lainports/freebsd-ports
New port: databases/py-aiopg: Python library for accessing PostgreSQL database using asyncio
This commit is contained in:
parent
bff5d83e44
commit
fff981e77f
4 changed files with 36 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
27
databases/py-aiopg/Makefile
Normal file
27
databases/py-aiopg/Makefile
Normal 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>
|
||||
3
databases/py-aiopg/distinfo
Normal file
3
databases/py-aiopg/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1530944962
|
||||
SHA256 (aiopg-0.14.0.tar.gz) = 7dee52e0fa4697bace62d39180df96e94a328ee96aa211c8e93c346b8ffd1bcc
|
||||
SIZE (aiopg-0.14.0.tar.gz) = 27071
|
||||
5
databases/py-aiopg/pkg-descr
Normal file
5
databases/py-aiopg/pkg-descr
Normal 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
|
||||
Loading…
Add table
Reference in a new issue