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

Added Files:
        b-hooks-endofscope-pm.info capture-tiny-pm.info 
        capture-tiny-pm.patch config-inihash-pm.info 
        config-std-pm.info convert-bencode-pm.info 
        convert-bencode-xs-pm.info convert-tnef-pm.info 
        hash-case-pm.info log-log4perl-pm.info log-report-pm.info 
Log Message:
sync a bunch of -pmXXX to stable


--- NEW FILE: convert-tnef-pm.info ---
Info2: <<
Package: convert-tnef-pm%type_pkg[perl]
Version: 0.17
Revision: 1026
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: Convert Microsoft mail attachments
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 <convert-tnef...@fink.raccoonfink.com>

Depends: <<
        perl%type_pkg[perl]-core,
        io-stringy-pm,
        mime-tools-pm%type_pkg[perl]
<<
BuildDepends: <<
        perl%type_pkg[perl]-core,
        fink (>= 0.29.7-1)
<<
Provides: convert-tnef-pm
Replaces: <<
        convert-tnef-pm (<= 0.17-2),
        convert-tnef-pm560,
        convert-tnef-pm561,
        convert-tnef-pm580,
        convert-tnef-pm581,
        convert-tnef-pm584,
        convert-tnef-pm585,
        convert-tnef-pm586
<<

Source: mirror:cpan:modules/by-module/Convert/Convert-TNEF-%v.tar.gz
Source-MD5: 31cddf42fae9495b4a686b17ec68d7e0

UseMaxBuildJobs: true

UpdatePOD: true
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes MANIFEST README

Homepage: http://search.cpan.org/dist/Convert-TNEF
DescDetail: <<
TNEF stands for Transport Neutral Encapsulation Format, and if you've
ever been unfortunate enough to receive one of these files as an email
attachment, you may want to use this module.
<<
<<


--- NEW FILE: capture-tiny-pm.patch ---
diff -Nurd -x'*~' Capture-Tiny-0.10.orig/t/00-compile.t 
Capture-Tiny-0.10/t/00-compile.t
--- Capture-Tiny-0.10.orig/t/00-compile.t       2011-02-07 07:01:49.000000000 
-0500
+++ Capture-Tiny-0.10/t/00-compile.t    2011-04-10 10:36:23.000000000 -0400
@@ -18,6 +18,7 @@
 
 use File::Find;
 use File::Temp qw{ tempdir };
+use Config;
 
 my @modules;
 find(
@@ -42,7 +43,21 @@
     # fake home for cpan-testers
      local $ENV{HOME} = tempdir( CLEANUP => 1 );
 
-    like( qx{ $^X -Ilib -e "require $_; print '$_ ok'" }, qr/^\s*$_ ok/s, "$_ 
loaded ok" )
+    my @command;
+    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.
+        push @command, '/usr/bin/arch';
+        if ( $Config{"longsize"} == 4 ) {
+            push @command, '-i386';   # 32-bit
+        } else {
+            push @command, '-x86_64'; # 64-bit
+        }
+    }
+    like( qx{ @command $^X -Ilib -e "require $_; print '$_ ok'" }, qr/^\s*$_ 
ok/s, "$_ loaded ok" )
         for sort @modules;
 
     SKIP: {

--- NEW FILE: config-std-pm.info ---
Info2: <<
Package: config-std-pm%type_pkg[perl]
Version: 0.900
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_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Source: mirror:cpan:authors/id/B/BR/BRICKER/Config-Std-%v.tar.gz
Source-MD5: 72584d9f408ea4d404159d2e8d5b686d
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true
Depends: <<
 perl%type_pkg[perl]-core, class-std-pm%type_pkg[perl],
 version-pm%type_pkg[perl]
<<
Conflicts: %N-man (<< 0.0.4-1)
Replaces: %N-man (<< 0.0.4-1)
InstallScript: <<
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes MANIFEST META.yml README
License: Artistic/GPL
Description: Load and save configuration files
Maintainer: None <fink-de...@lists.sourceforge.net>
Homepage: http://search.cpan.org/dist/Config-Std
DescPackaging: <<
 Report bugs to the maintainer or the CPAN bug tracker:
 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Config-Std

 -pm581 variant 00write.t test 5 fails. See:
 http://rt.cpan.org/Public/Bug/Display.html?id=17425

        Former Maintainer: Chris Dolan <chrisdo...@users.sourceforge.net>
<<
<<

--- NEW FILE: config-inihash-pm.info ---
Info2: <<
Package: config-inihash-pm%type_pkg[perl]
Version: 3.01.01
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5

Source: mirror:cpan:authors/id/J/JE/JENDA/Config-IniHash-%v.tar.gz
Source-MD5: fc23892540d21996daae3c46c3de58ba
Type: perl (5.8.6 5.8.8 5.10.0)
BuildDepends: test-differences-pm%type_pkg[perl]
Depends: <<
        hash-case-pm%type_pkg[perl],
        hash-withdefaults-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: Read/write INI files
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/Config-IniHash
Maintainer: Daniel Macks <dma...@netspace.org>
<<

--- NEW FILE: capture-tiny-pm.info ---
Info2: <<
Package: capture-tiny-pm%type_pkg[perl]
Version: 0.11
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5
Source: mirror:cpan:authors/id/D/DA/DAGOLDEN/Capture-Tiny-%v.tar.gz
Source-MD5: afbd9be69e4691ba8316545d216abdc8
Type: perl (5.8.6 5.8.8 5.10.0)
BuildDepends: <<
        extutils-makemaker-pm%type_pkg[perl] (>= 6.31-1),
        fink (>= 0.24.12),
        test-simple-pm%type_pkg[perl]
<<
Depends: <<
        perl%type_pkg[perl]-core
<<
PatchFile: %{ni}.patch
PatchFile-MD5: fb837f0e3c9935650f58435152561633
InfoTest: <<
        TestDepends: <<
                test-script-pm (>= 1.05-1)
        <<
<<
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
UpdatePOD: True
DocFiles: Changes LICENSE README Todo
Description: Capture STDOUT and STDERR output streams
License: BSD
Homepage: http://search.cpan.org/dist/Capture-Tiny/
Maintainer: Daniel Macks <dma...@netspace.org>
<<

--- NEW FILE: convert-bencode-xs-pm.info ---
Info2: <<
Package: convert-bencode-xs-pm%type_pkg[perl]
Version: 0.06
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5
Type: perl (5.8.6 5.8.8 5.10.0)

Source: mirror:cpan:authors/id/I/IW/IWADE/Convert-Bencode_XS-%v.tar.gz
Source-MD5: 472a1081a20b0d42175e103c7c84b0ef

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

InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes README
UpdatePOD: true

Description: Fast conversions to/from BitTorrent
License: Artistic/GPL
Maintainer: Daniel Macks <dma...@netspace.org>
Homepage: http://search.cpan.org/dist/Convert-Bencode_XS/
<<

--- NEW FILE: log-report-pm.info ---
Info2: <<
Package: log-report-pm%type_pkg[perl]
Version: 0.94
Revision: 1
Distribution: (%type_pkg[perl] = 586) 10.5
Source: mirror:cpan:authors/id/M/MA/MARKOV/Log-Report-%v.tar.gz
Source-MD5: 7edb8c46ce01e8f9ff9a1f58ba8fc5ca
Type: perl (5.8.6 5.8.8 5.10.0)
BuildDepends: <<
        test-simple-pm%type_pkg[perl] (>= 0.86-1),
        test-pod-pm
<<
Depends: <<
        encode-pm%type_pkg[perl] (>= 2.00-1),
        locale-gettext-pm%type_pkg[perl],
        log-dispatch-pm%type_pkg[perl],
        log-log4perl-pm%type_pkg[perl],
        perl%type_pkg[perl]-core,
        sys-syslog-pm%type_pkg[perl] (>= 0.27-1)
<<
Recommends: <<
        ppi-pm%type_pkg[perl]
<<
PatchScript: tail -n 7 lib/Log/Report.pod > LICENSE
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
        rm -f %i/bin/xgettext-perl
<<
UpdatePOD: True
DocFiles: ChangeLog LICENSE README
DescPackaging: <<
        Don't see xgettext-perl used anywhere, so just scrap it rather
        than figuring out if we need update-alternatives or a separate
        -bin pkg and/or hacking some source to use its varianted name.
<<
Description: Pluggable handlers for runtime situations
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/Log-Report
Maintainer: Daniel Macks <dma...@netspace.org>
<<

--- NEW FILE: b-hooks-endofscope-pm.info ---
Info4: <<
Package: b-hooks-endofscope-pm%type_pkg[perl]
Version: 0.09
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_pkg[perl] = 5123) 10.7, 
(%type_pkg[perl] = 588) 10.4, (%type_pkg[perl] = 588) 10.5, (%type_pkg[perl] = 
588) 10.6
Description: Execute code after scope finished
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 <b-hooks-endofscope...@fink.raccoonfink.com>

Depends: <<
        perl%type_pkg[perl]-core,
        sub-exporter-pm%type_pkg[perl],
        variable-magic-pm%type_pkg[perl] (>= 0.34-1)
<<
BuildDepends: <<
        fink (>= 0.29.7-1),
        extutils-makemaker-pm%type_pkg[perl] (>= 6.31-1)
<<

Source: mirror:cpan:modules/by-module/B/B-Hooks-EndOfScope-%v.tar.gz
Source-MD5: 83d941d374d6718cdd5c2721c40f660f

UseMaxBuildJobs: true

UpdatePOD: true
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes README

Homepage: http://search.cpan.org/dist/B-Hooks-EndOfScope
DescDetail: <<
This module allows you to execute code when perl finished
compiling the surrounding scope.
<<
<<


--- NEW FILE: log-log4perl-pm.info ---
Info2:<<
Package: log-log4perl-pm%type_pkg[perl]
Version: 1.24
Revision: 1
Depends: perl%type_pkg[perl]-core
BuildDepends: fink (>= 0.24.12)
InstallScript: <<
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
Source: mirror:cpan:modules/by-module/Log/Log-Log4perl-%v.tar.gz
Source-MD5: 102dd4fc918ffb730c7cde49aeaecb3a
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
Type: perl (5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
UpdatePOD: true
DocFiles: Changes MANIFEST README
Description: Log::Log4perl - log4j implementation for Perl
DescDetail: <<
Log::Log4perl lets you remote-control and fine-tune the logging 
behaviour of your system from the outside. It implements the 
widely popular (Java-based) Log4j logging package in pure Perl.
<<
DescPackaging: <<
Uses Storable.pm, so a version for perl5.6.x would need
  Depends:storable-pm56x
When fink drops perl56x, all log-log4perl-pmXXX could be
replaced with a perl-unversioned "log-log4perl-pm".
<<
License: Artistic
Maintainer: Toshiya SAITOH <tosh...@saitoh.nu>
Homepage: http://log4perl.sourceforge.net/
<<

--- NEW FILE: hash-case-pm.info ---
Info2: <<
Package: hash-case-pm%type_pkg[perl]
Version: 1.010
Revision: 2
Distribution: (%type_pkg[perl] = 586) 10.5
Source: mirror:cpan:authors/id/M/MA/MARKOV/Hash-Case-1.01.tar.gz
Source-MD5: 80c17b3e1724760d6ef145953b1f76de
Type: perl (5.8.6 5.8.8 5.10.0)
Depends: <<
        perl%type_pkg[perl]-core,
        log-report-pm%type_pkg[perl]
<<
InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
UpdatePOD: True
DocFiles: ChangeLog README
DescPackaging: <<
        Calling this 1.010 so that it sorts higher than previous
        1.004 version.
<<
Description: Hashes with key-casing requirements
License: Artistic/GPL
Homepage: http://search.cpan.org/dist/Hash-Case
Maintainer: Daniel Macks <dma...@netspace.org>
<<

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

Source: mirror:cpan:authors/id/O/OR/ORCLEV/Convert-Bencode-%v.tar.gz
Source-MD5: be0831c69fe581908d33bbebff0b5760

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

DocFiles: Changes LICENSE README Todo
UpdatePOD: true

Description: Functions for converting to/from BitTorrent
License: Artistic/GPL
Maintainer: Daniel Macks <dma...@netspace.org>
Homepage: http://search.cpan.org/dist/Convert-Bencode/


------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to