From owner-svn-ports-head@freebsd.org Thu Jun 25 14:46:19 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B03DC98EC31; Thu, 25 Jun 2015 14:46:19 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A15F11956; Thu, 25 Jun 2015 14:46:19 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PEkJYi017624; Thu, 25 Jun 2015 14:46:19 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5PEkIFk017613; Thu, 25 Jun 2015 14:46:18 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201506251446.t5PEkIFk017613@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 25 Jun 2015 14:46:18 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 14:46:19 -0000 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 +# $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 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/