From owner-svn-ports-head@freebsd.org Tue Feb 21 07:37:00 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 C2053CE7E19; Tue, 21 Feb 2017 07:37:00 +0000 (UTC) (envelope-from araujo@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 775C616E9; Tue, 21 Feb 2017 07:37:00 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1L7ax0a044550; Tue, 21 Feb 2017 07:36:59 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1L7axN4044546; Tue, 21 Feb 2017 07:36:59 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201702210736.v1L7axN4044546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 21 Feb 2017 07:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434508 - in head/sysutils: . py-consul 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.23 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: Tue, 21 Feb 2017 07:37:00 -0000 Author: araujo Date: Tue Feb 21 07:36:59 2017 New Revision: 434508 URL: https://svnweb.freebsd.org/changeset/ports/434508 Log: Python client for consul (WWW: http://www.consul.io) WWW: https://github.com/cablehead/python-consul PR: ports/215396 Submitted by: John Hixson Added: head/sysutils/py-consul/ head/sysutils/py-consul/Makefile (contents, props changed) head/sysutils/py-consul/distinfo (contents, props changed) head/sysutils/py-consul/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Feb 21 07:05:41 2017 (r434507) +++ head/sysutils/Makefile Tue Feb 21 07:36:59 2017 (r434508) @@ -845,6 +845,7 @@ SUBDIR += py-analyzemft SUBDIR += py-bcfg2 SUBDIR += py-cdmi + SUBDIR += py-consul SUBDIR += py-croniter SUBDIR += py-crontab SUBDIR += py-danzfs Added: head/sysutils/py-consul/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-consul/Makefile Tue Feb 21 07:36:59 2017 (r434508) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= py-consul +PORTVERSION= 0.7.0 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= jhixson@gmail.com +COMMENT= Python client for consul + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py3-requests \ + ${PYTHON_PKGNAMEPREFIX}six>=1.4:devel/py-six +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py3-requests \ + ${PYTHON_PKGNAMEPREFIX}six>=1.4:devel/py-six + +USE_GITHUB= yes +GH_ACCOUNT= cablehead +GH_PROJECT= python-consul + +USES= python:3.3+ +USE_PYTHON= distutils autoplist + +.include Added: head/sysutils/py-consul/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-consul/distinfo Tue Feb 21 07:36:59 2017 (r434508) @@ -0,0 +1,3 @@ +TIMESTAMP = 1487185160 +SHA256 (cablehead-python-consul-v0.7.0_GH0.tar.gz) = 62f1a8d5d69b7fd3469b0a4fb1c37129efbc18a6bc0e0bc5ac0ff293e240eef9 +SIZE (cablehead-python-consul-v0.7.0_GH0.tar.gz) = 12957501 Added: head/sysutils/py-consul/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-consul/pkg-descr Tue Feb 21 07:36:59 2017 (r434508) @@ -0,0 +1,3 @@ +Python client for consul (WWW: http://www.consul.io) + +WWW: https://github.com/cablehead/python-consul