r22561 - in /branches/upstream/libalien-wxwidgets-perl/current: Changes META.yml inc/My/Build/Any_wx_config.pm inc/My/Build/Base.pm inc/My/Build/Win32.pm lib/Alien/wxWidgets.pm lib/Alien/wxWidgets/Utility.pm patches/data

roberto at users.alioth.debian.org roberto at users.alioth.debian.org
Mon Jun 30 22:06:28 UTC 2008


Author: roberto
Date: Mon Jun 30 22:06:28 2008
New Revision: 22561

URL: http://svn.debian.org/wsvn/?sc=1&rev=22561
Log:
[svn-upgrade] Integrating new upstream version, libalien-wxwidgets-perl (0.37)

Modified:
    branches/upstream/libalien-wxwidgets-perl/current/Changes
    branches/upstream/libalien-wxwidgets-perl/current/META.yml
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Base.pm
    branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm
    branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm
    branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm
    branches/upstream/libalien-wxwidgets-perl/current/patches/data

Modified: branches/upstream/libalien-wxwidgets-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/Changes?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/Changes (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/Changes Mon Jun 30 22:06:28 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension Alien::wxWidgets.
+
+0.37  Sun Jun 29 21:40:16 CEST 2008
+	- Always use binary programs to extract archives, unless
+	  under Win32.
 
 0.36  Mon May 19 22:35:46 CEST 2008
 	- Renamed 0.35_01 to 0.36.

Modified: branches/upstream/libalien-wxwidgets-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/META.yml?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/META.yml (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/META.yml Mon Jun 30 22:06:28 2008
@@ -1,6 +1,6 @@
 ---
 name: Alien-wxWidgets
-version: 0.36
+version: 0.37
 author:
   - 'Mattia Barbon <mbarbon at cpan.org>'
 abstract: 'building, finding and using wxWidgets binaries'
@@ -15,7 +15,7 @@
 provides:
   Alien::wxWidgets:
     file: lib/Alien/wxWidgets.pm
-    version: 0.36
+    version: 0.37
   Alien::wxWidgets::Utility:
     file: lib/Alien/wxWidgets/Utility.pm
 generated_by: Module::Build version 0.2808

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Any_wx_config.pm Mon Jun 30 22:06:28 2008
@@ -183,7 +183,7 @@
 
 sub _key {
     my $self = shift;
-    my $compiler = $ENV{CXX} || $Config{ccname};
+    my $compiler = $ENV{CXX} || $Config{ccname} || $Config{cc};
     my $key = $self->awx_get_name
       ( toolkit          => $self->awx_build_toolkit,
         version          => $self->_version_2_dec

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Base.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Base.pm?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Base.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Base.pm Mon Jun 30 22:06:28 2008
@@ -255,6 +255,7 @@
 
     if( $^O ne 'MSWin32' || $archive !~ /\.bz2$/i ) {
         require Archive::Extract;
+        $Archive::Extract::PREFER_BIN = 1;
         my $ae = Archive::Extract->new( archive => $archive );
 
         die 'Error: ', $ae->error unless $ae->extract;

Modified: branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/inc/My/Build/Win32.pm Mon Jun 30 22:06:28 2008
@@ -208,7 +208,7 @@
     return 'WinCE' if $INC{'Cross.pm'};
 
     SWITCH: {
-        local $_ = $Config{ccname};
+        local $_ = $Config{ccname} || $Config{cc};
 
         /^cl/i  and $package = 'Win32_MSVC'  and last SWITCH;
         /^gcc/i and $package = 'Win32_MinGW' and last SWITCH;

Modified: branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets.pm Mon Jun 30 22:06:28 2008
@@ -43,7 +43,7 @@
                       instantiate   => 'config';
 
 our $AUTOLOAD;
-our $VERSION = '0.36';
+our $VERSION = '0.37';
 our %VALUES;
 our $dont_remap;
 

Modified: branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/lib/Alien/wxWidgets/Utility.pm Mon Jun 30 22:06:28 2008
@@ -184,7 +184,7 @@
     # the key already identifies the configuration
     return %args if $args{key};
 
-    my $cc = $ENV{CXX} || $ENV{CC} || $Config{ccname};
+    my $cc = $ENV{CXX} || $ENV{CC} || $Config{ccname} || $Config{cc};
     my $kind = awx_compiler_kind( $cc );
     my $version = awx_cc_abi_version( $cc );
 

Modified: branches/upstream/libalien-wxwidgets-perl/current/patches/data
URL: http://svn.debian.org/wsvn/branches/upstream/libalien-wxwidgets-perl/current/patches/data?rev=22561&op=diff
==============================================================================
--- branches/upstream/libalien-wxwidgets-perl/current/patches/data (original)
+++ branches/upstream/libalien-wxwidgets-perl/current/patches/data Mon Jun 30 22:06:28 2008
@@ -1,5 +1,5 @@
 my $VERSION = '2.8.7';
-my $URL     = "ftp://biolpc22.york.ac.uk/pub/$VERSION";
+my $URL     = "http://prdownloads.sourceforge.net/wxwindows";
 my $BASE    = 'wxWidgets';
 # $TYPE from Build.PL
 




More information about the Pkg-perl-cvs-commits mailing list