Commit graph

17 commits

Author SHA1 Message Date
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +00:00
he
b021813da0 Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-19 19:17:40 +00:00
he
05745dd062 Update from version 0.71 to 0.80.
Pkgsrc change: add HOMEPAGE pointing into search.cpan.org.

Upstream changes:

0.80  Sat Apr 28 12:25:51 EDT 2007
	- accepted (finally) all of the changes submitted by Tels++
	- Heap::Elem gets proper new() method too, others all inherit it
	- made cmp, val and heap methods use @_ for speed (as suggested
	  by Tels++)

0.72  Fri Jul  8 09:05:04 CET 2005 (Tels)
	- moved file to lib/ and t/ to remove clutter and simplify build
	- rewrite most test files to use Test::More
	- change test files to load this version, not currently installed one
	- added tests for the various other .pm files
	- removed unnec. require Autoloader and comments about autoloading
	- remove "perl extension" from ABSTRACTs
	- Heap::Elem gets proper heap() and val() routines, the
	  other subclasses (Heap::Elem::Num etc) now simple inherit them
2008-07-20 21:53:32 +00:00
joerg
3b0d97b0de Add DESTDIR support. 2008-06-20 01:09:05 +00:00
jlam
56ba4d2690 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
2007-10-25 16:54:26 +00:00
abs
07df757d3c Update devel/p5-Heap from 0.50 to 0.71
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>
2007-02-06 18:43:27 +00:00
jlam
9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
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.
2006-03-04 21:28:51 +00:00
jlam
7fbb8d9527 Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
2005-08-06 06:19:03 +00:00
jlam
7a6521287b Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
2005-07-13 18:01:18 +00:00
tv
f816d81489 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:44:48 +00:00
agc
4a3d2f7ce2 Add RMD160 digests. 2005-02-23 22:24:08 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
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-12-20 11:30:55 +00:00
minskim
cf882d1fb5 Bl3ify and enable pkgviews installation. 2004-04-25 03:10:53 +00:00
grant
4083b24390 s/netbsd.org/NetBSD.org/ 2003-07-17 21:31:04 +00:00
jschauma
e366d0c694 Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.
2003-06-02 01:15:31 +00:00
seb
25e9e6b0ea Use buildlink2. Use perl5/module.mk. 2002-10-13 22:22:45 +00:00
seb
71c877109e Initial import of p5-Heap-0.50 version 0.50 into the Packages Collection.
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
2002-08-28 19:23:55 +00:00