From owner-svn-ports-head@FreeBSD.ORG Wed Feb 20 02:24:15 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0A2428B1; Wed, 20 Feb 2013 02:24:15 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7404B9B8; Wed, 20 Feb 2013 02:24:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1K2ODP4085091; Wed, 20 Feb 2013 02:24:13 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1K2ODjd085086; Wed, 20 Feb 2013 02:24:13 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201302200224.r1K2ODjd085086@svn.freebsd.org> From: Steve Wills Date: Wed, 20 Feb 2013 02:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312610 - in head/irc: . p5-POE-Component-IRC-Plugin-Karma 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: Wed, 20 Feb 2013 02:24:15 -0000 Author: swills Date: Wed Feb 20 02:24:12 2013 New Revision: 312610 URL: http://svnweb.freebsd.org/changeset/ports/312610 Log: POE::Component::IRC::Plugin::Karma - plugin to store karma WWW: https://metacpan.org/module/POE::Component::IRC::Plugin::Karma WWW: https://github.com/apocalypse/perl-pocoirc-karma PR: ports/176228 Submitted by: milki Added: head/irc/p5-POE-Component-IRC-Plugin-Karma/ head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile (contents, props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/distinfo (contents, props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-descr (contents, props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-plist (contents, props changed) Modified: head/irc/Makefile Modified: head/irc/Makefile ============================================================================== --- head/irc/Makefile Wed Feb 20 01:45:57 2013 (r312609) +++ head/irc/Makefile Wed Feb 20 02:24:12 2013 (r312610) @@ -88,6 +88,7 @@ SUBDIR += p5-POE-Component-IRC-Plugin-Bollocks SUBDIR += p5-POE-Component-IRC-Plugin-CoreList SUBDIR += p5-POE-Component-IRC-Plugin-Hailo + SUBDIR += p5-POE-Component-IRC-Plugin-Karma SUBDIR += p5-POE-Component-IRC-Plugin-POE-Knee SUBDIR += p5-POE-Component-IRC-Plugin-QueryDNS SUBDIR += p5-POE-Component-IRC-Plugin-QueryDNSBL Added: head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile Wed Feb 20 02:24:12 2013 (r312610) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= POE-Component-IRC-Plugin-Karma +PORTVERSION= 0.003 +CATEGORIES= irc perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:APOCAL +PKGNAMEPREFIX= p5- + +MAINTAINER= milki@rescomp.berkeley.edu +COMMENT= A PoCo-IRC plugin that keeps track of karma + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite \ + p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ + p5-POE-Component-IRC>=6.22:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-Moose>=0:${PORTSDIR}/devel/p5-Moose +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject + +PERL_CONFIGURE= yes + +MAN3= POE::Component::IRC::Plugin::Karma.3 + +.include Added: head/irc/p5-POE-Component-IRC-Plugin-Karma/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/p5-POE-Component-IRC-Plugin-Karma/distinfo Wed Feb 20 02:24:12 2013 (r312610) @@ -0,0 +1,2 @@ +SHA256 (POE-Component-IRC-Plugin-Karma-0.003.tar.gz) = eafc899ba47e6ae9a6cc381c536606c89c2a55b26b76b1c12fe1c5fcae7956d1 +SIZE (POE-Component-IRC-Plugin-Karma-0.003.tar.gz) = 24926 Added: head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-descr Wed Feb 20 02:24:12 2013 (r312610) @@ -0,0 +1,4 @@ +POE::Component::IRC::Plugin::Karma - plugin to store karma + +WWW: https://metacpan.org/module/POE::Component::IRC::Plugin::Karma +WWW: https://github.com/apocalypse/perl-pocoirc-karma Added: head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-plist Wed Feb 20 02:24:12 2013 (r312610) @@ -0,0 +1,11 @@ +%%SITE_PERL%%/POE/Component/IRC/Plugin/Karma.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin/Karma/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin/Karma +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE +@dirrmtry %%SITE_PERL%%/POE/Component/IRC/Plugin +@dirrmtry %%SITE_PERL%%/POE/Component/IRC +@dirrmtry %%SITE_PERL%%/POE/Component +@dirrmtry %%SITE_PERL%%/POE