From owner-svn-ports-head@freebsd.org Fri Dec 22 23:04:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6059E8C0F2; Fri, 22 Dec 2017 23:04:20 +0000 (UTC) (envelope-from sunpoet@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 mx1.freebsd.org (Postfix) with ESMTPS id 9B7CF69DBE; Fri, 22 Dec 2017 23:04:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBMN4HET092301; Fri, 22 Dec 2017 23:04:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBMN4HjI092297; Fri, 22 Dec 2017 23:04:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712222304.vBMN4HjI092297@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 22 Dec 2017 23:04:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456997 - head/textproc/py-elasticsearch X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/py-elasticsearch X-SVN-Commit-Revision: 456997 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.25 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, 22 Dec 2017 23:04:21 -0000 Author: sunpoet Date: Fri Dec 22 23:04:17 2017 New Revision: 456997 URL: https://svnweb.freebsd.org/changeset/ports/456997 Log: Update to 6.0.0 - Update pkg-descr - Update WWW Changes: https://github.com/elastic/elasticsearch-py/blob/master/Changelog.rst Modified: head/textproc/py-elasticsearch/Makefile head/textproc/py-elasticsearch/distinfo head/textproc/py-elasticsearch/pkg-descr Modified: head/textproc/py-elasticsearch/Makefile ============================================================================== --- head/textproc/py-elasticsearch/Makefile Fri Dec 22 23:04:11 2017 (r456996) +++ head/textproc/py-elasticsearch/Makefile Fri Dec 22 23:04:17 2017 (r456997) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= elasticsearch -PORTVERSION= 5.4.0 +PORTVERSION= 6.0.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,10 +12,10 @@ COMMENT= Official Python low-level client for Elastics LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.8.2:net/py-urllib3@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.21.1:net/py-urllib3@${FLAVOR} NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils .include Modified: head/textproc/py-elasticsearch/distinfo ============================================================================== --- head/textproc/py-elasticsearch/distinfo Fri Dec 22 23:04:11 2017 (r456996) +++ head/textproc/py-elasticsearch/distinfo Fri Dec 22 23:04:17 2017 (r456997) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513860454 -SHA256 (elasticsearch-5.4.0.tar.gz) = e754c688e20fe73160fb6f7f5b63f2a71c78788dc9e6908950681d3a39b56e85 -SIZE (elasticsearch-5.4.0.tar.gz) = 64429 +TIMESTAMP = 1513969064 +SHA256 (elasticsearch-6.0.0.tar.gz) = 9fd6fe01d5f992666674f6089ff2ec4917ec64ed7dcd7e109cdf95f406303809 +SIZE (elasticsearch-6.0.0.tar.gz) = 67198 Modified: head/textproc/py-elasticsearch/pkg-descr ============================================================================== --- head/textproc/py-elasticsearch/pkg-descr Fri Dec 22 23:04:11 2017 (r456996) +++ head/textproc/py-elasticsearch/pkg-descr Fri Dec 22 23:04:17 2017 (r456997) @@ -1,5 +1,17 @@ -Official low-level client for Elasticsearch. It's goal is to provide common -ground for all Elasticsearch-related code in Python; because of this it tries -to be opinion-free and very extendable. +Official low-level client for Elasticsearch. Its goal is to provide common +ground for all Elasticsearch-related code in Python; because of this it tries to +be opinion-free and very extendable. -WWW: http://elasticsearch-py.readthedocs.org/en/master/ +For a more high level client library with more limited scope, have a look at +elasticsearch-dsl - a more pythonic library sitting on top of elasticsearch-py. + +It provides a more convenient and idiomatic way to write and manipulate queries. +It stays close to the Elasticsearch JSON DSL, mirroring its terminology and +structure while exposing the whole range of the DSL from Python either directly +using defined classes or a queryset-like expressions. + +It also provides an optional persistence layer for working with documents as +Python objects in an ORM-like fashion: defining mappings, retrieving and saving +documents, wrapping the document data in user-defined classes. + +WWW: https://github.com/elastic/elasticsearch-py