Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6234/stable/main/finkinfo/libs/perlmods

Modified Files:
        file-temp-pm.info 
Added Files:
        file-temp-pm.patch 
Log Message:
new version


--- NEW FILE: file-temp-pm.patch ---
diff -Nurd -x'*~' File-Temp-0.2301.orig/t/00-compile.t 
File-Temp-0.2301/t/00-compile.t
--- File-Temp-0.2301.orig/t/00-compile.t        2013-04-11 11:30:11.000000000 
-0400
+++ File-Temp-0.2301/t/00-compile.t     2013-05-12 21:49:25.000000000 -0400
@@ -9,6 +9,7 @@
 
 use File::Find;
 use File::Temp qw{ tempdir };
+use Config;
 
 my @modules;
 find(
@@ -58,7 +59,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: {

Index: file-temp-pm.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/file-temp-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- file-temp-pm.info   23 Oct 2011 15:33:44 -0000      1.6
+++ file-temp-pm.info   13 May 2013 01:54:22 -0000      1.7
@@ -1,37 +1,34 @@
 Info2: <<
 Package: file-temp-pm%type_pkg[perl]
-Version: 0.22
+Version: 0.23.01
 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
+Distribution: (%type_pkg[perl] = 586) 10.5
 Description: Safe temporary files
-Type: perl(5.8.1 5.8.4 5.8.6 5.8.8 5.10.0 5.12.3)
+Type: perl(5.8.6 5.8.8 5.10.0)
 License: Artistic
 Maintainer: Benjamin Reed <file-temp...@fink.raccoonfink.com>
 
 Depends: <<
-       file-spec-pm%type_pkg[perl],
-       perl%type_pkg[perl]-core,
-       test-simple-pm%type_pkg[perl]
+       file-path-pm%type_pkg[perl] (>= 2.06),
+       perl%type_pkg[perl]-core
 <<
+# varianted extutils-makemaker-pmXXX have dependencies on %n (circular==bad)
 BuildDepends: <<
-       file-spec-pm%type_pkg[perl],
-       fink (>= 0.29.7-1),
-       perl%type_pkg[perl]-core,
-       test-simple-pm%type_pkg[perl]
+       extutils-makemaker-pm (>= 6.30)
 <<
 
-Source: mirror:cpan:modules/by-module/File/File-Temp-%v.tar.gz
-Source-MD5: a7e93cf2015881ded1f22b5b2d0cb391
+Source: mirror:cpan:modules/by-module/File/File-Temp-0.2301.tar.gz
+Source-MD5: 75a8aec1916ebbe88988ce68e84ccdd7
 
-UseMaxBuildJobs: true
+PatchFile: %{ni}.patch
+PatchFile-MD5: c79486211a73c2ae1d17f48b0c969c3a
 
 UpdatePOD: true
 InstallScript: <<
        %{default_script}
        mv %i/share/man %i/lib/perl5/%type_raw[perl]
 <<
-DocFiles: ChangeLog MANIFEST README
+DocFiles: CONTRIBUTING Changes README
 
 Homepage: http://search.cpan.org/dist/File-Temp
 DescDetail: <<


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to