diff options
author | heinz <heinz> | 2004-02-18 00:06:07 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-02-18 00:06:07 +0000 |
commit | 98de02e5703b18819042b061ed6cc7869442f841 (patch) | |
tree | 0442aa98b8341de17507a14511071c9db838e2dc | |
parent | 29f8df6a9b92bef51e8220a99da43c16408cc4fd (diff) | |
download | pkgsrc-98de02e5703b18819042b061ed6cc7869442f841.tar.gz |
Update of p5-MLDBM to 2.01.
Changes since version 2.0:
==========================
item 2.01 (07 July 2002)
New testing method MLDBM::_compare($a, $b) used in t/*.t
scripts to verify data structures are identical. In
perl 5.8.0 RC2, the order of hashes changed, making the prior
hard coded test case string comparisons invalid, so created
this more flexible method for testing that should work in
future releases, without relying on specific hash ordering.
-rw-r--r-- | databases/p5-MLDBM/Makefile | 9 | ||||
-rw-r--r-- | databases/p5-MLDBM/distinfo | 7 | ||||
-rw-r--r-- | databases/p5-MLDBM/patches/patch-aa | 13 |
3 files changed, 8 insertions, 21 deletions
diff --git a/databases/p5-MLDBM/Makefile b/databases/p5-MLDBM/Makefile index ca3078ef72c..b33b4c59116 100644 --- a/databases/p5-MLDBM/Makefile +++ b/databases/p5-MLDBM/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2003/07/21 16:39:11 martti Exp $ +# $NetBSD: Makefile,v 1.12 2004/02/18 00:06:07 heinz Exp $ # -DISTNAME= MLDBM-2.00 -PKGNAME= p5-MLDBM-2.00 +DISTNAME= MLDBM-2.01 +PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5mld CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MLDBM/} @@ -13,7 +13,8 @@ COMMENT= Perl5 module for storing arbitrary data in tied hashes DEPENDS+= {p5-Data-Dumper-[0-9]*,perl>=5.6.1nb2}:${PERL5_PKGSRCDIR} -USE_BUILDLINK2= YES +USE_BUILDLINK3= YES +USE_LANGUAGES= # empty PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/MLDBM/.packlist post-patch: diff --git a/databases/p5-MLDBM/distinfo b/databases/p5-MLDBM/distinfo index 3a011d93a31..c5b8b07b589 100644 --- a/databases/p5-MLDBM/distinfo +++ b/databases/p5-MLDBM/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.2 2001/04/18 16:11:02 agc Exp $ +$NetBSD: distinfo,v 1.3 2004/02/18 00:06:08 heinz Exp $ -SHA1 (MLDBM-2.00.tar.gz) = f9b500c872b2e639c1e9818b05a95f2deeaf6d16 -Size (MLDBM-2.00.tar.gz) = 8678 bytes -SHA1 (patch-aa) = fb01765941628c7d9d3c87663eecdc3ff0971719 +SHA1 (MLDBM-2.01.tar.gz) = 01e35634dee973d03a24cc8417587b2fbc5b39d3 +Size (MLDBM-2.01.tar.gz) = 9568 bytes diff --git a/databases/p5-MLDBM/patches/patch-aa b/databases/p5-MLDBM/patches/patch-aa deleted file mode 100644 index b6afb3845f3..00000000000 --- a/databases/p5-MLDBM/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2001/04/02 14:33:50 agc Exp $ - ---- lib/MLDBM.pm.orig Sun May 10 18:06:39 1998 -+++ lib/MLDBM.pm -@@ -255,7 +255,7 @@ - - B<MLDBM> relies on an underlying TIEHASH implementation (usually a - DBM package), and an underlying serialization package. The respective --defaults are B<SDBM_File> and D<Data::Dumper>. Both of these defaults -+defaults are B<SDBM_File> and B<Data::Dumper>. Both of these defaults - can be changed. Changing the B<SDBM_File> default is strongly recommended. - See L<WARNINGS> below. - |