Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv3777

Added Files:
        archive-ar-pm.info test-mockobject-pm.info 
        universal-can-pm.info universal-isa-pm.info 
Log Message:
Move to 10.7.


--- NEW FILE: archive-ar-pm.info ---
Info2: <<
Package: archive-ar-pm%type_pkg[perl]
Version: 1.14
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, 
(%type_pkg[perl] = 5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] 
= 5123) 10.7, (%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, 
(%type_pkg[perl] = 588) 10.6
License: Artistic/GPL
Description: Interface for manipulating ar archives
Maintainer: Daniel Johnson <[email protected]>
Homepage: http://search.cpan.org/dist/Archive-Ar/

Source: mirror:cpan:authors/id/J/JB/JBAZIK/Archive-Ar-%v.tar.gz
Source-MD5: 33a123dfc299f33e1497b297fdc40b14

Type: perl (5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true

DocFiles: CHANGES

Depends: perl%type_pkg[perl]-core, file-spec-pm%type_pkg[perl], time-local-pm
BuildDepends: fink (>= 0.20.3), test-mockobject-pm%type_pkg[perl]

InstallScript: <<
  %{default_script}
  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
<<

--- NEW FILE: test-mockobject-pm.info ---
Info2: <<
Package: test-mockobject-pm%type_pkg[perl]
Version: 1.09
Revision: 2
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Description: Emulate troublesome interfaces
Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
License: Artistic
Maintainer: Benjamin Reed <[email protected]>

Depends: <<
        perl%type_pkg[perl]-core,
        scalar-list-utils-pm%type_pkg[perl],
        test-exception-pm,
        test-simple-pm%type_pkg[perl],
        universal-isa-pm%type_pkg[perl] (>= 0.06-1),
        universal-can-pm%type_pkg[perl] (>= 1.11-1)
<<
BuildDepends: <<
        fink (>= 0.30.2-1),
        module-build-pm%type_pkg[perl]
<<

Source: mirror:cpan:modules/by-module/Test/Test-MockObject-%v.tar.gz
Source-MD5: 3c9c2842d40fa8c389563c227804d7d8

UseMaxBuildJobs: true
DefaultScript: ModuleBuild

InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
        find %d -name .packlist -exec rm -rf {} \;
<<
DocFiles: Changes MANIFEST README

Homepage: http://search.cpan.org/dist/Test-MockObject
DescDetail: <<
It's a simple program that doesn't use any other modules, and
those are easy to test.  More often, testing a program
completely means faking up input to another module, trying to
coax the right output from something you're not supposed to be
testing anyway.

Testing is a lot easier when you can control the entire
environment.  With Test::MockObject, you can get a lot closer.

Test::MockObject allows you to create objects that conform to
particular interfaces with very little code.  You don't have
to reimplement the behavior, just the input and the output.
<<
<<


--- NEW FILE: universal-can-pm.info ---
Info2: <<
Package: universal-can-pm%type_pkg[perl]
Version: 1.16
Revision: 2
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Description: UNIVERSAL::can module hack
Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
License: Artistic
Maintainer: Benjamin Reed <[email protected]>

Depends: perl%type_pkg[perl]-core
BuildDepends: <<
        fink (>= 0.30.2-1),
        module-build-pm%type_pkg[perl],
        perl%type_pkg[perl]-core,
        test-simple-pm%type_pkg[perl],
        test-warn-pm%type_pkg[perl]
<<

Source: mirror:cpan:authors/id/C/CH/CHROMATIC/UNIVERSAL-can-%v.tar.gz
Source-MD5: 8c0ea4949453a710b4d71477c5b9fcb8

UseMaxBuildJobs: true
DefaultScript: ModuleBuild

InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
        find %d -name .packlist -exec rm -rf {} \;
<<
DocFiles: Changes MANIFEST README

Homepage: http://search.cpan.org/dist/UNIVERSAL-can
DescDetail: <<
The UNIVERSAL class provides a few default methods so that all objects
can use them.  Object orientation allows programmers to override these
methods in subclasses to provide more specific and appropriate behavior.

Some authors call methods in the UNIVERSAL class on potential invocants
as functions, bypassing any possible overriding.  This is wrong and you
should not do it.  Unfortunately, not everyone heeds this warning and
their bad code can break your good code.

This module replaces UNIVERSAL::can() with a method that checks to see
if the first argument is a valid invocant (whether an object -- a
blessed referent -- or the name of a class).  If so, and if the
invocant's class has its own can() method, it calls that as a method.
Otherwise, everything works as you might expect.

If someone attempts to call UNIVERSAL::can() as a function, this module
will emit a lexical warning (see perllexwarn) to that effect.  You can
disable it with no warnings; or no warnings 'UNIVERSAL::isa';, but don't
do that; fix the code instead.
<<
<<


--- NEW FILE: universal-isa-pm.info ---
Info4: <<
Package: universal-isa-pm%type_pkg[perl]
Version: 1.03
Revision: 2
Architecture: (%type_pkg[perl] = 581) powerpc, (%type_pkg[perl] = 584) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 584) 10.4, 
(%type_pkg[perl] = 586) 10.4, (%type_pkg[perl] = 586) 10.5, (%type_pkg[perl] = 
5100) 10.5, (%type_pkg[perl] = 5100) 10.6, (%type_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Description: UNIVERSAL::isa module hack
Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
License: Artistic
Maintainer: Benjamin Reed <[email protected]>

Depends: <<
        perl%type_pkg[perl]-core,
        scalar-list-utils-pm%type_pkg[perl]
<<
BuildDepends: <<
        fink (>= 0.30.2-1),
        module-build-pm%type_pkg[perl]
<<

Source: mirror:cpan:modules/by-module/UNIVERSAL/UNIVERSAL-isa-%v.tar.gz
Source-MD5: 0643f2e04cd0b5739fc0908af291c609

UseMaxBuildJobs: true
DefaultScript: ModuleBuild

InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
find %d -name .packlist -exec rm -rf {} \;
<<
DocFiles: Changes README

Homepage: http://search.cpan.org/dist/UNIVERSAL-isa
DescDetail: <<
Whenever you use "isa" in UNIVERSAL as a function, a kitten using
Test::MockObject dies.  Normally, the kittens would be helpless,
but if they use UNIVERSAL::isa (the module whose docs you are
reading), the kittens can live long and prosper.

This module replaces UNIVERSAL::isa with a version that makes sure
that if it's called as a function on objects which override isa,
isa will be called on those objects as a method.
<<
<<



------------------------------------------------------------------------------
BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
The must-attend event for mobile developers. Connect with experts. 
Get tools for creating Super Apps. See the latest technologies.
Sessions, hands-on labs, demos & much more. Register early & save!
http://p.sf.net/sfu/rim-blackberry-1
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to