Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2015 14:46:18 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390574 - in head/devel: . py-python-bugzilla
Message-ID:  <201506251446.t5PEkIFk017613@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Thu Jun 25 14:46:17 2015
New Revision: 390574
URL: https://svnweb.freebsd.org/changeset/ports/390574

Log:
  [NEW] devel/py-python-bugzilla: Bugzilla XMLRPC access module
  
  This is a python module that provides a kinda pythonic interface to
  Bugzilla over XMLRPC.
  
  It was originally written specifically for Red Hat's Bugzilla instance,
  but it is intended to work with any Bugzilla instance. More usage the
  better, we would be happy to help get things working with the bugzilla
  instance you care about.
  
  It also includes a `bugzilla` command-line client which can be used for
  quick, ad-hoc bugzilla jiggery-pokery.
  
  WWW: https://fedorahosted.org/python-bugzilla/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jun 25 14:39:01 2015	(r390573)
+++ head/devel/Makefile	Thu Jun 25 14:46:17 2015	(r390574)
@@ -4062,6 +4062,7 @@
     SUBDIR += py-pytest-runner
     SUBDIR += py-pytest-timeout
     SUBDIR += py-pytest-xdist
+    SUBDIR += py-python-bugzilla
     SUBDIR += py-python-jenkins
     SUBDIR += py-python-statsd
     SUBDIR += py-python2-pythondialog

Added: head/devel/py-python-bugzilla/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-bugzilla/Makefile	Thu Jun 25 14:46:17 2015	(r390574)
@@ -0,0 +1,24 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	python-bugzilla
+PORTVERSION=	1.2.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Bugzilla XMLRPC access module
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests
+
+USES=		python zip
+USE_PYTHON=	autoplist distutils
+
+regression-test: build
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-python-bugzilla/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-bugzilla/distinfo	Thu Jun 25 14:46:17 2015	(r390574)
@@ -0,0 +1,2 @@
+SHA256 (python-bugzilla-1.2.1.zip) = 70a4da62fe4c90f374a86c5c93bde78bfce264026b709de1560a6984436c2d08
+SIZE (python-bugzilla-1.2.1.zip) = 89674

Added: head/devel/py-python-bugzilla/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-python-bugzilla/pkg-descr	Thu Jun 25 14:46:17 2015	(r390574)
@@ -0,0 +1,12 @@
+This is a python module that provides a kinda pythonic interface to Bugzilla
+over XMLRPC.
+
+It was originally written specifically for Red Hat's Bugzilla instance, but
+it is intended to work with any Bugzilla instance. More usage the better, we
+would be happy to help get things working with the bugzilla instance you care
+about.
+
+It also includes a `bugzilla` command-line client which can be used for quick,
+ad-hoc bugzilla jiggery-pokery.
+
+WWW: https://fedorahosted.org/python-bugzilla/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506251446.t5PEkIFk017613>