svn commit: r488679 - in head/devel: . py-vsts-cd-manager

Danilo G. Baio dbaio at FreeBSD.org
Sat Dec 29 17:32:04 UTC 2018


Author: dbaio
Date: Sat Dec 29 17:32:02 2018
New Revision: 488679
URL: https://svnweb.freebsd.org/changeset/ports/488679

Log:
  Add devel/py-vsts-cd-manager: Python wrapper around some of the VSTS APIs
  
  Visual Studio Team Services Continuous Delivery Manager
  
  This project provides the class ContinuousDeliveryManager and supporting
  classes. This CD manager class allows the caller to manage Azure Continuous
  Delivery pipelines that are maintained within a VSTS account.
  
  WWW: https://pypi.org/project/vsts-cd-manager/

Added:
  head/devel/py-vsts-cd-manager/
  head/devel/py-vsts-cd-manager/Makefile   (contents, props changed)
  head/devel/py-vsts-cd-manager/distinfo   (contents, props changed)
  head/devel/py-vsts-cd-manager/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Dec 29 17:25:56 2018	(r488678)
+++ head/devel/Makefile	Sat Dec 29 17:32:02 2018	(r488679)
@@ -5236,6 +5236,7 @@
     SUBDIR += py-virtualenvwrapper
     SUBDIR += py-visitor
     SUBDIR += py-voluptuous
+    SUBDIR += py-vsts-cd-manager
     SUBDIR += py-vulture
     SUBDIR += py-warlock
     SUBDIR += py-watchdog

Added: head/devel/py-vsts-cd-manager/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-vsts-cd-manager/Makefile	Sat Dec 29 17:32:02 2018	(r488679)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	vsts-cd-manager
+PORTVERSION=	1.0.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio at FreeBSD.org
+COMMENT=	Python wrapper around some of the Visual Studio Team Services APIs
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msrest>=0.2.0:net-mgmt/py-msrest@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-vsts-cd-manager/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-vsts-cd-manager/distinfo	Sat Dec 29 17:32:02 2018	(r488679)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1546103048
+SHA256 (vsts-cd-manager-1.0.2.tar.gz) = 0bb09059cd553e1c206e92ef324cb0dcf92334846d646c44c684f6256b86447b
+SIZE (vsts-cd-manager-1.0.2.tar.gz) = 13271

Added: head/devel/py-vsts-cd-manager/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-vsts-cd-manager/pkg-descr	Sat Dec 29 17:32:02 2018	(r488679)
@@ -0,0 +1,7 @@
+Visual Studio Team Services Continuous Delivery Manager
+
+This project provides the class ContinuousDeliveryManager and supporting
+classes. This CD manager class allows the caller to manage Azure Continuous
+Delivery pipelines that are maintained within a VSTS account.
+
+WWW: https://pypi.org/project/vsts-cd-manager/


More information about the svn-ports-all mailing list