From owner-svn-ports-all@FreeBSD.ORG Thu Feb 5 22:20:01 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FE6BD79; Thu, 5 Feb 2015 22:20:01 +0000 (UTC) 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 00F6E6B6; Thu, 5 Feb 2015 22:20:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t15MK0ve082852; Thu, 5 Feb 2015 22:20:00 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t15MJxpZ082794; Thu, 5 Feb 2015 22:19:59 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201502052219.t15MJxpZ082794@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Thu, 5 Feb 2015 22:19:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378495 - in head/devel: . p5-JIRA-REST X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2015 22:20:01 -0000 Author: brd (doc committer) Date: Thu Feb 5 22:19:58 2015 New Revision: 378495 URL: https://svnweb.freebsd.org/changeset/ports/378495 QAT: https://qat.redports.org/buildarchive/r378495/ Log: Add new port devel/p5-JIRA-REST for interfacing with the JIRA API. PR: 197106 Approved by: swills Added: head/devel/p5-JIRA-REST/ head/devel/p5-JIRA-REST/Makefile (contents, props changed) head/devel/p5-JIRA-REST/distinfo (contents, props changed) head/devel/p5-JIRA-REST/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Feb 5 21:46:48 2015 (r378494) +++ head/devel/Makefile Thu Feb 5 22:19:58 2015 (r378495) @@ -2277,6 +2277,7 @@ SUBDIR += p5-Iterator-Simple SUBDIR += p5-Iterator-Util SUBDIR += p5-JIRA-Client + SUBDIR += p5-JIRA-REST SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Path Added: head/devel/p5-JIRA-REST/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JIRA-REST/Makefile Thu Feb 5 22:19:58 2015 (r378495) @@ -0,0 +1,30 @@ +# Created by: Brad Davis +# $FreeBSD$ + +PORTNAME= JIRA-REST +PORTVERSION= 0.010 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Extended interface to JIRA's REST API + +BUILD_DEPENDS= p5-Data-Util>=0:${PORTSDIR}/devel/p5-Data-Util \ + p5-HTML-TreeBuilder-LibXML>=0:${PORTSDIR}/www/p5-HTML-TreeBuilder-LibXML \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ + p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ + p5-REST-Client>=0:${PORTSDIR}/www/p5-REST-Client \ + p5-URI>=0:${PORTSDIR}/net/p5-URI +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure +NO_ARCH= yes + +PLIST_FILES= %%SITE_PERL%%/JIRA/README.pod \ + %%SITE_PERL%%/JIRA/REST.pm \ + %%PERL5_MAN3%%/JIRA::README.3.gz \ + %%PERL5_MAN3%%/JIRA::REST.3.gz + +.include Added: head/devel/p5-JIRA-REST/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JIRA-REST/distinfo Thu Feb 5 22:19:58 2015 (r378495) @@ -0,0 +1,2 @@ +SHA256 (JIRA-REST-0.010.tar.gz) = a772267b5a563863fdf520d1edcc2278bc1943ccb71b332c73fabd87236fef32 +SIZE (JIRA-REST-0.010.tar.gz) = 15341 Added: head/devel/p5-JIRA-REST/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-JIRA-REST/pkg-descr Thu Feb 5 22:19:58 2015 (r378495) @@ -0,0 +1,10 @@ +JIRA is a proprietary bug tracking system from Atlassian +(http://www.atlassian.com/software/jira/). + +This module implements an Object Oriented wrapper around JIRA's +REST API. + +Moreover, it implements some other methods to make it easier to do +some common operations. + +WWW: http://search.cpan.org/dist/JIRA-REST/