From owner-svn-ports-all@freebsd.org Sun Jul 29 19:11:50 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 539FC105EA2A; Sun, 29 Jul 2018 19:11:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 119E08DC18; Sun, 29 Jul 2018 19:11:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68FB719D53; Sun, 29 Jul 2018 19:11:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6TJBk8e042125; Sun, 29 Jul 2018 19:11:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6TJBj5e042122; Sun, 29 Jul 2018 19:11:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201807291911.w6TJBj5e042122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 29 Jul 2018 19:11:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475709 - head/devel/p5-File-Temp X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-File-Temp X-SVN-Commit-Revision: 475709 X-SVN-Commit-Repository: ports 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.27 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: Sun, 29 Jul 2018 19:11:50 -0000 Author: sunpoet Date: Sun Jul 29 19:11:45 2018 New Revision: 475709 URL: https://svnweb.freebsd.org/changeset/ports/475709 Log: Update to 0.2308 - Update pkg-descr - Take maintainership Changes: https://metacpan.org/changes/distribution/File-Temp Modified: head/devel/p5-File-Temp/Makefile head/devel/p5-File-Temp/distinfo head/devel/p5-File-Temp/pkg-descr Modified: head/devel/p5-File-Temp/Makefile ============================================================================== --- head/devel/p5-File-Temp/Makefile Sun Jul 29 19:11:39 2018 (r475708) +++ head/devel/p5-File-Temp/Makefile Sun Jul 29 19:11:45 2018 (r475709) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= File-Temp -PORTVERSION= 0.2306 +PORTVERSION= 0.2308 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= perl@FreeBSD.org -COMMENT= Perl5 module to generate temporary files or directories safely +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate temporary files or directories safely LICENSE= ART10 GPLv1+ LICENSE_COMB= dual Modified: head/devel/p5-File-Temp/distinfo ============================================================================== --- head/devel/p5-File-Temp/distinfo Sun Jul 29 19:11:39 2018 (r475708) +++ head/devel/p5-File-Temp/distinfo Sun Jul 29 19:11:45 2018 (r475709) @@ -1,3 +1,3 @@ -TIMESTAMP = 1530085410 -SHA256 (File-Temp-0.2306.tar.gz) = 65e992d9e3093e8a66221f6a292d04431b05c91c29cdd86b5f7b5952f1bd8294 -SIZE (File-Temp-0.2306.tar.gz) = 76929 +TIMESTAMP = 1532803507 +SHA256 (File-Temp-0.2308.tar.gz) = 1ca1cb22e2ab1592e864b17c861113b5960e54d398726befc90559fb8df8d1d4 +SIZE (File-Temp-0.2308.tar.gz) = 77022 Modified: head/devel/p5-File-Temp/pkg-descr ============================================================================== --- head/devel/p5-File-Temp/pkg-descr Sun Jul 29 19:11:39 2018 (r475708) +++ head/devel/p5-File-Temp/pkg-descr Sun Jul 29 19:11:45 2018 (r475709) @@ -1,6 +1,7 @@ -File::Temp is a Perl5 module which can be used to generate temporary files -(providing a filename and filehandle) or directories. Possible race -conditions are avoided and some security checks are performed (e.g. making -sure the sticky bit is set on world writeable temp directories). +File::Temp can be used to create and open temporary files in a safe way. There +is both a function interface and an object-oriented interface. The File::Temp +constructor or the tempfile() function can be used to return the name and the +open filehandle of a temporary file. The tempdir() function can be used to +create a temporary directory. WWW: https://metacpan.org/release/File-Temp