From owner-svn-ports-all@FreeBSD.ORG Sat May 16 11:11:10 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 25BAB601; Sat, 16 May 2015 11:11:10 +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 155901961; Sat, 16 May 2015 11:11:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4GBB9rv001779; Sat, 16 May 2015 11:11:09 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4GBB8DI001624; Sat, 16 May 2015 11:11:08 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201505161111.t4GBB8DI001624@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Sat, 16 May 2015 11:11:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386517 - in head/devel: . p5-IO-File-AtomicChange 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.20 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: Sat, 16 May 2015 11:11:10 -0000 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@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 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