svn commit: r386517 - in head/devel: . p5-IO-File-AtomicChange
Jun Kuriyama
kuriyama at FreeBSD.org
Sat May 16 11:11:10 UTC 2015
Author: kuriyama
Date: Sat May 16 11:11:08 2015
New Revision: 386517
URL: https://svnweb.freebsd.org/changeset/ports/386517
Log:
IO::File::AtomicChange - change content of a file atomically.
This module truncate and write to temporary file. When you call
$fh->close, replace target file with temporary file preserved
permission and owner (if possible).
WWW: http://search.cpan.org/dist/IO-File-AtomicChange/
Added:
head/devel/p5-IO-File-AtomicChange/
head/devel/p5-IO-File-AtomicChange/Makefile (contents, props changed)
head/devel/p5-IO-File-AtomicChange/distinfo (contents, props changed)
head/devel/p5-IO-File-AtomicChange/pkg-descr (contents, props changed)
head/devel/p5-IO-File-AtomicChange/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat May 16 11:03:29 2015 (r386516)
+++ head/devel/Makefile Sat May 16 11:11:08 2015 (r386517)
@@ -2249,6 +2249,7 @@
SUBDIR += p5-IO-Digest
SUBDIR += p5-IO-Event
SUBDIR += p5-IO-FDPass
+ SUBDIR += p5-IO-File-AtomicChange
SUBDIR += p5-IO-HTML
SUBDIR += p5-IO-Handle-Util
SUBDIR += p5-IO-Interactive
Added: head/devel/p5-IO-File-AtomicChange/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-IO-File-AtomicChange/Makefile Sat May 16 11:11:08 2015 (r386517)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= IO-File-AtomicChange
+PORTVERSION= 0.05
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= kuriyama at FreeBSD.org
+COMMENT= Perl extension to change content of a file atomically
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+RUN_DEPENDS= \
+ p5-File-Sync>0:${PORTSDIR}/devel/p5-File-Sync \
+ p5-Path-Class>0:${PORTSDIR}/devel/p5-Path-Class
+BUILD_DEPENDS= ${RUN_DEPENDS}
+
+USES= perl5
+USE_PERL5= configure
+NO_ARCH= YES
+
+.include <bsd.port.mk>
Added: head/devel/p5-IO-File-AtomicChange/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-IO-File-AtomicChange/distinfo Sat May 16 11:11:08 2015 (r386517)
@@ -0,0 +1,2 @@
+SHA256 (IO-File-AtomicChange-0.05.tar.gz) = 57ef0504884891a56c06f18cd39b99a4925f4bdf74407ec9d68e8c6bbe2049b3
+SIZE (IO-File-AtomicChange-0.05.tar.gz) = 28172
Added: head/devel/p5-IO-File-AtomicChange/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-IO-File-AtomicChange/pkg-descr Sat May 16 11:11:08 2015 (r386517)
@@ -0,0 +1,7 @@
+IO::File::AtomicChange - change content of a file atomically.
+
+This module truncate and write to temporary file. When you call
+$fh->close, replace target file with temporary file preserved
+permission and owner (if possible).
+
+WWW: http://search.cpan.org/dist/IO-File-AtomicChange/
Added: head/devel/p5-IO-File-AtomicChange/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-IO-File-AtomicChange/pkg-plist Sat May 16 11:11:08 2015 (r386517)
@@ -0,0 +1,2 @@
+%%PERL5_MAN3%%/IO::File::AtomicChange.3.gz
+%%SITE_PERL%%/IO/File/AtomicChange.pm
More information about the svn-ports-all
mailing list