svn commit: r310053 - in head/devel: . p5-File-FcntlLock
Tom Judge
tj at FreeBSD.org
Mon Jan 7 19:37:56 UTC 2013
Author: tj
Date: Mon Jan 7 19:37:10 2013
New Revision: 310053
URL: http://svnweb.freebsd.org/changeset/ports/310053
Log:
FcntlLock is a module to do file locking in an object oriented fashion using
the fcntl(2) system call. This allows locks on parts of a file as well as on
the whole file and overcomes some known problems with flock(2), on which Perls
flock() function is based by default.
WWW: http://search.cpan.org/dist/File-FcntlLock/
Added:
head/devel/p5-File-FcntlLock/
head/devel/p5-File-FcntlLock/Makefile (contents, props changed)
head/devel/p5-File-FcntlLock/distinfo (contents, props changed)
head/devel/p5-File-FcntlLock/pkg-descr (contents, props changed)
head/devel/p5-File-FcntlLock/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Mon Jan 7 19:25:25 2013 (r310052)
+++ head/devel/Makefile Mon Jan 7 19:37:10 2013 (r310053)
@@ -1919,6 +1919,7 @@
SUBDIR += p5-File-Dir-Dumper
SUBDIR += p5-File-DirSync
SUBDIR += p5-File-ExtAttr
+ SUBDIR += p5-File-FcntlLock
SUBDIR += p5-File-Find-Closures
SUBDIR += p5-File-Find-Object
SUBDIR += p5-File-Find-Rule
Added: head/devel/p5-File-FcntlLock/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-File-FcntlLock/Makefile Mon Jan 7 19:37:10 2013 (r310053)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+#
+
+PORTNAME= File-FcntlLock
+PORTVERSION= 0.14
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= tj at FreeBSD.org
+COMMENT= Perl5 module for file locking with fcntl
+
+PERL_CONFIGURE= yes
+
+MAN3= File::FcntlLock.3
+
+.include <bsd.port.mk>
Added: head/devel/p5-File-FcntlLock/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-File-FcntlLock/distinfo Mon Jan 7 19:37:10 2013 (r310053)
@@ -0,0 +1,2 @@
+SHA256 (File-FcntlLock-0.14.tar.gz) = a849e6d7cde012a2699a923918bf73f9bc8dd240c69fc42f0e985739cbd31194
+SIZE (File-FcntlLock-0.14.tar.gz) = 9622
Added: head/devel/p5-File-FcntlLock/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-File-FcntlLock/pkg-descr Mon Jan 7 19:37:10 2013 (r310053)
@@ -0,0 +1,6 @@
+FcntlLock is a module to do file locking in an object oriented fashion using
+the fcntl(2) system call. This allows locks on parts of a file as well as on
+the whole file and overcomes some known problems with flock(2), on which Perls
+flock() function is based by default.
+
+WWW: http://search.cpan.org/dist/File-FcntlLock/
Added: head/devel/p5-File-FcntlLock/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-File-FcntlLock/pkg-plist Mon Jan 7 19:37:10 2013 (r310053)
@@ -0,0 +1,7 @@
+%%SITE_PERL%%/%%PERL_ARCH%%/File/FcntlLock.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/FcntlLock/.packlist
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/FcntlLock/FcntlLock.so
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/FcntlLock/FcntlLock.bs
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/FcntlLock
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/File
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File
More information about the svn-ports-all
mailing list