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

Added Files:
        bencode-pm.info archive-zip-pm.info archive-zip-pm.patch 
        archive-tar-pm.info archive-extract-pm.info 
        app-cpanoutdated-pm.info app-cli-pm.info 
Log Message:
to 10.7

--- NEW FILE: archive-extract-pm.info ---
Info2: <<
Package: archive-extract-pm%type_pkg[perl]
Version: 0.48
Revision: 1
Source: mirror:cpan:authors/id/B/BI/BINGOS/Archive-Extract-%v.tar.gz
Source-MD5: 4612867ecbd0e4f30beb62fc50cea23b
Type: perl (5.12.3)
Depends: <<
        ipc-cmd-pm%type_pkg[perl],
        locale-maketext-simple-pm,
        module-load-conditional-pm%type_pkg[perl],
        params-check-pm,
        perl%type_pkg[perl]-core
<<
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
UpdatePOD: true
DocFiles: CHANGES README
Description: Generic archive extraction
License: Artistic/GPL
Maintainer: Daniel Macks <[email protected]>
Homepage: http://search.cpan.org/dist/Archive-Extract/
<<

--- NEW FILE: app-cpanoutdated-pm.info ---
Info2: <<
Package: app-cpanoutdated-pm%type_pkg[perl]
Version: 0.16
Revision: 1
Source: mirror:cpan:authors/id/T/TO/TOKUHIROM/App-cpanoutdated-%v.tar.gz
Source-MD5: 2a0c7859cfd51777de3f95a0485193bf
Type: perl (5.12.3)
BuildDepends: <<
        extutils-makemaker-pm%type_pkg[perl] (>= 6.56-1)
<<
Depends: <<
        cpan-distnameinfo-pm,
        dpkg-base-files,
        io-zlib-pm%type_pkg[perl],
        libwww-pm%type_pkg[perl],
        local-lib-pm%type_pkg[perl] (>= 1.006008-1),
        perl%type_pkg[perl]-core,
        version-pm%type_pkg[perl]
<<
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
        mv %i/bin/cpan-outdated %i/bin/cpan-outdated-%type_raw[perl]
<<
PostInstScript: <<
if [ "$1" = configure ]; then
        update-alternatives --install %p/bin/cpan-outdated cpan-outdated 
%p/bin/cpan-outdated-%type_raw[perl] %type_pkg[perl]
fi
<<
PreRmScript: <<
if [ "$1" = remove ]; then
        update-alternatives --remove cpan-outdated 
%p/bin/cpan-outdated-%type_raw[perl]
fi
<<
UpdatePOD: True
DocFiles: Changes README.md
Description: Detect outdated CPAN modules on your system
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/App-cpanoutdated/
Maintainer: Daniel Macks <[email protected]>
<<

--- NEW FILE: archive-zip-pm.patch ---
diff -Nurd Archive-Zip-1.30.orig/t/03_ex.t Archive-Zip-1.30/t/03_ex.t
--- Archive-Zip-1.30.orig/t/03_ex.t     2009-06-30 07:51:11.000000000 -0400
+++ Archive-Zip-1.30/t/03_ex.t  2010-08-05 12:29:11.000000000 -0400
@@ -8,6 +8,7 @@
 use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
 use File::Spec;
 use IO::File;
+use Config;
 
 use Test::More tests => 17;
 BEGIN {
@@ -20,6 +21,18 @@
 {
        my $libs = join ( ' -I', @INC );
        my $cmd    = "\"$^X\" \"-I$libs\" -w \"". join('" "', @_). '"';
+       if ($] >= 5.010 && $Config{"byteorder"} =~ /^1/) {
+           # little-endian means intel (not powerpc), for which fink has
+           # multiple single-arch distros that are seen by a single (fat)
+           # perl interp from apple for a perl version supported by fink
+           # (i.e., starting with 5.10.0). This is the logic taken from
+           # Fink::PkgVersion as of fink-0.29.13.
+           if ( $Config{"longsize"} == 4 ) {
+               $cmd = "/usr/bin/arch -i386 $cmd";   # 32-bit
+           } else {
+               $cmd = "/usr/bin/arch -x86_64 $cmd"; # 64-bit
+           }
+       }
        my $output = `$cmd`;
        return wantarray ? ( $?, $output ) : $?;
 }

--- NEW FILE: archive-tar-pm.info ---
Info2: <<
Package: archive-tar-pm%type_pkg[perl]
Version: 1.76
Revision: 1
Type: perl (5.12.3)
Description: Read, write and manipulate tar files
License: Artistic
Homepage: http://search.cpan.org/dist/Archive-Tar/
Maintainer: Daniel Macks <[email protected]>

# Dependencies.
Depends: <<
        io-compress-pm%type_pkg[perl] (>= 2.027-1),
        io-string-pm,
        io-zlib-pm%type_pkg[perl] (>= 1.01-1),
        package-constants-pm,
        perl%type_pkg[perl]-core,
        text-diff-pm
<<
BuildDepends: fink (>= 0.20.3)
Conflicts: %N-man, %N-bin
Replaces: %N-man, %N-bin

# Unpack Phase.
Source: mirror:cpan:modules/by-module/Archive/Archive-Tar-%v.tar.gz
Source-MD5: 4f726e610610c788a3cdd61083f9427f

# Install Phase.
InstallScript: <<
  %{default_script}
  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]
  mv %i/bin/ptar %i/bin/ptar-%type_raw[perl]
  mv %i/bin/ptardiff %i/bin/ptardiff-%type_raw[perl]
  mv %i/bin/ptargrep %i/bin/ptargrep-%type_raw[perl]
<<
#InfoTest: <<
#  TestDepends: test-pod-pm
#  is dependency-cycle to require test-pod-pm
#<<
UpdatePOD: true
DocFiles: CHANGES README

PostInstScript: <<
if [ "$1" = configure ]; then
        update-alternatives \
        --install %p/bin/ptar     ptar     %p/bin/ptar-%type_raw[perl]     
%type_pkg[perl] \
        --slave   %p/bin/ptardiff ptardiff %p/bin/ptardiff-%type_raw[perl] \
        --slave   %p/bin/ptargrep ptargrep %p/bin/ptargrep-%type_raw[perl]
fi
<<
PreRmScript: <<
if [ "$1" = remove ]; then
        update-alternatives --remove ptar %p/bin/ptar-%type_raw[perl]
fi
<<

# Documentation.
DescDetail: <<
Archive::Tar provides an object oriented mechanism for handling tar
files.  It provides class methods for quick and easy files handling
while also allowing for the creation of tar file objects for custom
manipulation.  If you have the IO::Zlib module installed, Archive::Tar
will also support compressed or gzipped tar files.

An object of class Archive::Tar represents a .tar(.gz) archive full of
files and things.
<<
DescPackaging: <<
        Former maintainer: Blair Zajac <[email protected]>
<<
<<

--- NEW FILE: app-cli-pm.info ---
Info2: <<
Package: app-cli-pm%type_pkg[perl]
Version: 0.313
Revision: 1
Type: perl (5.12.3)
Description: Dispatcher module for cli programs
License: Artistic/GPL
Maintainer: Christian Schaffner <[email protected]>

# Dependencies:
Depends: <<
 getopt-long-pm%type_pkg[perl] (>= 1:2.35-1),
 locale-maketext-simple-pm,
 pod-simple-pm,
 perl%type_pkg[perl]-core
<<

# Unpack Phase:
Source: mirror:cpan:authors/id/C/CO/CORNELIUS/App-CLI-%v.tar.gz
Source-MD5: efe1a2287c8447fb46e9f43594c3ce28

PatchScript: perl -pi -e 's/^auto_install\(\);$//' Makefile.PL

# Install Phase:
UpdatePOD: True
DocFiles: Changes
InstallScript: <<
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<

# Additional Info:
Homepage: http://search.cpan.org/dist/App-CLI/

# End of Info2
<<

--- NEW FILE: bencode-pm.info ---
Package: bencode-pm
Version: 1.4
Revision: 1
Type: perl

Source: mirror:cpan:authors/id/A/AR/ARISTOTLE/Bencode-%v.tar.gz
Source-MD5: bdd5f15fd4afec6230be6b0345f62c6f

BuildDepends: extutils-makemaker-pm (>= 6.31-1)

DocFiles: Changes LICENSE README
UpdatePOD: true

Description: BitTorrent serialisation format
License: Artistic/GPL
Maintainer: Daniel Macks <[email protected]>
Homepage: http://search.cpan.org/dist/Bencode/

--- NEW FILE: archive-zip-pm.info ---
Info2: <<
Package: archive-zip-pm%type_pkg[perl]
Version: 1.30
Revision: 3
Type: perl (5.12.3)
Description: Provide an interface to ZIP archive files
License: Artistic/GPL
Maintainer: Daniel Macks <[email protected]>
Homepage: http://search.cpan.org/dist/Archive-Zip
Depends: <<
        io-compress-pm%type_pkg[perl],
        perl%type_pkg[perl]-core
<<
BuildDepends: <<
        file-which-pm%type_pkg[perl],
        fink (>= 0.24.12)
<<
Conflicts: %N-man (<< 1.18-1), %{Ni}580-bin, %{Ni}581-bin, %{Ni}584-bin, 
%{Ni}586-bin
Replaces: %N-man (<< 1.18-1), %{Ni}580-bin, %{Ni}581-bin, %{Ni}584-bin, 
%{Ni}586-bin
Source: mirror:cpan:authors/id/A/AD/ADAMK/Archive-Zip-%v.tar.gz
Source-MD5: 40153666e7538b410e001aa8a810e702
PatchFile: %{ni}.patch
PatchFile-MD5: 287acc4d398af2abf7d0542d1dae5091
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
        mv %i/bin/crc32 %i/bin/crc32-%type_raw[perl]
<<
UpdatePOD: true
DocFiles: Changes LICENSE README
PostInstScript: <<
if [ "$1" = configure ]; then
        update-alternatives --install %p/bin/crc32 crc32 
%p/bin/crc32-%type_raw[perl] %type_pkg[perl]
fi
<<
PreRmScript: <<
if [ "$1" = remove ]; then
        update-alternatives --remove crc32 %p/bin/crc32-%type_raw[perl]
fi
<<
DescPackaging: <<
        The old archive-zip-pmXXX-bin packages are re-incorporated
        into the archive-zip-pmXXX packages as of 1.20-1.
<<
<<


------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to