1.2.0 (2014-08-03) ------------------ Compatibility with newest (1.3) Elasticsearch APIs. * Filter out master-only nodes when sniffing * Improved docs and error messages 1.1.1 (2014-07-04) ------------------ Bugfix release fixing escaping issues with `request_timeout`. 1.1.0 (2014-07-02) ------------------ Compatibility with newest Elasticsearch APIs. * Test helpers - `ElasticsearchTestCase` and `get_test_client` for use in your tests * Python 3.2 compatibility * Use ``simplejson`` if installed instead of stdlib json library * Introducing a global `request_timeout` parameter for per-call timeout * Bug fixes
18 lines
568 B
Makefile
18 lines
568 B
Makefile
# $NetBSD: Makefile,v 1.2 2014/08/14 16:53:00 imil Exp $
|
|
|
|
DISTNAME= elasticsearch-1.2.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= https://pypi.python.org/packages/source/e/elasticsearch/
|
|
|
|
MAINTAINER= imil@NetBSD.org
|
|
HOMEPAGE= http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/
|
|
COMMENT= Official low-level python client for Elasticsearch
|
|
LICENSE= apache-2.0
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-urllib3>=1.8.2:../../www/py-urllib3
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|