From owner-svn-ports-all@freebsd.org Wed May 27 12:25:17 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7E823331700; Wed, 27 May 2020 12:25:17 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49X95T2q4vz4HMf; Wed, 27 May 2020 12:25:17 +0000 (UTC) (envelope-from ehaupt@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 42EAC14CBE; Wed, 27 May 2020 12:25:17 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04RCPHYf036778; Wed, 27 May 2020 12:25:17 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04RCPG16036772; Wed, 27 May 2020 12:25:16 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202005271225.04RCPG16036772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 27 May 2020 12:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536691 - in head/devel: . py-hvac X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/devel: . py-hvac X-SVN-Commit-Revision: 536691 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.33 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: Wed, 27 May 2020 12:25:17 -0000 Author: ehaupt Date: Wed May 27 12:25:16 2020 New Revision: 536691 URL: https://svnweb.freebsd.org/changeset/ports/536691 Log: Add py-hvac 0.10.3, hashiCorp Vault API client. PR: 246359 Submitted by: Alessando Sagratini Added: head/devel/py-hvac/ head/devel/py-hvac/Makefile (contents, props changed) head/devel/py-hvac/distinfo (contents, props changed) head/devel/py-hvac/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed May 27 12:11:01 2020 (r536690) +++ head/devel/Makefile Wed May 27 12:25:16 2020 (r536691) @@ -4467,6 +4467,7 @@ SUBDIR += py-holidays SUBDIR += py-http-prompt SUBDIR += py-humanize + SUBDIR += py-hvac SUBDIR += py-hypothesis SUBDIR += py-icalendar SUBDIR += py-ice Added: head/devel/py-hvac/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hvac/Makefile Wed May 27 12:25:16 2020 (r536691) @@ -0,0 +1,29 @@ +# Created by: Alessando Sagratini +# $FreeBSD$ + +PORTNAME= hvac +PORTVERSION= 0.10.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ale_sagra@hotmail.com +COMMENT= HashiCorp Vault API client + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyhcl>=0.3.10:devel/py-pyhcl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>2.21.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.5.0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m tox + +.include Added: head/devel/py-hvac/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hvac/distinfo Wed May 27 12:25:16 2020 (r536691) @@ -0,0 +1,3 @@ +TIMESTAMP = 1590580430 +SHA256 (hvac-0.10.3.tar.gz) = 391b558a465d1919a2862926ab9a7c6bef1f2ac2c46daf8dd5115080c42978e4 +SIZE (hvac-0.10.3.tar.gz) = 86758 Added: head/devel/py-hvac/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hvac/pkg-descr Wed May 27 12:25:16 2020 (r536691) @@ -0,0 +1,7 @@ +HVAC is Python client for Hashicorp Vault. + +Tested against the latest release, HEAD ref, and 3 previous minor versions +counting back from the latest release of Vault. +Current official support covers Vault v1.1.5 or later. + +WWW: https://pypi.org/project/hvac/