r63468 - in /trunk/libmodule-install-xsutil-perl: Changes META.yml debian/changelog lib/Module/Install/XSUtil.pm

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


Author: angelabad-guest
Date: Thu Oct  7 19:17:52 2010
New Revision: 63468

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

Modified:
    trunk/libmodule-install-xsutil-perl/Changes
    trunk/libmodule-install-xsutil-perl/META.yml
    trunk/libmodule-install-xsutil-perl/debian/changelog
    trunk/libmodule-install-xsutil-perl/lib/Module/Install/XSUtil.pm

Modified: trunk/libmodule-install-xsutil-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-xsutil-perl/Changes?rev=63468&op=diff
==============================================================================
--- trunk/libmodule-install-xsutil-perl/Changes (original)
+++ trunk/libmodule-install-xsutil-perl/Changes Thu Oct  7 19:17:52 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: trunk/libmodule-install-xsutil-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-xsutil-perl/META.yml?rev=63468&op=diff
==============================================================================
--- trunk/libmodule-install-xsutil-perl/META.yml (original)
+++ trunk/libmodule-install-xsutil-perl/META.yml Thu Oct  7 19:17:52 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: trunk/libmodule-install-xsutil-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-xsutil-perl/debian/changelog?rev=63468&op=diff
==============================================================================
--- trunk/libmodule-install-xsutil-perl/debian/changelog (original)
+++ trunk/libmodule-install-xsutil-perl/debian/changelog Thu Oct  7 19:17:52 2010
@@ -1,3 +1,9 @@
+libmodule-install-xsutil-perl (0.36-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Angel Abad <angelabad at gmail.com>  Thu, 07 Oct 2010 21:14:57 +0200
+
 libmodule-install-xsutil-perl (0.35-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libmodule-install-xsutil-perl/lib/Module/Install/XSUtil.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-install-xsutil-perl/lib/Module/Install/XSUtil.pm?rev=63468&op=diff
==============================================================================
--- trunk/libmodule-install-xsutil-perl/lib/Module/Install/XSUtil.pm (original)
+++ trunk/libmodule-install-xsutil-perl/lib/Module/Install/XSUtil.pm Thu Oct  7 19:17:52 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