r25159 - in /trunk/libalien-wxwidgets-perl: Build.PL Changes MANIFEST META.yml debian/changelog inc/My/Build/MacOSX_wx_config.pm lib/Alien/wxWidgets.pm patches/data patches/wxMac-2.8.3-brokengcc.patch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Sep 15 06:32:07 UTC 2008


Author: dmn
Date: Mon Sep 15 06:32:03 2008
New Revision: 25159

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25159
Log:
New upstream release

Added:
    trunk/libalien-wxwidgets-perl/patches/wxMac-2.8.3-brokengcc.patch
      - copied unchanged from r25158, branches/upstream/libalien-wxwidgets-perl/current/patches/wxMac-2.8.3-brokengcc.patch
Modified:
    trunk/libalien-wxwidgets-perl/Build.PL
    trunk/libalien-wxwidgets-perl/Changes
    trunk/libalien-wxwidgets-perl/MANIFEST
    trunk/libalien-wxwidgets-perl/META.yml
    trunk/libalien-wxwidgets-perl/debian/changelog
    trunk/libalien-wxwidgets-perl/inc/My/Build/MacOSX_wx_config.pm
    trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm
    trunk/libalien-wxwidgets-perl/patches/data

Modified: trunk/libalien-wxwidgets-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/Build.PL?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/Build.PL (original)
+++ trunk/libalien-wxwidgets-perl/Build.PL Mon Sep 15 06:32:03 2008
@@ -56,7 +56,21 @@
 if( $^O ne 'darwin' && $^O ne 'MSWin32' ) {
     $build_wx_opengl_dflt = 'no';
 }
+if( $ENV{AUTOMATED_TESTING} ) {
+    if( $^O ne 'darwin' && $^O ne 'MSWin32' ) {
+        my $pkg_config = $ENV{PKG_CONFIG} || 'pkg-config';
+        my $ans = `$pkg_config --modversion gtk+-2.0 2>&1`;
+        unless( $ans =~ /^2\./ ) {
+            print <<EOT;
+Could not detect GTK+ 2 by running '$pkg_config': aborting
 
+== pkg-config output: ====================================
+$ans==========================================================
+EOT
+            exit 0;
+        }
+    }
+}
 my $build_wx = _askyn( $build, 'build_wx',
                        'Do you want to build wxWidgets?', $build_wx_dflt );
 $build->notes( 'build_wx' => $build_wx );

Modified: trunk/libalien-wxwidgets-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/Changes?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/Changes (original)
+++ trunk/libalien-wxwidgets-perl/Changes Mon Sep 15 06:32:03 2008
@@ -1,4 +1,12 @@
 Revision history for Perl extension Alien::wxWidgets.
+
+0.39  Mon Sep  8 20:56:44 CEST 2008
+	- Add missing file to MANIFEST.
+
+0.38  Sun Aug 24 11:17:37 CEST 2008
+	- Patch and build wxWidgets 2.8.8.
+	- When running with AUTOMATED_TESTING try to detect GTK+2
+	  presence and abort early if it can't be found.
 
 0.37  Sun Jun 29 21:40:16 CEST 2008
 	- Always use binary programs to extract archives, unless

Modified: trunk/libalien-wxwidgets-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/MANIFEST?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/MANIFEST (original)
+++ trunk/libalien-wxwidgets-perl/MANIFEST Mon Sep 15 06:32:03 2008
@@ -42,6 +42,7 @@
 patches/wxMSW-2.8.0-setup_u.patch
 patches/wxMSW-2.8.4-config.patch
 patches/wxWidgets-2.8.0-magic.patch
+patches/wxMac-2.8.3-brokengcc.patch
 script/make_ppm.pl
 t/01_load.t
 t/zy_pod_coverage.t

Modified: trunk/libalien-wxwidgets-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/META.yml?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/META.yml (original)
+++ trunk/libalien-wxwidgets-perl/META.yml Mon Sep 15 06:32:03 2008
@@ -1,6 +1,6 @@
 ---
 name: Alien-wxWidgets
-version: 0.37
+version: 0.39
 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.37
+    version: 0.39
   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=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/debian/changelog (original)
+++ trunk/libalien-wxwidgets-perl/debian/changelog Mon Sep 15 06:32:03 2008
@@ -1,3 +1,9 @@
+libalien-wxwidgets-perl (0.39-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 15 Sep 2008 09:29:22 +0300
+
 libalien-wxwidgets-perl (0.37-2) experimental; urgency=low
 
   * Bump (build-)dependencies on Wx to 2.8.

Modified: trunk/libalien-wxwidgets-perl/inc/My/Build/MacOSX_wx_config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/inc/My/Build/MacOSX_wx_config.pm?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/inc/My/Build/MacOSX_wx_config.pm (original)
+++ trunk/libalien-wxwidgets-perl/inc/My/Build/MacOSX_wx_config.pm Mon Sep 15 06:32:03 2008
@@ -18,6 +18,7 @@
                      $data{cxxflags} .= " $1 ";
                      ' '}eg;
 
+    $data{cxx} =~ s{-isysroot\s+\S+}{}g;
     $data{ld} = $data{cxx};
     $data{cxxflags} .= ' -UWX_PRECOMP ';
 

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=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm (original)
+++ trunk/libalien-wxwidgets-perl/lib/Alien/wxWidgets.pm Mon Sep 15 06:32:03 2008
@@ -43,7 +43,7 @@
                       instantiate   => 'config';
 
 our $AUTOLOAD;
-our $VERSION = '0.37';
+our $VERSION = '0.39';
 our %VALUES;
 our $dont_remap;
 

Modified: trunk/libalien-wxwidgets-perl/patches/data
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libalien-wxwidgets-perl/patches/data?rev=25159&op=diff
==============================================================================
--- trunk/libalien-wxwidgets-perl/patches/data (original)
+++ trunk/libalien-wxwidgets-perl/patches/data Mon Sep 15 06:32:03 2008
@@ -1,4 +1,4 @@
-my $VERSION = '2.8.7';
+my $VERSION = '2.8.8';
 my $URL     = "http://prdownloads.sourceforge.net/wxwindows";
 my $BASE    = 'wxWidgets';
 # $TYPE from Build.PL




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