NOTICE: This package has been removed from pkgsrc

./wip/p5-Sub-Override, Perl extension for easily overriding subroutines

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.08, Package name: p5-Sub-Override-0.08, Maintainer: kuli0020

Sub::Override allows the programmer to simply name the sub to replace
and to supply a sub to replace it with.

my $override = Sub::Override->new('Some::sub', sub {'new data'});

# which is equivalent to:
my $override = Sub::Override->new;
$override->replace('Some::sub', sub { 'new data' });


Required to run:
[lang/perl5] [devel/p5-Test-Exception] [devel/p5-Sub-Uplevel]

Master sites: (Expand)

SHA1: ef701f091329c9d7c3f973cc42afc0808c0feedc
RMD160: 39805cceb4bf9b5472dc1a38da87386e44111375
Filesize: 5.395 KB

Version history: (Expand)


CVS history: (Expand)


   2008-10-12 19:37:30 by abs | Files touched by this commit (48) | Package removed
Log message:
Renmove the following packages which are available in main pkgsrc
(and update any DEPENDS lines to match)
    p5-CLASS
    p5-Email-FolderType
    p5-Email-LocalDelivery
    p5-Exporter-Lite
    p5-File-MMagic-XS
    p5-File-Path-Expand
    p5-HTML-TokeParser-Simple
    p5-MARC-Record
    p5-Net-Z3950-ZOOM
    p5-Sub-Override
    p5-Test-MockModule
    p5-Tie-Array-Sorted
    p5-aliased
   2008-05-30 14:22:19 by abs | Files touched by this commit (64)
Log message:
Remove unnecessary (empty) PLIST files for p5-* packages
   2006-04-13 22:11:21 by Roman Kulik | Files touched by this commit (1)
Log message:
Removed WWW: line from DESCR file.
   2006-03-09 18:47:45 by Roman Kulik | Files touched by this commit (4) | Imported package
Log message:
Sub::Override allows the programmer to simply name the sub to replace
and to supply a sub to replace it with.

  my $override = Sub::Override->new('Some::sub', sub {'new data'});

    # which is equivalent to:
      my $override = Sub::Override->new;
        $override->replace('Some::sub', sub { 'new data' });

	WWW: http://search.cpan.org/dist/Sub-Override/