svn commit: r448146 - in head/devel: . py-pyral

Mark Felder feld at FreeBSD.org
Thu Aug 17 16:31:50 UTC 2017


Author: feld
Date: Thu Aug 17 16:31:48 2017
New Revision: 448146
URL: https://svnweb.freebsd.org/changeset/ports/448146

Log:
  The Rally REST Tookit for Python consists of a package that provides a
  means to interact with entities and artifacts in your Rally
  subscription. The full spectrum of CRUD operations is available in your
  Agile Central (Rally) Workspaces and Projects, providing of course that
  your Agile Central (Rally) subscription credentials enable you to
  perform those operations. The toolkit insulates the package user from
  having to make multiple requests to obtain the full set of qualifying
  items by performing any subsequent "page" requests automatically. An
  additional key feature is the ability to obtain entity sub fields that
  may be references or collections via the familiar dot '.' notation.
  
  WWW: https://github.com/RallyTools/RallyRestToolkitForPython

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Aug 17 16:28:35 2017	(r448145)
+++ head/devel/Makefile	Thu Aug 17 16:31:48 2017	(r448146)
@@ -4678,6 +4678,7 @@
     SUBDIR += py-pyperclip
     SUBDIR += py-pypugjs
     SUBDIR += py-pyqi
+    SUBDIR += py-pyral
     SUBDIR += py-pyrfc3339
     SUBDIR += py-pyro
     SUBDIR += py-pyshapelib

Added: head/devel/py-pyral/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyral/Makefile	Thu Aug 17 16:31:48 2017	(r448146)
@@ -0,0 +1,22 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pyral
+PORTVERSION=	1.3.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	Rally REST Tookit for Python
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.12.5:www/py-requests
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pyral/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyral/distinfo	Thu Aug 17 16:31:48 2017	(r448146)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1502987332
+SHA256 (pyral-1.3.2.tar.gz) = 12d4a0384f1f0e605f5d899e540565f0f892f07ae1613ddfb9168fc5109c5c6d
+SIZE (pyral-1.3.2.tar.gz) = 972346

Added: head/devel/py-pyral/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyral/pkg-descr	Thu Aug 17 16:31:48 2017	(r448146)
@@ -0,0 +1,12 @@
+The Rally REST Tookit for Python consists of a package that provides a
+means to interact with entities and artifacts in your Rally
+subscription. The full spectrum of CRUD operations is available in your
+Agile Central (Rally) Workspaces and Projects, providing of course that
+your Agile Central (Rally) subscription credentials enable you to
+perform those operations. The toolkit insulates the package user from
+having to make multiple requests to obtain the full set of qualifying
+items by performing any subsequent "page" requests automatically. An
+additional key feature is the ability to obtain entity sub fields that
+may be references or collections via the familiar dot '.' notation.
+
+WWW: https://github.com/RallyTools/RallyRestToolkitForPython


More information about the svn-ports-head mailing list