Date: Fri, 6 Jul 2018 15:18:49 +0000 (UTC) From: Babak Farrokhi <farrokhi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474014 - in head/databases: . py-aioredis Message-ID: <201807061518.w66FIn4m040862@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: farrokhi Date: Fri Jul 6 15:18:48 2018 New Revision: 474014 URL: https://svnweb.freebsd.org/changeset/ports/474014 Log: New port: databases/py-aioredis: Python asycio based Redis client library Added: head/databases/py-aioredis/ head/databases/py-aioredis/Makefile (contents, props changed) head/databases/py-aioredis/distinfo (contents, props changed) head/databases/py-aioredis/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Jul 6 14:45:47 2018 (r474013) +++ head/databases/Makefile Fri Jul 6 15:18:48 2018 (r474014) @@ -773,6 +773,7 @@ SUBDIR += py-PyGreSQL SUBDIR += py-Pyrseas SUBDIR += py-agate-sql + SUBDIR += py-aioredis SUBDIR += py-alembic SUBDIR += py-apsw SUBDIR += py-asyncpg Added: head/databases/py-aioredis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-aioredis/Makefile Fri Jul 6 15:18:48 2018 (r474014) @@ -0,0 +1,21 @@ +# Created by: Babak Farrokhi <farrokhi@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= aioredis +PORTVERSION= 1.1.0 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= farrokhi@FreeBSD.org +COMMENT= Python asyncio based Redis client library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libhiredis.so:databases/hiredis + +USES= python:3.5+ +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/databases/py-aioredis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-aioredis/distinfo Fri Jul 6 15:18:48 2018 (r474014) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530888316 +SHA256 (aioredis-1.1.0.tar.gz) = d3adfc3295a91a97cab472751e26ff85949566a131cebb27a778e49aa0638c1a +SIZE (aioredis-1.1.0.tar.gz) = 145960 Added: head/databases/py-aioredis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-aioredis/pkg-descr Fri Jul 6 15:18:48 2018 (r474014) @@ -0,0 +1,6 @@ +asyncio (PEP 3156) Redis client library. + +The library is intended to provide simple and clear interface +to Redis based on asyncio. + +WWW: https://github.com/aio-libs/aioredis
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807061518.w66FIn4m040862>