From owner-svn-ports-all@freebsd.org Mon May 14 22:08:49 2018 Return-Path: Delivered-To: svn-ports-all@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 E397CE7B58B; Mon, 14 May 2018 22:08:48 +0000 (UTC) (envelope-from dbaio@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 9497C7B9DA; Mon, 14 May 2018 22:08:48 +0000 (UTC) (envelope-from dbaio@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 713B72210E; Mon, 14 May 2018 22:08:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4EM8mvN096417; Mon, 14 May 2018 22:08:48 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4EM8lWV096414; Mon, 14 May 2018 22:08:47 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201805142208.w4EM8lWV096414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 14 May 2018 22:08:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469978 - in head/textproc: . py-elasticsearch-dsl X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/textproc: . py-elasticsearch-dsl X-SVN-Commit-Revision: 469978 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2018 22:08:49 -0000 Author: dbaio Date: Mon May 14 22:08:47 2018 New Revision: 469978 URL: https://svnweb.freebsd.org/changeset/ports/469978 Log: Add textproc/py-elasticsearch-dsl: High level Python client for Elasticsearch - Repocopy from textproc/py-elasticsearch-dsl-py (v0.0.11) - Update to 6.1.0 - PORTNAME equals to PyPI-name (Python Ports Policy) Version 6 (6.x.y) is for Elasticsearch 6.0 and later. PR: 227794 Submitted by: Jeremy Baggs Added: head/textproc/py-elasticsearch-dsl/ - copied from r469965, head/textproc/py-elasticsearch-dsl-py/ Modified: head/textproc/Makefile head/textproc/py-elasticsearch-dsl/Makefile head/textproc/py-elasticsearch-dsl/distinfo head/textproc/py-elasticsearch-dsl/pkg-descr Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon May 14 21:55:09 2018 (r469977) +++ head/textproc/Makefile Mon May 14 22:08:47 2018 (r469978) @@ -1294,6 +1294,7 @@ SUBDIR += py-elasticsearch-async SUBDIR += py-elasticsearch5 SUBDIR += py-elasticsearch-curator + SUBDIR += py-elasticsearch-dsl SUBDIR += py-elasticsearch-dsl-py SUBDIR += py-elasticsearch2-dsl-py SUBDIR += py-elib.intl Modified: head/textproc/py-elasticsearch-dsl/Makefile ============================================================================== --- head/textproc/py-elasticsearch-dsl-py/Makefile Mon May 14 20:43:50 2018 (r469965) +++ head/textproc/py-elasticsearch-dsl/Makefile Mon May 14 22:08:47 2018 (r469978) @@ -1,24 +1,30 @@ # Created by: Dan Langille # $FreeBSD$ -PORTNAME= elasticsearch-dsl-py -PORTVERSION= 0.0.11 -PORTREVISION= 3 +PORTNAME= elasticsearch-dsl +PORTVERSION= 6.1.0 CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= dvl@FreeBSD.org +MAINTAINER= jbaggs2016@gmail.com COMMENT= High level Python client for Elasticsearch LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}elasticsearch>=1.3.0:textproc/py-elasticsearch@${FLAVOR} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}elasticsearch>=6.1.0:textproc/py-elasticsearch@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} -USE_GITHUB= yes -GH_ACCOUNT= elastic +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes -USES= python:2.7 -USE_PYTHON= autoplist distutils +.include -.include +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>=0:net/py-ipaddress@${FLAVOR} +.endif + +.include Modified: head/textproc/py-elasticsearch-dsl/distinfo ============================================================================== --- head/textproc/py-elasticsearch-dsl-py/distinfo Mon May 14 20:43:50 2018 (r469965) +++ head/textproc/py-elasticsearch-dsl/distinfo Mon May 14 22:08:47 2018 (r469978) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490198203 -SHA256 (elastic-elasticsearch-dsl-py-0.0.11_GH0.tar.gz) = 4771ca6bc9f57c053bd81f84164f0b0ccb44b7e6cc8edef56482ca8b2550c763 -SIZE (elastic-elasticsearch-dsl-py-0.0.11_GH0.tar.gz) = 75007 +TIMESTAMP = 1526332558 +SHA256 (elasticsearch-dsl-6.1.0.tar.gz) = 5114a38a88e93a4663782eae07a1e8084ba333c49887335c83de8b8043bc72b2 +SIZE (elasticsearch-dsl-6.1.0.tar.gz) = 44282 Modified: head/textproc/py-elasticsearch-dsl/pkg-descr ============================================================================== --- head/textproc/py-elasticsearch-dsl-py/pkg-descr Mon May 14 20:43:50 2018 (r469965) +++ head/textproc/py-elasticsearch-dsl/pkg-descr Mon May 14 22:08:47 2018 (r469978) @@ -14,4 +14,4 @@ document data in user-defined classes. To use the other Elasticsearch APIs (eg. cluster health) just use the underlying client. -WWW: http://elasticsearch-dsl.readthedocs.org/en/latest/ +WWW: https://pypi.org/project/elasticsearch-dsl/