From owner-svn-ports-head@FreeBSD.ORG Thu Jun 19 01:27:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7C034B8; Thu, 19 Jun 2014 01:27:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B812125EC; Thu, 19 Jun 2014 01:27:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5J1Rr0o090836; Thu, 19 Jun 2014 01:27:53 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5J1RqD2090832; Thu, 19 Jun 2014 01:27:52 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201406190127.s5J1RqD2090832@svn.freebsd.org> From: Ryan Steinmetz Date: Thu, 19 Jun 2014 01:27:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358335 - in head/textproc: . py-elasticsearch-py X-SVN-Group: ports-head 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.18 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: Thu, 19 Jun 2014 01:27:54 -0000 Author: zi Date: Thu Jun 19 01:27:52 2014 New Revision: 358335 URL: http://svnweb.freebsd.org/changeset/ports/358335 QAT: https://qat.redports.org/buildarchive/r358335/ Log: New port: textproc/py-elasticsearch-py: 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. WWW: http://elasticsearch-py.readthedocs.org/en/master/ Added: head/textproc/py-elasticsearch-py/ head/textproc/py-elasticsearch-py/Makefile (contents, props changed) head/textproc/py-elasticsearch-py/distinfo (contents, props changed) head/textproc/py-elasticsearch-py/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 19 01:01:33 2014 (r358334) +++ head/textproc/Makefile Thu Jun 19 01:27:52 2014 (r358335) @@ -1145,6 +1145,7 @@ SUBDIR += py-creole SUBDIR += py-docutils SUBDIR += py-dsv + SUBDIR += py-elasticsearch-py SUBDIR += py-elib.intl SUBDIR += py-empy SUBDIR += py-enchant Added: head/textproc/py-elasticsearch-py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-py/Makefile Thu Jun 19 01:27:52 2014 (r358335) @@ -0,0 +1,21 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= elasticsearch-py +PORTVERSION= 1.0.0 +CATEGORIES= textproc python +MASTER_SITES= # + +MAINTAINER= zi@FreeBSD.org +COMMENT= Official Python low-level client for Elasticsearch + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}urllib3>=1.8.2:${PORTSDIR}/net/py-urllib3 + +USE_GITHUB= yes +GH_ACCOUNT= elasticsearch +GH_COMMIT= 9bd4303 +USE_PYTHON= yes +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST=yes + +.include Added: head/textproc/py-elasticsearch-py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-py/distinfo Thu Jun 19 01:27:52 2014 (r358335) @@ -0,0 +1,2 @@ +SHA256 (elasticsearch-py-1.0.0.tar.gz) = 690fef5ce825785de219c34d29912e5e23a7379f42d9dcee871b5dde7843c2b0 +SIZE (elasticsearch-py-1.0.0.tar.gz) = 63202 Added: head/textproc/py-elasticsearch-py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-elasticsearch-py/pkg-descr Thu Jun 19 01:27:52 2014 (r358335) @@ -0,0 +1,5 @@ +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. + +WWW: http://elasticsearch-py.readthedocs.org/en/master/