Date: Mon, 9 Apr 2018 18:50:24 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466882 - in head/textproc: . py-elasticsearch-async Message-ID: <201804091850.w39IoO7s093436@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Apr 9 18:50:23 2018 New Revision: 466882 URL: https://svnweb.freebsd.org/changeset/ports/466882 Log: Add py-elasticsearch-async 6.0.0 This is an adapter for elasticsearch providing a transport layer based on Python's asyncio module. All API calls now return a future wrapping the response. WWW: https://pypi.python.org/pypi/elasticsearch-async WWW: https://github.com/elastic/elasticsearch-py-async Added: head/textproc/py-elasticsearch-async/ head/textproc/py-elasticsearch-async/Makefile (contents, props changed) head/textproc/py-elasticsearch-async/distinfo (contents, props changed) head/textproc/py-elasticsearch-async/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Apr 9 18:49:38 2018 (r466881) +++ head/textproc/Makefile Mon Apr 9 18:50:23 2018 (r466882) @@ -1287,6 +1287,7 @@ SUBDIR += py-docutils SUBDIR += py-dsv SUBDIR += py-elasticsearch + SUBDIR += py-elasticsearch-async SUBDIR += py-elasticsearch5 SUBDIR += py-elasticsearch-curator SUBDIR += py-elasticsearch-dsl-py Added: head/textproc/py-elasticsearch-async/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-async/Makefile Mon Apr 9 18:50:23 2018 (r466882) @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= elasticsearch-async +PORTVERSION= 6.0.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python Elasticsearch Async Client + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=0:www/py-aiohttp@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}async_timeout>=0:devel/py-async_timeout@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}elasticsearch>=6.0.0:textproc/py-elasticsearch@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>=0:devel/py-pytest-asyncio@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:3.4+ + +.include <bsd.port.mk> Added: head/textproc/py-elasticsearch-async/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-async/distinfo Mon Apr 9 18:50:23 2018 (r466882) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523290496 +SHA256 (elasticsearch-async-6.0.0.tar.gz) = 555f9b7bc97c3f0484d940525aabd559e0c87feccefa4448a4d11ddbf4870c5f +SIZE (elasticsearch-async-6.0.0.tar.gz) = 10925 Added: head/textproc/py-elasticsearch-async/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-async/pkg-descr Mon Apr 9 18:50:23 2018 (r466882) @@ -0,0 +1,6 @@ +This is an adapter for elasticsearch providing a transport layer based on +Python's asyncio module. All API calls now return a future wrapping the +response. + +WWW: https://pypi.python.org/pypi/elasticsearch-async +WWW: https://github.com/elastic/elasticsearch-py-async
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804091850.w39IoO7s093436>