Commit graph

19 commits

Author SHA1 Message Date
wiz
7eeb51b534 Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
2014-05-29 23:35:13 +00:00
wen
d750312596 Update to 0.30
Upstream changes:
0.30  2013-06-24
    - doy/data-visitor should probably be the canonical repository at this
      point

0.29  2013-06-24
    - The class callbacks to be run for an object are now chosen once, at the
      start of visiting that object. Previously, it always looked through the
      entire list of callbacks every time, in a loop in which the object in
      question could be changed by the callback. Since the class callbacks are
      only partially ordered, this lead to differences in whether a callback
      would be called or not based on hash order. reported by Robin Smidsrd.
2013-07-27 01:09:52 +00:00
wiz
d2ca14a3f1 Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
2013-05-31 12:39:57 +00:00
asau
e1ab7079b6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-31 11:16:30 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
sno
6e37c67e41 Updating package for Perl 5 module Data::Visitor from CPAN in
devel/p5-Data-Visitor from 0.27nb2 to 0.28.

pkgsrc changes:
- adjust dependencies

Upstream changes:
0.28  2012-02-12
    - convert to dzil
    - bump namespace::clean dep
    - better error message if Data::Alias isn't found
    - doc fixes
2012-07-18 09:12:21 +00:00
adam
d0125ef359 Revision bump after updating perl to 5.14.1 2011-08-12 06:39:40 +00:00
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
sno
1ebedabeae Updating devel/p5-Data-Visitor from 0.26nb1 to 0.27
pkgsrc changes:
- Adjust dependencies

Upstream changes:
0.27
    - Improve synopsis of Data::Visitor::Callback.
    - Remove the Test::MockObject dependency.
2010-02-15 15:09:57 +00:00
sno
15707ea5a1 Bumping revision of packages which depend direct or indirect on
devel/p5-Class-MOP. A late detected incompible change forced it.
2009-09-24 06:50:10 +00:00
sno
a694207546 Updating devel/p5-Data-Visitor from 0.25 to 0.26
pkgsrc changes:
  - Correcting license definition
  - Adjusting dependencies

Upstream changes:
0.26
	- remove Any::Moose, one too many failures to subclass. When/if
	  Mouse can be subclassed by Moose we can consider putting it back
2009-09-12 20:24:12 +00:00
sno
717a4d15df pkgsrc changes:
- Updating package for p5 module Data::Visitor from 0.24 to 0.25
  - Setting gnu-gpl-v2 as license
  - Adjusting dependencies accoring to META.yml

Upstream changes:
0.25
	- Depend on Any::Moose 0.09, which pulls in Mouse 0.21, avoiding warnings
	  related to compute_all_applicable_attributes (rafl)
2009-05-20 21:35:15 +00:00
abs
11c32c6afb Updated devel/p5-Data-Visitor to 0.24
0.24
- use get_all_attributes instead of the deprecated
  compute_all_applicable_attributes (rafl)

0.23
- Switch to Any::Moose
2009-04-29 20:42:09 +00:00
he
e44059a401 Update from version 0.21 to 0.22.
Pkgsrc changes:
 o Remove dependenc on Class::Accessor, it does not appear to be needed

Upstream changes:

0.22
	- add a no warnings 'recursion', deep recursion is legitimate
	  in most cases
2008-12-20 21:04:13 +00:00
he
9e00da817a Update from version 0.18nb1 to 0.21.
Pkgsrc changes:
 o Convert some BUILD_DEPENDS to DEPENDS, in accordance with META.yml
 o Update the dependency on p5-Mouse

Upstream changes:

0.21
	- Fix a bug in Data::Visitor::Callback WRT returning non
	  reference values from callbacks (#38306).
	- Refactor the visit_tied split
	- Propagation of void context

0.20
	- Split visit_tied into methods per each reftype, to make it possible to
	  return something that is an object but still doesn't get tied.

0.19
	- Support multiple arguments to visit()
	- use BUILDARGS for argument processing
	- remove Data::Alias dep for now, it breaks on windows & aix with 5.8.8
2008-11-02 19:19:36 +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
43cadf74ed Update from version 0.17 to 0.18.
Pkgsrc changes:
Add numerous dependencies, recently added to pkgsrc.

Upstream changes:

0.18
	- Weak reference support
2008-07-22 23:59:14 +00:00
rhaen
99dffe869a updated to 0.17
ChangeLog:
0.17
	- More void context correctness fixes WRT tied values
	- Overzealous seen value mappings made by Callback were removed

0.16
	- Fix passing of void context when visiting hashes/arrays (perf
	  optimization to avoid unnecessary cloning)
	- Added 'visit_seen' and a 'seen' callback for circular structures
	- Class callbacks are now fired from least derived to most derived, not in
	  hash key order
2008-07-21 13:35:32 +00:00
abs
f5b8ed1c47 Added devel/p5-Data-Visitor version 0.15
This module is a simple visitor implementation for Perl values.

It has a main dispatcher method, visit, which takes a single perl
value and then calls the methods appropriate for that value.
2008-07-14 09:24:35 +00:00