Update to 1.4.2

- Update COMMENT
- Sort RUN_DEPENDS
- Update pkg-descr
- Take maintainership

Changes:	https://github.com/RallyTools/RallyRestToolkitForPython/releases
		https://github.com/RallyTools/RallyRestToolkitForPython/commits/master
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2018-10-20 14:47:38 +00:00
parent c948c13125
commit f27d292705
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=482507
3 changed files with 16 additions and 20 deletions

View file

@ -2,31 +2,33 @@
# $FreeBSD$
PORTNAME= pyral
PORTVERSION= 1.4.1
PORTVERSION= 1.4.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Rally REST Tookit for Python
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python toolkit for Agile Central (Rally) REST API
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>=2.12.5:www/py-requests@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.12.5:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
USES= python shebangfix
USE_PYTHON= autoplist concurrent distutils
SHEBANG_GLOB= *.py
NO_ARCH= yes
PORTEXAMPLES= *.py
SHEBANG_GLOB= *.py
OPTIONS_DEFINE= EXAMPLES
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/*.py ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1539823577
SHA256 (pyral-1.4.1.tar.gz) = 546871edfb1ab71fc79914b828cc1c224696541e07d5d7b33ec4b4ccbe34443a
SIZE (pyral-1.4.1.tar.gz) = 972895
TIMESTAMP = 1540017580
SHA256 (pyral-1.4.2.tar.gz) = 414b52637b3f8912c6bfea5bd5092f5afb8a281cc3a09a6dc52c4cbd6bd166e4
SIZE (pyral-1.4.2.tar.gz) = 972961

View file

@ -1,12 +1,6 @@
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.
The pyral package enables you to push, pull and otherwise wrangle the data in
your Agile Central (formerly named Rally) subscription using the popular and
productive Python language. The pyral package provides a smooth and easy to use
veneer on top of the Agile Central (Rally) REST Web Services API using JSON.
WWW: https://github.com/RallyTools/RallyRestToolkitForPython