From owner-svn-ports-all@FreeBSD.ORG Thu Jan 1 16:06:27 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 3C94E287; Thu, 1 Jan 2015 16:06: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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2877366FEA; Thu, 1 Jan 2015 16:06:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t01G6ReY001235; Thu, 1 Jan 2015 16:06:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t01G6Pix001229; Thu, 1 Jan 2015 16:06:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201501011606.t01G6Pix001229@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 1 Jan 2015 16:06:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375932 - in head/devel: . p5-File-Flock-Retry 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, 01 Jan 2015 16:06:27 -0000 Author: sunpoet Date: Thu Jan 1 16:06:24 2015 New Revision: 375932 URL: https://svnweb.freebsd.org/changeset/ports/375932 QAT: https://qat.redports.org/buildarchive/r375932/ Log: - Add p5-File-Flock-Retry 0.59 File::Flock::Retry is yet another flock module. It is a more lightweight alternative to File::Flock with some other differences: - OO interface only - Autoretry (by default for 60s) when trying to acquire lock WWW: http://search.cpan.org/dist/File-Flock-Retry/ Added: head/devel/p5-File-Flock-Retry/ head/devel/p5-File-Flock-Retry/Makefile (contents, props changed) head/devel/p5-File-Flock-Retry/distinfo (contents, props changed) head/devel/p5-File-Flock-Retry/pkg-descr (contents, props changed) head/devel/p5-File-Flock-Retry/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jan 1 16:05:33 2015 (r375931) +++ head/devel/Makefile Thu Jan 1 16:06:24 2015 (r375932) @@ -2062,6 +2062,7 @@ SUBDIR += p5-File-Finder SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock + SUBDIR += p5-File-Flock-Retry SUBDIR += p5-File-FnMatch SUBDIR += p5-File-Grep SUBDIR += p5-File-HStore Added: head/devel/p5-File-Flock-Retry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Flock-Retry/Makefile Thu Jan 1 16:06:24 2015 (r375932) @@ -0,0 +1,24 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= File-Flock-Retry +PORTVERSION= 0.59 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Yet another flock module + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Rinci>=1.1.0:${PORTSDIR}/devel/p5-Rinci +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-File-Slurp-Tiny>=0:${PORTSDIR}/devel/p5-File-Slurp-Tiny \ + p5-File-chdir>=0:${PORTSDIR}/devel/p5-File-chdir + +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-File-Flock-Retry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Flock-Retry/distinfo Thu Jan 1 16:06:24 2015 (r375932) @@ -0,0 +1,2 @@ +SHA256 (File-Flock-Retry-0.59.tar.gz) = a30292b999a05e6e69edb584337e46764ec5f3a404b4f8f124498ba0a52bbfc9 +SIZE (File-Flock-Retry-0.59.tar.gz) = 14431 Added: head/devel/p5-File-Flock-Retry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Flock-Retry/pkg-descr Thu Jan 1 16:06:24 2015 (r375932) @@ -0,0 +1,6 @@ +File::Flock::Retry is yet another flock module. It is a more lightweight +alternative to File::Flock with some other differences: +- OO interface only +- Autoretry (by default for 60s) when trying to acquire lock + +WWW: http://search.cpan.org/dist/File-Flock-Retry/ Added: head/devel/p5-File-Flock-Retry/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-File-Flock-Retry/pkg-plist Thu Jan 1 16:06:24 2015 (r375932) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/File/Flock/Retry.pm +%%PERL5_MAN3%%/File::Flock::Retry.3.gz