summaryrefslogtreecommitdiff
path: root/devel/p5-Heap
AgeCommit message (Collapse)AuthorFilesLines
2007-02-06Update devel/p5-Heap from 0.50 to 0.71abs2-7/+6
0.60 Sun Nov 16 16:58:12 EST 2003 - ensured that $elem->heap can be tested for undef to determine whether it is actually on a heap at the moment - requested by Dan Bolser <dmb@mrc-dunn.cam.ac.uk> - fixed bug in Heap::Binary delete - noted by Arun Bhalla <bhalla@uiuc.edu> - changes to t/test.t - added tests for delete - made test run against all Heap variants - made test configurable to get a small test case for solving bugs - fixed bug in Heap::Binomial delete - Heap::Fibonacci delete worked in tests 0.70 Fri Dec 5 00:55:41 EST 2003 - finally got around to renaming minimum and extract_minimum methods to top and extract_top - prompted by Steve Lembark <lembark@wrkhors.com> - old names are still supported, but depracated 0.71 Thu Jun 17 12:25:36 EDT 2004 - fixed a memory leak in Heap::Fibonacci - the DESTROY method did'nt traverse fully - one final reference to extract_minimum in doc for Heap.pm - both issues reported by Christian Plessl <plessl@tik.ee.ethz.ch>
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-1/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-04-25Bl3ify and enable pkgviews installation.minskim1-2/+4
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-10-13Use buildlink2. Use perl5/module.mk.seb1-5/+2
2002-08-28Initial import of p5-Heap-0.50 version 0.50 into the Packages Collection. seb4-0/+37
This is a collection of perl routines for managing a heap data structure. There are two major components: a heap component, and an element component. A heap package basically keeps a collection of elements and is able to return the smallest one. The heap component interface is defined in Heap(3) and must be supported by all heap packages. Currently there are three heap components provided: Heap::Fibonacci (the preferred one) Heap::Binomial Heap::Binary