r22563 - in /trunk/libalien-wxwidgets-perl: Changes META.yml debian/changelog debian/control 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:08:53 UTC 2008


Author: roberto
Date: Mon Jun 30 22:08:53 2008
New Revision: 22563

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=22563
Log:
* New upstream release
* Update to Standards-Version 3.8.0 (no changes)

Modified:
    trunk/libalien-wxwidgets-perl/Changes
    trunk/libalien-wxwidgets-perl/META.yml
    trunk/libalien-wxwidgets-perl/debian/changelog
    trunk/libalien-wxwidgets-perl/debian/control
    trunk/libalien-wxwidgets-perl/inc/My/Build/Any_wx_config.pm
    trunk/libalien-wxwidgets-perl/inc/My/Build/Base.pm
    trunk/libalien-wxwidgets-perl/inc/My/Build/Win32.pm
    trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm
    trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets/Utility.pm
    trunk/libalien-wxwidgets-perl/patches/data

Modified: trunk/libalien-wxwidgets-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/Changes?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/Changes (original)
+++ trunk/libalien-wxwidgets-perl/Changes Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/META.yml?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/META.yml (original)
+++ trunk/libalien-wxwidgets-perl/META.yml Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/debian/changelog?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/debian/changelog (original)
+++ trunk/libalien-wxwidgets-perl/debian/changelog Mon Jun 30 22:08:53 2008
@@ -1,3 +1,10 @@
+libalien-wxwidgets-perl (0.37-1) unstable; urgency=low
+
+  * New upstream release
+  * Update to Standards-Version 3.8.0 (no changes)
+
+ -- Roberto C. Sanchez <roberto at connexer.com>  Mon, 30 Jun 2008 18:08:09 -0400
+
 libalien-wxwidgets-perl (0.36-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libalien-wxwidgets-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/debian/control?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/debian/control (original)
+++ trunk/libalien-wxwidgets-perl/debian/control Mon Jun 30 22:08:53 2008
@@ -7,7 +7,7 @@
 Build-Depends: debhelper (>= 5), libmodule-build-perl,
  libmodule-pluggable-perl, libwxgtk2.6-dev, libtest-pod-perl,
  libtest-pod-coverage-perl
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Alien-wxWidgets/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libalien-wxwidgets-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/

Modified: trunk/libalien-wxwidgets-perl/inc/My/Build/Any_wx_config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/inc/My/Build/Any_wx_config.pm?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/inc/My/Build/Any_wx_config.pm (original)
+++ trunk/libalien-wxwidgets-perl/inc/My/Build/Any_wx_config.pm Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/inc/My/Build/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/inc/My/Build/Base.pm?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/inc/My/Build/Base.pm (original)
+++ trunk/libalien-wxwidgets-perl/inc/My/Build/Base.pm Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/inc/My/Build/Win32.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/inc/My/Build/Win32.pm?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/inc/My/Build/Win32.pm (original)
+++ trunk/libalien-wxwidgets-perl/inc/My/Build/Win32.pm Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm (original)
+++ trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm Mon Jun 30 22:08:53 2008
@@ -43,7 +43,7 @@
                       instantiate   => 'config';
 
 our $AUTOLOAD;
-our $VERSION = '0.36';
+our $VERSION = '0.37';
 our %VALUES;
 our $dont_remap;
 

Modified: trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets/Utility.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets/Utility.pm?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets/Utility.pm (original)
+++ trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets/Utility.pm Mon Jun 30 22:08:53 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: trunk/libalien-wxwidgets-perl/patches/data
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/patches/data?rev=22563&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/patches/data (original)
+++ trunk/libalien-wxwidgets-perl/patches/data Mon Jun 30 22:08:53 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