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

Modified Files:
        anyevent-pm.info archive-tar-pm.info archive-zip-pm.info 
        file-which-pm-0.05.info io-zlib-pm.info ipc-run-pm.info 
Added Files:
        archive-zip-pm.patch file-which-pm.info probe-perl-pm.info 
        test-script-pm.info 
Log Message:
sync. w/ 10.1$/stable, validated on powerpc-darwin8


--- NEW FILE: probe-perl-pm.info ---
Package: probe-perl-pm
Version: 0.01
Revision: 1
Source: mirror:cpan:authors/id/K/KW/KWILLIAMS/Probe-Perl-%v.tar.gz
Source-MD5: b6f613a7d07dde568a0d4b9570de47c3
Type: perl
UpdatePOD: true
DocFiles: Changes README
Description: Information about the currently running perl
License: Artistic/GPL
Maintainer: Daniel Macks <dma...@netspace.org>
Homepage: http://search.cpan.org/dist/Probe-Perl

--- NEW FILE: file-which-pm.info ---
Info2: <<
Package: file-which-pm%type_pkg[perl]
Version: 1.09
Revision: 4
Distribution: (%type_pkg[perl] = 586) 10.5
Source: mirror:cpan:authors/id/A/AD/ADAMK/File-Which-%v.tar.gz
Source-MD5: b9429edaad7f45caafa4d458afcfd8af

# remember to update Conflicts/Replaces in SplitOff of this package
# and in Package:file-which-pm when adding variants here
Type: perl (5.8.6 5.8.8 5.10.0)

BuildDepends: <<
        test-script-pm,
        test-simple-pm%type_pkg[perl] (>= 0.80-1)
<<
Depends: perl%type_pkg[perl]-core
InstallScript: <<
        %{default_script}
        mkdir -p %i/lib/perl5/%type_raw[perl]/man
        mv %i/share/man/man3 %i/lib/perl5/%type_raw[perl]/man
<<
UpdatePOD: true
DocFiles: Changes LICENSE README
SplitOff: <<
        Package: pwhich%type_pkg[perl]
        Conflicts: <<
                file-which-pm,
                pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123
        <<
        Replaces: <<
                file-which-pm,
                pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100, 
pwhich5123
        <<
        Depends: %N (>= %v-%r)
        Files: <<
                bin
                share/man/man1
        <<
        DocFiles: Changes LICENSE README
<<
DescPackaging: <<
        There is an older unvarianted package, so cannot use
        update-alternatives to swap %p/bin/pwhich symlinks to a "real"
        variant-named file. The symlinks are created at install-time
        so dpkg doesn't know this package owns them but has written
        over the unvarianted pkg that owns them, so can get removed
        and leave us in a broken state. Guess we're stuck with
        swappable -bin splitoffs.
<<

Description: Portable, pure-perl implementation of `which`
DescDetail: <<
File::Which is a portable implementation (in Perl) of `which', and can
be used to get the absolute filename of an executable program
installed somewhere in your PATH, or just check for its existence. It
includes the command-line utility `pwhich' which has the same function
as `which'.
<<
License: Artistic/GPL
Maintainer: Daniel Macks <dma...@netspace.org>
Homepage: http://search.cpan.org/dist/File-Which
<<

--- 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 ) : $?;
 }

Index: archive-tar-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/archive-tar-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- archive-tar-pm.info 11 Jul 2011 04:08:33 -0000      1.1
+++ archive-tar-pm.info 28 Nov 2011 18:26:49 -0000      1.2
@@ -1,8 +1,8 @@
 Info2: <<
 Package: archive-tar-pm%type_pkg[perl]
-Version: 1.52
+Version: 1.76
 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
+Distribution: (%type_pkg[perl] = 586) 10.5
 Type: perl (5.8.6 5.8.8 5.10.0)
 Description: Read, write and manipulate tar files
 License: Artistic
@@ -10,14 +10,21 @@
 Maintainer: Daniel Macks <dma...@netspace.org>
 
 # Dependencies.
-Depends: compress-zlib-pm%type_pkg[perl] (>= 2.015-1), io-compress-base-pm (>= 
2.015-1), io-compress-bzip2-pm%type_pkg[perl] (>= 2.015-1), 
io-compress-zlib-pm%type_pkg[perl] (>= 2.015-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), test-pod-pm
+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: a2bcf46c095f6b4ea747fc978a72d0da
+Source-MD5: 4f726e610610c788a3cdd61083f9427f
 
 # Install Phase.
 InstallScript: <<
@@ -25,7 +32,12 @@
   /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
 
@@ -33,7 +45,8 @@
 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/ptardiff ptardiff %p/bin/ptardiff-%type_raw[perl] \
+       --slave   %p/bin/ptargrep ptargrep %p/bin/ptargrep-%type_raw[perl]
 fi
 <<
 PreRmScript: <<

Index: anyevent-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/anyevent-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- anyevent-pm.info    11 Jul 2011 04:08:33 -0000      1.1
+++ anyevent-pm.info    28 Nov 2011 18:26:49 -0000      1.2
@@ -8,7 +8,7 @@
 Depends: perl%type_pkg[perl]-core
 Source: mirror:cpan:authors/id/M/ML/MLEHMANN/AnyEvent-%v.tar.gz
 Source-MD5: 258462e99ef4ff62e0fab2cfdc51a170
-Type: perl (5.8.1 5.8.6 5.8.8)
+Type: perl (5.8.1 5.8.4 5.8.6 5.8.8)
 
 InstallScript: <<
   %{default_script}

--- NEW FILE: test-script-pm.info ---
Package: test-script-pm
Version: 1.07
Revision: 1
Source: mirror:cpan:authors/id/A/AD/ADAMK/Test-Script-%v.tar.gz
Source-MD5: f6b5baa6403cd24dac7f023e0ea22384
Type: perl
Depends: <<
        ipc-run3-pm,
        probe-perl-pm
<<
UpdatePOD: true
DocFiles: Changes LICENSE README
Description: Basic cross-platform tests for scripts
DescDetail: <<
The intent of this module is to provide a series of basic tests for 80%
of the testing you will need to do for scripts in the script (or bin as
is also commonly used) paths of your Perl distribution.
<<
License: Artistic/GPL
Maense: Artistic/GPLpaths of your Perl distribution.ipt (or bin 
aslmods/anyevent-pm.info,vss-bzip2-pm%type_pkg[perl] (>= 2.015-1), 
io-compress-zlib-pm%type_pkg[perl] (>= 2.015-1), io-string-pm, 
io-zlib-pm%type_pkg[perl] (>= 1.01-1), package-constants-pm, 
perl%type_pkg[perl]-core, text-diff-pm 
èè!è!ÐD÷.ÿ@E÷.ÿxȐ+P;÷.ÿ"aêƐ+~êƐ+ÐD÷.ÿð`êƐ+E÷.ÿÀkȐ+óhêƐ+kȐ+ØkȐ+¨
        kȐ+€ŠëƐ+xȐ+P;÷.ÿ 
:÷.ÿë}êƐ+à!à!ÐD÷.ÿ@E÷.ÿÈÝæǐ+0<÷.ÿ"aêƐ+~êƐ+ÐD÷.ÿð`êƐ+E÷.ÿE÷.ÿøD÷.ÿ{ǐ+Œp˜@E÷.ÿóhêƐ+€ŠëƐ+0<÷.ÿ;÷.ÿë}êƐ+GHIJKMNOPÐD÷.ÿ@E÷.ÿH•½Ç+Ð=÷.ÿ"aêƐ+~êƐ+ÐD÷.ÿ0kȐ+óhêƐ+
 Ȑ+ ÉšÇ+kȐ+ØkȐ+¨ 
kȐ+€ŠëƐ+H•½Ç+Ð=÷.ÿ<÷.ÿë}êƐ+8•½Ç+Ð=÷.ÿ@<÷.ÿë}êƐ+(•½Ç+Ð=÷.ÿp<÷.ÿë}êƐ+•½Ç+Ð=÷.ÿ <÷.ÿë}êƐ+
  ¨kȐ+óhêƐ+¨        kȐ+ 
7÷.ÿŠ›Ç+ægêƐ+ØkȐ+@=÷.ÿy›Ç+ægêƐ+kȐ+p=÷.ÿZ›Ç+ægêƐ+ØĚǐ+
 Ȑ+ ÉšÇ+kȐ+Ø$Ȑ+ØkȐ+¨ 
kȐ+€ŠëƐ+{ǐ+fǐ+@E÷.ÿp[šÇ+
 
?÷.ÿð=÷.ÿë}êƐ+5678:<=>?@BDÐD÷.ÿ@E÷.ÿàcǐ+@E÷.ÿóhêƐ+ètǐ+ =÷.ÿfǐ+ægêƐ+èt
ǐ+Õ_@fÆS 
Qöl±íÁ³2ǐ+@E÷.ÿàcǐ+0@÷.ÿ?÷.ÿë}êƐ+u]ÞÓ
      
4Q ÷U^Qʉ§¶uª¹ñìò*ēv´2lǐ+€F÷.ÿF0ÎȐ+F0ÎȐ+?…iǐ+@F÷.ÿÐD÷.ÿ`A÷.ÿE÷.ÿE÷.ÿøD÷.ÿÀG÷.ÿB0ÎȐ+F÷.ÿØ$Ȑ+ )Ȑ+€ŠëƐ+ÿÿÿÿÿÿÿÿB0ÎȐ+HE÷.ÿë}êÆintainer:
 Daniel Macks <dma...@netspace.org>
Homepage: http://search.cpan.org/dist/Test-Script

Index: file-which-pm-0.05.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/file-which-pm-0.05.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- file-which-pm-0.05.info     11 Jul 2011 04:08:33 -0000      1.1
+++ file-which-pm-0.05.info     28 Nov 2011 18:26:49 -0000      1.2
@@ -1,8 +1,9 @@
 Package: file-which-pm
 Version: 0.05
-Revision: 1
+Revision: 3
 Source: mirror:cpan:authors/id/P/PE/PEREINAR/File-Which-%v.tar.gz
 Source-MD5: bd671a65f770fc0a124095e74c7c8013
+Conflicts: pwhich581, pwhich584, pwhich586, pwhich588, pwhich5100
 Type: perl
 UpdatePOD: true
 DocFiles: Changes README

Index: ipc-run-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/ipc-run-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ipc-run-pm.info     11 Jul 2011 04:08:33 -0000      1.1
+++ ipc-run-pm.info     28 Nov 2011 18:26:49 -0000      1.2
@@ -1,13 +1,12 @@
 Info2: <<
 Package: ipc-run-pm%type_pkg[perl]
-Version: 0.89
+Version: 0.90
 Revision: 1
-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: perl (5.8.1 5.8.6 5.8.8 5.10.0)
+Distribution: (%type_pkg[perl] = 586) 10.5
+Type: perl (5.8.6 5.8.8 5.10.0)
 
 Source: mirror:cpan:authors/id/T/TO/TODDR/IPC-Run-%v.tar.gz
-Source-MD5: 9dc3b8cca378b871fafab7c6e5a61cdd
+Source-MD5: fda6bbd9d5e4e738a02230923a41125b
 
 Depends: <<
        io-tty-pm%type_pkg[perl] (>= 1.08-1),

Index: io-zlib-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/io-zlib-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- io-zlib-pm.info     11 Jul 2011 04:08:33 -0000      1.1
+++ io-zlib-pm.info     28 Nov 2011 18:26:49 -0000      1.2
@@ -1,17 +1,19 @@
 Info2: <<
 Package: io-zlib-pm%type_pkg[perl]
 Version: 1.10
-Revision: 1
-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: perl (5.8.1 5.8.6 5.8.8 5.10.0)
+Revision: 3
+Distribution: (%type_pkg[perl] = 586) 10.5
+Type: perl (5.8.6 5.8.8 5.10.0)
 Description: IO:: style interface to Compress::Zlib
 License: Artistic/GPL
 Homepage: http://search.cpan.org/dist/IO-Zlib/
 Maintainer: Daniel Macks <dma...@netspace.org>
 
 # Dependencies.
-Depends: compress-zlib-pm%type_pkg[perl], perl%type_pkg[perl]-core
+Depends: <<
+       io-compress-pm%type_pkg[perl],
+       perl%type_pkg[perl]-core
+<<
 BuildDepends: fink (>= 0.20.3)
 Conflicts: %N-man
 Replaces: %N-man

Index: archive-zip-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/libs/perlmods/archive-zip-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- archive-zip-pm.info 11 Jul 2011 04:08:33 -0000      1.1
+++ archive-zip-pm.info 28 Nov 2011 18:26:49 -0000      1.2
@@ -1,20 +1,27 @@
 Info2: <<
 Package: archive-zip-pm%type_pkg[perl]
-Version: 1.23
-Revision: 1
-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: perl (5.8.1 5.8.6 5.8.8)
+Version: 1.30
+Revision: 3
+Distribution: (%type_pkg[perl] = 586) 10.5
+Type: perl (5.8.6 5.8.8 5.10.0)
 Description: Provide an interface to ZIP archive files
 License: Artistic/GPL
 Maintainer: Daniel Macks <dma...@netspace.org>
 Homepage: http://search.cpan.org/dist/Archive-Zip
-Depends: perl%type_pkg[perl]-core, compress-zlib-pm%type_pkg[perl]
-BuildDepends: file-which-pm
+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: 7ffcbdc1b603307235fb8d42084cb84d
+Source-MD5: 40153666e7538b410e001aa8a810e702
+PatchFile: %{ni}.patch
+PatchFile-MD5: 287acc4d398af2abf7d0542d1dae5091
 InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to