mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add p5-Time-Duration-Parse 0.02, parse string that represents time
duration. PR: ports/100470 Submitted by: Gea-Suan Lin <gslin at gslin.org>
This commit is contained in:
parent
117d600017
commit
f7e724f6bb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=168192
5 changed files with 55 additions and 0 deletions
|
@ -1365,6 +1365,7 @@
|
|||
SUBDIR += p5-Tie-iCal
|
||||
SUBDIR += p5-Time-Clock
|
||||
SUBDIR += p5-Time-Duration
|
||||
SUBDIR += p5-Time-Duration-Parse
|
||||
SUBDIR += p5-Time-HiRes
|
||||
SUBDIR += p5-Time-Local
|
||||
SUBDIR += p5-Time-Object
|
||||
|
|
30
devel/p5-Time-Duration-Parse/Makefile
Normal file
30
devel/p5-Time-Duration-Parse/Makefile
Normal file
|
@ -0,0 +1,30 @@
|
|||
# New ports collection makefile for: p5-Time-Duration-Parse
|
||||
# Date created: 2006-07-18
|
||||
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Time-Duration-Parse
|
||||
PORTVERSION= 0.02
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Time
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= gslin@gslin.org
|
||||
COMMENT= Parse string that represents time duration
|
||||
|
||||
RUN_DEPENDS= ${SITE_PERL}/Exporter/Lite.pm:${PORTSDIR}/devel/p5-Exporter-Lite
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Time::Duration::Parse.3
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
IGNORE= requires perl 5.6.0 or later. Install lang/perl5.8 and try again
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
devel/p5-Time-Duration-Parse/distinfo
Normal file
3
devel/p5-Time-Duration-Parse/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Time-Duration-Parse-0.02.tar.gz) = 56e1c1674a5180d32927a130fd739d96
|
||||
SHA256 (Time-Duration-Parse-0.02.tar.gz) = 620fcf34768ee636beeb6600d966f272ac10a92907f0dae384f9ae32275bdf5a
|
||||
SIZE (Time-Duration-Parse-0.02.tar.gz) = 17725
|
13
devel/p5-Time-Duration-Parse/pkg-descr
Normal file
13
devel/p5-Time-Duration-Parse/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
Time::Duration::Parse is a module to parse human readable duration
|
||||
strings like 2 minutes and 3 seconds to seconds.
|
||||
|
||||
It does the opposite of duration_exact function in Time::Duration and
|
||||
is roundtrip safe. So, the following is always true.
|
||||
|
||||
use Time::Duration::Parse;
|
||||
use Time::Duration;
|
||||
|
||||
my $seconds = int rand 100000;
|
||||
is( parse_duration(duration_exact($seconds)), $seconds );
|
||||
|
||||
WWW: http://search.cpan.org/dist/Time-Duration-Parse/
|
8
devel/p5-Time-Duration-Parse/pkg-plist
Normal file
8
devel/p5-Time-Duration-Parse/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
@comment $FreeBSD$
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Time/Duration/Parse/.packlist
|
||||
%%SITE_PERL%%/Time/Duration/Parse.pm
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Time/Duration/Parse
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Time/Duration
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Time
|
||||
@dirrmtry %%SITE_PERL%%/Time/Duration
|
||||
@dirrmtry %%SITE_PERL%%/Time
|
Loading…
Add table
Reference in a new issue