From owner-svn-ports-head@freebsd.org Fri Jul 6 15:18:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85A9B1030E24; Fri, 6 Jul 2018 15:18:50 +0000 (UTC) (envelope-from farrokhi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A45885C12; Fri, 6 Jul 2018 15:18:50 +0000 (UTC) (envelope-from farrokhi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 17D3023CC; Fri, 6 Jul 2018 15:18:50 +0000 (UTC) (envelope-from farrokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w66FInJ5040865; Fri, 6 Jul 2018 15:18:49 GMT (envelope-from farrokhi@FreeBSD.org) Received: (from farrokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w66FIn4m040862; Fri, 6 Jul 2018 15:18:49 GMT (envelope-from farrokhi@FreeBSD.org) Message-Id: <201807061518.w66FIn4m040862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: farrokhi set sender to farrokhi@FreeBSD.org using -f From: Babak Farrokhi Date: Fri, 6 Jul 2018 15:18:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474014 - in head/databases: . py-aioredis X-SVN-Group: ports-head X-SVN-Commit-Author: farrokhi X-SVN-Commit-Paths: in head/databases: . py-aioredis X-SVN-Commit-Revision: 474014 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2018 15:18:50 -0000 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 +# $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 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