From owner-svn-ports-head@FreeBSD.ORG Thu Nov 20 10:13:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38044206; Thu, 20 Nov 2014 10:13:22 +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 23EDB51; Thu, 20 Nov 2014 10:13:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAKADMW1094979; Thu, 20 Nov 2014 10:13:22 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAKADKVp094974; Thu, 20 Nov 2014 10:13:20 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201411201013.sAKADKVp094974@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Thu, 20 Nov 2014 10:13:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372900 - in head/devel: . p5-POSIX-strftime-Compiler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2014 10:13:22 -0000 Author: kuriyama Date: Thu Nov 20 10:13:20 2014 New Revision: 372900 URL: https://svnweb.freebsd.org/changeset/ports/372900 QAT: https://qat.redports.org/buildarchive/r372900/ Log: POSIX::strftime::Compiler provides GNU C library compatible strftime(3). But this module will not affected by the system locale. This feature is useful when you want to write loggers, servers and portable applications. For generate same result strings on any locale, POSIX::strftime::Compiler wraps POSIX::strftime and converts some format characters to perl code. WWW: http://search.cpan.org/dist/POSIX-strftime-Compiler/ Added: head/devel/p5-POSIX-strftime-Compiler/ head/devel/p5-POSIX-strftime-Compiler/Makefile (contents, props changed) head/devel/p5-POSIX-strftime-Compiler/distinfo (contents, props changed) head/devel/p5-POSIX-strftime-Compiler/pkg-descr (contents, props changed) head/devel/p5-POSIX-strftime-Compiler/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 20 10:07:38 2014 (r372899) +++ head/devel/Makefile Thu Nov 20 10:13:20 2014 (r372900) @@ -2573,6 +2573,7 @@ SUBDIR += p5-POEx-Role-SessionInstantiation SUBDIR += p5-POEx-Role-Streaming SUBDIR += p5-POEx-Types + SUBDIR += p5-POSIX-strftime-Compiler SUBDIR += p5-POSIX-strptime SUBDIR += p5-PPerl SUBDIR += p5-PV Added: head/devel/p5-POSIX-strftime-Compiler/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POSIX-strftime-Compiler/Makefile Thu Nov 20 10:13:20 2014 (r372900) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= POSIX-strftime-Compiler +PORTVERSION= 0.40 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for glibc compatible strftime for loggers/servers + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= modbuild +NO_ARCH= YES + +.include Added: head/devel/p5-POSIX-strftime-Compiler/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POSIX-strftime-Compiler/distinfo Thu Nov 20 10:13:20 2014 (r372900) @@ -0,0 +1,2 @@ +SHA256 (POSIX-strftime-Compiler-0.40.tar.gz) = 7b4abbe793acc920b10ed14f9e430c69ef778e28fd59e4046d6c35d1c24b6c99 +SIZE (POSIX-strftime-Compiler-0.40.tar.gz) = 17242 Added: head/devel/p5-POSIX-strftime-Compiler/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POSIX-strftime-Compiler/pkg-descr Thu Nov 20 10:13:20 2014 (r372900) @@ -0,0 +1,10 @@ +POSIX::strftime::Compiler provides GNU C library compatible +strftime(3). But this module will not affected by the system locale. +This feature is useful when you want to write loggers, servers and +portable applications. + +For generate same result strings on any locale, +POSIX::strftime::Compiler wraps POSIX::strftime and converts some +format characters to perl code. + +WWW: http://search.cpan.org/dist/POSIX-strftime-Compiler/ Added: head/devel/p5-POSIX-strftime-Compiler/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-POSIX-strftime-Compiler/pkg-plist Thu Nov 20 10:13:20 2014 (r372900) @@ -0,0 +1,2 @@ +%%PERL5_MAN3%%/POSIX::strftime::Compiler.3.gz +%%SITE_PERL%%/POSIX/strftime/Compiler.pm