svn commit: r387881 - in head/devel: . py-python-jenkins

Li-Wen Hsu lwhsu at FreeBSD.org
Fri May 29 19:30:32 UTC 2015


Author: lwhsu
Date: Fri May 29 19:30:30 2015
New Revision: 387881
URL: https://svnweb.freebsd.org/changeset/ports/387881

Log:
  Add py-python-jenkins, Python bindings for the remote Jenkins API

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May 29 18:36:47 2015	(r387880)
+++ head/devel/Makefile	Fri May 29 19:30:30 2015	(r387881)
@@ -4040,6 +4040,7 @@
     SUBDIR += py-pytest
     SUBDIR += py-pytest-runner
     SUBDIR += py-pytest-timeout
+    SUBDIR += py-python-jenkins
     SUBDIR += py-python-statsd
     SUBDIR += py-pythonbrew
     SUBDIR += py-pytrie

Added: head/devel/py-python-jenkins/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-jenkins/Makefile	Fri May 29 19:30:30 2015	(r387881)
@@ -0,0 +1,22 @@
+# Created by: Li-Wen Hsu <lwhsu at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	python-jenkins
+PORTVERSION=	0.4.6
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lwhsu at FreeBSD.org
+COMMENT=	Python bindings for the remote Jenkins API
+
+LICENSE=	BSD3CLAUSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=0.8.2:${PORTSDIR}/devel/py-pbr
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=0.8.2:${PORTSDIR}/devel/py-pbr \
+		${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-python-jenkins/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-jenkins/distinfo	Fri May 29 19:30:30 2015	(r387881)
@@ -0,0 +1,2 @@
+SHA256 (python-jenkins-0.4.6.tar.gz) = 8ba225a4809f50bc977458d36aa85ec2384cfab9c401e79875ca177d9c5b5f99
+SIZE (python-jenkins-0.4.6.tar.gz) = 25608

Added: head/devel/py-python-jenkins/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-jenkins/pkg-descr	Fri May 29 19:30:30 2015	(r387881)
@@ -0,0 +1,5 @@
+Python Jenkins is a python wrapper for the Jenkins REST API which aims to
+provide a more conventionally pythonic way of controlling a Jenkins server.
+It provides a higher-level API containing a number of convenience functions.
+
+WWW: http://python-jenkins.readthedocs.org/en/latest/


More information about the svn-ports-all mailing list