1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

- Update from v0.82 to v0.84

0.84 May29, 2006

- The XS version of the code used Carp::croak to report failures,
while the Perl version used Carp::confess. The module has always been
documented as using confess, so now the XS version uses this.

- The new compiler detection code always returned false if you didn't
have ExtUtils::CBuilder installed.

0.83 May 28, 2006

- Change how C compiler detection is done in the Makefile.PL so it
does not rely on having make on the system. The new way should work on
(most?) Unix and Win32 systems. Suggested by David Golden. See RT
18969 (for DateTime.pm, but equally applicable to this module). Will
hopefully fix RT 17644.

- Previously, if a parameter was undefined, regex checks for that
parameter always failed. However, it's quite possible for a regex to
successfully match an undefined value (qr/^$/, for example). Now the
code treats undef as an empty string ('') in regex checks. Reported by
Duncan Salada.

PR:		ports/98304
Submitted by:	aaron
Reviewed by:	maintainer
Approved by:	maintainer, tobez (implicit)
This commit is contained in:
Aaron Dalton 2006-06-02 18:17:54 +00:00
parent aac2c526ff
commit dfe9fe37ec
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=164233
3 changed files with 10 additions and 4 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= Params-Validate
PORTVERSION= 0.82
PORTVERSION= 0.84
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Devel/DROLSKY
@ -27,4 +27,8 @@ BUILD_DEPENDS+= ${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribut
RUN_DEPENDS+= ${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers
.endif
.if ${PERL_LEVEL} < 500600
BUILD_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple
.endif
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (Params-Validate-0.82.tar.gz) = f83a21a6674890f243d2c43f98fe236c
SHA256 (Params-Validate-0.82.tar.gz) = b4fb2bed367c5da758bf267c1ab6bf303af0a9a7a0dac8aa76b11f8d04412c36
SIZE (Params-Validate-0.82.tar.gz) = 55542
MD5 (Params-Validate-0.84.tar.gz) = a05efe9864d7cae546697374ee35bc47
SHA256 (Params-Validate-0.84.tar.gz) = ca31209bc6a100a1daf309d9815fa6685f9f585530d6d793f4872b3cb74a9497
SIZE (Params-Validate-0.84.tar.gz) = 56224

View File

@ -7,3 +7,5 @@ that it is an object of a certain class hierarchy, that it possesses
certain methods, or applying validation callbacks to arguments.
WWW: http://search.cpan.org/dist/Params-Validate/
Authors: Dave Rolsky, <autarch@urth.org>
Ilya Martynov <ilya@martynov.org>