Update of /cvsroot/fink/experimental/jessealama/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24055

Added Files:
        digest-sha-pm.info digest-sha1-pm.info module-runtime-pm.info 
        parent-pm.info 
Log Message:
Adding to the pile of packages building toward a fuller ikiwiki package.

Need eyes and brains.  And 10.5 Macs.


--- NEW FILE: parent-pm.info ---
Info2: <<
Package: parent-pm%type_pkg[perl]
Version: 0.223
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
License: Artistic
Description: Establish ISA relationships at compile time
DescDetail: <<

Allows you to both load one or more modules, while setting up
inheritance from those modules at the same time. Mostly similar in
effect to

  package Baz;
  BEGIN {
      require Foo;
      require Bar;
      push @ISA, qw(Foo Bar);
  }

By default, every base class needs to live in a file of its own. If
you want to have a subclass and its parent class in the same file, you
can tell parent not to load any modules by using the -norequire
switch:

  package Foo;
  sub exclaim { "I CAN HAS PERL" }

  package DoesNotLoadFooBar;
  use parent -norequire, 'Foo', 'Bar';
  # will not go looking for Foo.pm or Bar.pm

This is equivalent to the following code:

  package Foo;
  sub exclaim { "I CAN HAS PERL" }

  package DoesNotLoadFooBar;
  push @DoesNotLoadFooBar::ISA, 'Foo', 'Bar';

This is also helpful for the case where a package lives within a
differently named file:

  package MyHash;
  use Tie::Hash;
  use parent -norequire, 'Tie::StdHash';

This is equivalent to the following code:

  package MyHash;
  require Tie::Hash;
  push @ISA, 'Tie::StdHash';

If you want to load a subclass from a file that require would not
consider an eligible filename (that is, it does not end in either .pm
or .pmc), use the following code:

  package MySecondPlugin;
  require './plugins/custom.plugin'; # contains Plugin::Custom
  use parent -norequire, 'Plugin::Custom';
<<
Maintainer: Jesse Alama <jesse.al...@gmail.com>
Homepage: http://search.cpan.org/dist/parent
Source: mirror:cpan:authors/id/C/CO/CORION/parent-%v.tar.gz
Source-MD5: e89c37813e8497f1d8bbf223ab18a02d

Type: perl (5.8.6 5.8.8 5.10.0)
UpdatePOD: true

DocFiles: Changes

Depends: <<
        perl%type_pkg[perl]-core
<<

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

--- NEW FILE: digest-sha-pm.info ---
Info2: <<
Package: digest-sha-pm%type_pkg[perl]
Version: 5.48
Revision: 3
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.6
Description: Perl extension for SHA-1/224/256/384/512
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0)

Depends: perl%type_pkg[perl]-core, digest-pm%type_pkg[perl]
BuildDepends: digest-pm%type_pkg[perl], test-pod-coverage-pm, test-pod-pm, fink 
(>= 0.20.1-1)
Replaces: digest-sha1-pm (<= 2.02-1), %N-man
Conflicts: %N-man

Source: mirror:cpan:modules/by-module/Digest/Digest-SHA-%v.tar.gz
Source-MD5: a7ec2c09a58a68dbf419aa191567d75e

UpdatePOD: true
DocFiles: Changes MANIFEST README
InstallScript: <<
  %{default_script}
  
  mkdir -p %i/bin/digest-sha-pm%type_raw[perl]
  
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
  mv %i/bin/shasum %i/bin/digest-sha-pm%type_raw[perl]
<<

DescDetail: <<
Digest::SHA is a complete implementation of the NIST Secure Hash
Standard.  It gives Perl programmers a convenient way to calculate
SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512 message digests.
The module can handle all types of input, including partial-byte
data.
<<

Homepage: http://search.cpan.org/dist/Digest-SHA
License: Artistic
Maintainer: Koen van der Drift <drift...@users.sourceforge.net>
<<

--- NEW FILE: digest-sha1-pm.info ---
Info2: <<
Package: digest-sha1-pm%type_pkg[perl]
Version: 2.12
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
License: Artistic
Description: Perl interface to the SHA-1 algorithm
DescDetail: <<
The Digest::SHA1 module allows you to use the NIST SHA-1 message
digest algorithm from within Perl programs. The algorithm takes as
input a message of arbitrary length and produces as output a 160-bit
"fingerprint" or "message digest" of the input.

In 2005, security flaws were identified in SHA-1, namely that a
possible mathematical weakness might exist, indicating that a stronger
hash function would be desirable. The Digest::SHA module implements
the stronger algorithms in the SHA family.

The Digest::SHA1 module provide a procedural interface for simple use,
as well as an object oriented interface that can handle messages of
arbitrary length and which can read files directly.
<<
Maintainer: Jesse Alama <jesse.al...@gmail.com>
Homepage: http://search.cpan.org/dist/Digest-SHA1
Source: mirror:cpan:authors/id/G/GA/GAAS/Digest-SHA1-%v.tar.gz
Source-MD5: eeb0292868801a202bd7ead87b291374

Type: perl (5.8.6 5.8.8 5.10.0)
UpdatePOD: true

DocFiles: Changes README

Depends: <<
        perl%type_pkg[perl]-core
<<

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

--- NEW FILE: module-runtime-pm.info ---
Info2: <<
Package: module-runtime-pm%type_pkg[perl]
Version: 0.006
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
License: Artistic
Description: Runtime module handling
DescDetail: <<
The functions exported by this module deal with runtime handling of
Perl modules, which are normally handled at compile time.
<<
Maintainer: Jesse Alama <jesse.al...@gmail.com>
Homepage: http://search.cpan.org/dist/Module-Runtime
Source: mirror:cpan:authors/id/Z/ZE/ZEFRAM/Module-Runtime-%v.tar.gz
Source-MD5: 49bf91ccf92f0ad27e4f9697678dd364

Type: perl (5.8.6 5.8.8 5.10.0)
UpdatePOD: true

DocFiles: Changes README

Depends: <<
  perl%type_pkg[perl]-core,
  parent-pm%type_pkg[perl]
<<

InstallScript: <<
  %{default_script}
  mv %i/man %i/lib/perl5/%type_raw[perl]
  mkdir -p %i/lib/perl5/%type_raw[perl]/Module
  mv %i/lib/perl5/site_perl/Module/Runtime.pm 
%i/lib/perl5/%type_raw[perl]/Module
  mv %i/lib/perl5/site_perl/%type_raw[perl]/darwin-thread-multi-2level \
    %i/lib/perl5/%type_raw[perl]/darwin-thread-multi-2level
<<
<<


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to