From owner-svn-ports-all@FreeBSD.ORG Mon Dec 2 08:14:27 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 27D6376C; Mon, 2 Dec 2013 08:14:27 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13A2A1AC9; Mon, 2 Dec 2013 08:14:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB28EQIn020685; Mon, 2 Dec 2013 08:14:26 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB28EQQs020679; Mon, 2 Dec 2013 08:14:26 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201312020814.rB28EQQs020679@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 2 Dec 2013 08:14:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335461 - in head/devel: . p5-File-Tail-Scribe 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.16 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: Mon, 02 Dec 2013 08:14:27 -0000 Author: sunpoet Date: Mon Dec 2 08:14:25 2013 New Revision: 335461 URL: http://svnweb.freebsd.org/changeset/ports/335461 Log: - Add p5-File-Tail-Scribe - While I'm here: - Add LICENSE - Fix *_DEPENDS - Support STAGEDIR - Fix PLIST: add missing files It monitors files in a given directory (or set of directories), such as Apache log files in /var/log/httpd, and as the log files are written to, takes the changes and sends them to a running instance of the Scribe logging system. WWW: http://search.cpan.org/dist/File-Tail-Scribe/ PR: ports/184263 Submitted by: Hung-Yi Chen Added: head/devel/p5-File-Tail-Scribe/ head/devel/p5-File-Tail-Scribe/Makefile (contents, props changed) head/devel/p5-File-Tail-Scribe/distinfo (contents, props changed) head/devel/p5-File-Tail-Scribe/pkg-descr (contents, props changed) head/devel/p5-File-Tail-Scribe/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 2 08:09:20 2013 (r335460) +++ head/devel/Makefile Mon Dec 2 08:14:25 2013 (r335461) @@ -2019,6 +2019,7 @@ SUBDIR += p5-File-Sync SUBDIR += p5-File-Tail SUBDIR += p5-File-Tail-Dir + SUBDIR += p5-File-Tail-Scribe SUBDIR += p5-File-Temp SUBDIR += p5-File-Tempdir SUBDIR += p5-File-Touch Added: head/devel/p5-File-Tail-Scribe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Tail-Scribe/Makefile Mon Dec 2 08:14:25 2013 (r335461) @@ -0,0 +1,25 @@ +# Created by: Hung-Yi Chen +# $FreeBSD$ + +PORTNAME= File-Tail-Scribe +PORTVERSION= 0.13 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= gaod@hychen.org +COMMENT= Perl Module to tail file to Scribe server + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-File-Tail-Dir>=0:${PORTSDIR}/devel/p5-File-Tail-Dir \ + p5-Log-Dispatch-Scribe>=0:${PORTSDIR}/devel/p5-Log-Dispatch-Scribe \ + p5-Moose>=0:${PORTSDIR}/devel/p5-Moose +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-File-Tail-Scribe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Tail-Scribe/distinfo Mon Dec 2 08:14:25 2013 (r335461) @@ -0,0 +1,2 @@ +SHA256 (File-Tail-Scribe-0.13.tar.gz) = 75817c2c2d155707423fb26f5923a69dfc6834a8f532afaaf01a4069f15f8b20 +SIZE (File-Tail-Scribe-0.13.tar.gz) = 8656 Added: head/devel/p5-File-Tail-Scribe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Tail-Scribe/pkg-descr Mon Dec 2 08:14:25 2013 (r335461) @@ -0,0 +1,6 @@ +It monitors files in a given directory (or set of directories), such as +Apache log files in /var/log/httpd, and as the log files are written to, +takes the changes and sends them to a running instance of the Scribe +logging system. + +WWW: http://search.cpan.org/dist/File-Tail-Scribe/ Added: head/devel/p5-File-Tail-Scribe/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Tail-Scribe/pkg-plist Mon Dec 2 08:14:25 2013 (r335461) @@ -0,0 +1,9 @@ +bin/tail_to_scribe.pl +%%SITE_PERL%%/File/Tail/Scribe.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Tail/Scribe/.packlist +%%PERL5_MAN3%%/File::Tail::Scribe.3.gz +man/man1/tail_to_scribe.pl.1.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Tail/Scribe +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Tail +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File +@dirrmtry %%SITE_PERL%%/File