r63465 - in /branches/upstream/libmodule-install-xsutil-perl/current: Changes META.yml lib/Module/Install/XSUtil.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Thu Oct 7 19:12:44 UTC 2010


Author: angelabad-guest
Date: Thu Oct  7 19:08:40 2010
New Revision: 63465

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63465
Log:
[svn-upgrade] new version libmodule-install-xsutil-perl (0.36)

Modified:
    branches/upstream/libmodule-install-xsutil-perl/current/Changes
    branches/upstream/libmodule-install-xsutil-perl/current/META.yml
    branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm

Modified: branches/upstream/libmodule-install-xsutil-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/Changes?rev=63465&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/Changes (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/Changes Thu Oct  7 19:08:40 2010
@@ -1,4 +1,8 @@
 Revision history for Perl extension Module::Install::XSUtil
+
+0.36 Thu Oct  7 16:49:04 2010
+    - Resolve RT #61660 (SREZIC): Support for ccache missing
+    - Resolve RT #61770 (bokutin): A typo in SYNOPSIS
 
 0.35 Wed Sep 29 23:46:17 2010
     - Checks C99 specification more strictly

Modified: branches/upstream/libmodule-install-xsutil-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/META.yml?rev=63465&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/META.yml (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/META.yml Thu Oct  7 19:08:40 2010
@@ -31,4 +31,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/gfx/Perl-Module-Install-XSUtil.git
-version: 0.35
+version: 0.36

Modified: branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm?rev=63465&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm Thu Oct  7 19:08:40 2010
@@ -2,7 +2,7 @@
 
 use 5.005_03;
 
-$VERSION = '0.35';
+$VERSION = '0.36';
 
 use Module::Install::Base;
 @ISA     = qw(Module::Install::Base);
@@ -231,7 +231,7 @@
 
     $tmpfile->close();
 
-    system $Config{cc}, '-c', $tmpfile->filename;
+    system "$Config{cc} -c " . $tmpfile->filename;
 
     (my $objname = File::Basename::basename($tmpfile->filename)) =~ s/\Q.c\E$/$Config{_o}/;
     unlink $objname or warn "Cannot unlink $objname (ignored): $!";
@@ -776,7 +776,7 @@
 
 =head1 VERSION
 
-This document describes Module::Install::XSUtil version 0.35.
+This document describes Module::Install::XSUtil version 0.36.
 
 =head1 SYNOPSIS
 
@@ -806,7 +806,7 @@
     # This is a special version of requires().
     # If XS::SomeFeature provides header files,
     # this will add its include paths into INC
-    requies_xs 'XS::SomeFeature';
+    requires_xs 'XS::SomeFeature';
 
 
 =head1 DESCRIPTION




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