summaryrefslogtreecommitdiff
path: root/databases/py-elasticsearch/Makefile
diff options
context:
space:
mode:
authorfhajny <fhajny>2015-08-26 03:59:03 +0000
committerfhajny <fhajny>2015-08-26 03:59:03 +0000
commit6cb60b9d2a2b527430f775006a1afb4ae6f80574 (patch)
treeec7dad61596cce59cecec53351fd522872bfb795 /databases/py-elasticsearch/Makefile
parentd47e84e702d152083a4eca9829cf13d44511d8ac (diff)
downloadpkgsrc-6cb60b9d2a2b527430f775006a1afb4ae6f80574.tar.gz
Update databases/py-elasticsearch to 1.6.0.
1.6.0 (2015-06-10) - Add indices.flush_synced API - helpers.reindex now supports reindexing parent/child documents 1.5.0 (2015-05-18) - Add support for query_cache parameter when searching - helpers have been made more secure by changing defaults to raise an exception on errors - removed deprecated options replication and the deprecated benchmark api. - Added AddonClient class to allow for extending the client from outside
Diffstat (limited to 'databases/py-elasticsearch/Makefile')
-rw-r--r--databases/py-elasticsearch/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/databases/py-elasticsearch/Makefile b/databases/py-elasticsearch/Makefile
index f014ca99367..82b9ff42912 100644
--- a/databases/py-elasticsearch/Makefile
+++ b/databases/py-elasticsearch/Makefile
@@ -1,15 +1,17 @@
-# $NetBSD: Makefile,v 1.3 2015/03/09 15:56:33 imil Exp $
+# $NetBSD: Makefile,v 1.4 2015/08/26 03:59:03 fhajny Exp $
-DISTNAME= elasticsearch-1.4.0
-PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+DISTNAME= elasticsearch-py-1.6.0
+PKGNAME= ${PYPKGPREFIX}-${EGG_NAME}
CATEGORIES= databases
-MASTER_SITES= https://pypi.python.org/packages/source/e/elasticsearch/
+MASTER_SITES= ${MASTER_SITE_GITHUB:=elastic/}
MAINTAINER= imil@NetBSD.org
-HOMEPAGE= http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/
+HOMEPAGE= http://github.com/elastic/elasticsearch-py/
COMMENT= Official low-level python client for Elasticsearch
LICENSE= apache-2.0
+EGG_NAME= ${DISTNAME:S/-py//}
+
USE_LANGUAGES= # none
DEPENDS+= ${PYPKGPREFIX}-urllib3>=1.8.2:../../www/py-urllib3