From owner-svn-ports-head@freebsd.org Sat Sep 7 22:55:03 2019 Return-Path: Delivered-To: svn-ports-head@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 6D69AE0029; Sat, 7 Sep 2019 22:55:03 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) 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 46QqWW2KYBz4BJT; Sat, 7 Sep 2019 22:55:03 +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 333F5CBDC; Sat, 7 Sep 2019 22:55:03 +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 x87Mt30o057374; Sat, 7 Sep 2019 22:55:03 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x87Mt2di057370; Sat, 7 Sep 2019 22:55:02 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201909072255.x87Mt2di057370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 7 Sep 2019 22:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511495 - in head/devel: . py-vsts X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/devel: . py-vsts X-SVN-Commit-Revision: 511495 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.29 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: Sat, 07 Sep 2019 22:55:03 -0000 Author: dbaio Date: Sat Sep 7 22:55:02 2019 New Revision: 511495 URL: https://svnweb.freebsd.org/changeset/ports/511495 Log: Add devel/py-vsts: Python wrapper around the VSTS APIs This repository contains Python APIs for interacting with and managing Azure DevOps. These APIs power the Visual Studio Team Services CLI. WWW: https://pypi.org/project/vsts/ Added: head/devel/py-vsts/ head/devel/py-vsts/Makefile (contents, props changed) head/devel/py-vsts/distinfo (contents, props changed) head/devel/py-vsts/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Sep 7 22:53:25 2019 (r511494) +++ head/devel/Makefile Sat Sep 7 22:55:02 2019 (r511495) @@ -5144,6 +5144,7 @@ SUBDIR += py-virtualenvwrapper SUBDIR += py-visitor SUBDIR += py-voluptuous + SUBDIR += py-vsts SUBDIR += py-vsts-cd-manager SUBDIR += py-vulture SUBDIR += py-wadllib Added: head/devel/py-vsts/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vsts/Makefile Sat Sep 7 22:55:02 2019 (r511495) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= vsts +PORTVERSION= 0.1.25 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Python wrapper around the VSTS APIs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msrest>=0.6.0:net-mgmt/py-msrest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-vsts/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vsts/distinfo Sat Sep 7 22:55:02 2019 (r511495) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553909959 +SHA256 (vsts-0.1.25.tar.gz) = da179160121f5b38be061dbff29cd2b60d5d029b2207102454d77a7114e64f97 +SIZE (vsts-0.1.25.tar.gz) = 847327 Added: head/devel/py-vsts/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-vsts/pkg-descr Sat Sep 7 22:55:02 2019 (r511495) @@ -0,0 +1,4 @@ +This repository contains Python APIs for interacting with and managing Azure +DevOps. These APIs power the Visual Studio Team Services CLI. + +WWW: https://pypi.org/project/vsts/