From owner-svn-ports-head@FreeBSD.ORG Tue Sep 3 15:08:48 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 00422280; Tue, 3 Sep 2013 15:08:47 +0000 (UTC) (envelope-from sunpoet@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFF9E23FA; Tue, 3 Sep 2013 15:08:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r83F8lmI099772; Tue, 3 Sep 2013 15:08:47 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r83F8kDO099763; Tue, 3 Sep 2013 15:08:46 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201309031508.r83F8kDO099763@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 3 Sep 2013 15:08:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326157 - in head/devel: . p5-Pithub 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.14 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: Tue, 03 Sep 2013 15:08:48 -0000 Author: sunpoet Date: Tue Sep 3 15:08:46 2013 New Revision: 326157 URL: http://svnweb.freebsd.org/changeset/ports/326157 Log: - Add p5-Pithub 0.01020 Pithub provides a set of modules to access the Github v3 API in an object oriented way. There is also Net::GitHub which does the same for all the versions (v1, v2, v3) of the Github API. Pithub supports all API calls so far, but only for v3. http://search.cpan.org/dist/Pithub/ WWW: http://search.cpan.org/dist/Pithub/ Added: head/devel/p5-Pithub/ head/devel/p5-Pithub/Makefile (contents, props changed) head/devel/p5-Pithub/distinfo (contents, props changed) head/devel/p5-Pithub/pkg-descr (contents, props changed) head/devel/p5-Pithub/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 3 15:07:52 2013 (r326156) +++ head/devel/Makefile Tue Sep 3 15:08:46 2013 (r326157) @@ -2542,6 +2542,7 @@ SUBDIR += p5-PerlIO-via-symlink SUBDIR += p5-Pid-File-Flock SUBDIR += p5-Pipeline + SUBDIR += p5-Pithub SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Coverage-TrustPod Added: head/devel/p5-Pithub/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Pithub/Makefile Tue Sep 3 15:08:46 2013 (r326157) @@ -0,0 +1,71 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Pithub +PORTVERSION= 0.01.020 +CATEGORIES= devel +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:ANDREMAR +PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Github v3 API + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Array-Iterator>=0:${PORTSDIR}/devel/p5-Array-Iterator \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ + p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ + p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https \ + p5-Moo>=0:${PORTSDIR}/devel/p5-Moo \ + p5-libwww>=0:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp \ + p5-Test-Most>=0:${PORTSDIR}/devel/p5-Test-Most + +USE_PERL5= configure +USES= perl5 + +MAN3= Pithub.3 \ + Pithub::Base.3 \ + Pithub::Events.3 \ + Pithub::Gists.3 \ + Pithub::Gists::Comments.3 \ + Pithub::GitData.3 \ + Pithub::GitData::Blobs.3 \ + Pithub::GitData::Commits.3 \ + Pithub::GitData::References.3 \ + Pithub::GitData::Tags.3 \ + Pithub::GitData::Trees.3 \ + Pithub::Issues.3 \ + Pithub::Issues::Assignees.3 \ + Pithub::Issues::Comments.3 \ + Pithub::Issues::Events.3 \ + Pithub::Issues::Labels.3 \ + Pithub::Issues::Milestones.3 \ + Pithub::Orgs.3 \ + Pithub::Orgs::Members.3 \ + Pithub::Orgs::Teams.3 \ + Pithub::PullRequests.3 \ + Pithub::PullRequests::Comments.3 \ + Pithub::Repos.3 \ + Pithub::Repos::Collaborators.3 \ + Pithub::Repos::Commits.3 \ + Pithub::Repos::Contents.3 \ + Pithub::Repos::Downloads.3 \ + Pithub::Repos::Forks.3 \ + Pithub::Repos::Hooks.3 \ + Pithub::Repos::Keys.3 \ + Pithub::Repos::Starring.3 \ + Pithub::Repos::Stats.3 \ + Pithub::Repos::Watching.3 \ + Pithub::Result.3 \ + Pithub::Search.3 \ + Pithub::Users.3 \ + Pithub::Users::Emails.3 \ + Pithub::Users::Followers.3 \ + Pithub::Users::Keys.3 + +.include Added: head/devel/p5-Pithub/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Pithub/distinfo Tue Sep 3 15:08:46 2013 (r326157) @@ -0,0 +1,2 @@ +SHA256 (Pithub-0.01020.tar.gz) = db1d7451c39d960ffecd5e8dd33d9b75f48348c1d67bd25b56d69810f74faae3 +SIZE (Pithub-0.01020.tar.gz) = 78958 Added: head/devel/p5-Pithub/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Pithub/pkg-descr Tue Sep 3 15:08:46 2013 (r326157) @@ -0,0 +1,6 @@ +Pithub provides a set of modules to access the Github v3 API in an object +oriented way. There is also Net::GitHub which does the same for all the versions +(v1, v2, v3) of the Github API. Pithub supports all API calls so far, but only +for v3. + +http://search.cpan.org/dist/Pithub/ WWW: http://search.cpan.org/dist/Pithub/ Added: head/devel/p5-Pithub/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Pithub/pkg-plist Tue Sep 3 15:08:46 2013 (r326157) @@ -0,0 +1,49 @@ +%%SITE_PERL%%/Pithub.pm +%%SITE_PERL%%/Pithub/Base.pm +%%SITE_PERL%%/Pithub/Events.pm +%%SITE_PERL%%/Pithub/Gists.pm +%%SITE_PERL%%/Pithub/Gists/Comments.pm +%%SITE_PERL%%/Pithub/GitData.pm +%%SITE_PERL%%/Pithub/GitData/Blobs.pm +%%SITE_PERL%%/Pithub/GitData/Commits.pm +%%SITE_PERL%%/Pithub/GitData/References.pm +%%SITE_PERL%%/Pithub/GitData/Tags.pm +%%SITE_PERL%%/Pithub/GitData/Trees.pm +%%SITE_PERL%%/Pithub/Issues.pm +%%SITE_PERL%%/Pithub/Issues/Assignees.pm +%%SITE_PERL%%/Pithub/Issues/Comments.pm +%%SITE_PERL%%/Pithub/Issues/Events.pm +%%SITE_PERL%%/Pithub/Issues/Labels.pm +%%SITE_PERL%%/Pithub/Issues/Milestones.pm +%%SITE_PERL%%/Pithub/Orgs.pm +%%SITE_PERL%%/Pithub/Orgs/Members.pm +%%SITE_PERL%%/Pithub/Orgs/Teams.pm +%%SITE_PERL%%/Pithub/PullRequests.pm +%%SITE_PERL%%/Pithub/PullRequests/Comments.pm +%%SITE_PERL%%/Pithub/Repos.pm +%%SITE_PERL%%/Pithub/Repos/Collaborators.pm +%%SITE_PERL%%/Pithub/Repos/Commits.pm +%%SITE_PERL%%/Pithub/Repos/Contents.pm +%%SITE_PERL%%/Pithub/Repos/Downloads.pm +%%SITE_PERL%%/Pithub/Repos/Forks.pm +%%SITE_PERL%%/Pithub/Repos/Hooks.pm +%%SITE_PERL%%/Pithub/Repos/Keys.pm +%%SITE_PERL%%/Pithub/Repos/Starring.pm +%%SITE_PERL%%/Pithub/Repos/Stats.pm +%%SITE_PERL%%/Pithub/Repos/Watching.pm +%%SITE_PERL%%/Pithub/Result.pm +%%SITE_PERL%%/Pithub/Search.pm +%%SITE_PERL%%/Pithub/Users.pm +%%SITE_PERL%%/Pithub/Users/Emails.pm +%%SITE_PERL%%/Pithub/Users/Followers.pm +%%SITE_PERL%%/Pithub/Users/Keys.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Pithub/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pithub +@dirrmtry %%SITE_PERL%%/Pithub/Users +@dirrmtry %%SITE_PERL%%/Pithub/Repos +@dirrmtry %%SITE_PERL%%/Pithub/PullRequests +@dirrmtry %%SITE_PERL%%/Pithub/Orgs +@dirrmtry %%SITE_PERL%%/Pithub/Issues +@dirrmtry %%SITE_PERL%%/Pithub/GitData +@dirrmtry %%SITE_PERL%%/Pithub/Gists +@dirrmtry %%SITE_PERL%%/Pithub