Hello community,
here is the log from the commit of package perl-ExtUtils-CppGuess for
openSUSE:Factory checked in at 2015-09-17 09:21:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess (Old)
and /work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-ExtUtils-CppGuess"
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess/perl-ExtUtils-CppGuess.changes
2015-09-11 09:04:47.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
2015-09-17 09:21:33.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Sep 15 08:44:36 UTC 2015 - [email protected]
+
+- updated to 0.11
+ see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+-------------------------------------------------------------------
Old:
----
ExtUtils-CppGuess-0.10.tar.gz
New:
----
ExtUtils-CppGuess-0.11.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-ExtUtils-CppGuess.spec ++++++
--- /var/tmp/diff_new_pack.zD8LR8/_old 2015-09-17 09:21:33.000000000 +0200
+++ /var/tmp/diff_new_pack.zD8LR8/_new 2015-09-17 09:21:33.000000000 +0200
@@ -17,7 +17,7 @@
Name: perl-ExtUtils-CppGuess
-Version: 0.10
+Version: 0.11
Release: 0
%define cpan_name ExtUtils-CppGuess
Summary: Guess C++ Compiler and Flags
++++++ ExtUtils-CppGuess-0.10.tar.gz -> ExtUtils-CppGuess-0.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.10/Changes
new/ExtUtils-CppGuess-0.11/Changes
--- old/ExtUtils-CppGuess-0.10/Changes 2015-09-09 06:16:33.000000000 +0200
+++ new/ExtUtils-CppGuess-0.11/Changes 2015-09-10 21:13:15.000000000 +0200
@@ -1,6 +1,9 @@
Revision history for Perl extension ExtUtils::CppGuess.
-0.10 Tue Sep 11 21:15:30 MDT 2015
+0.11 Thu Sep 10 13:12:17 MDT 2015
+ - Add leading whitespace to $cflags in _get_cflags (bulk88)
+
+0.10 Tue Sep 08 21:15:30 MDT 2015
- Config's ccflags must always be used. (bulk88)
0.09 Sat Apr 11 16:05:50 BST 2015
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.10/META.json
new/ExtUtils-CppGuess-0.11/META.json
--- old/ExtUtils-CppGuess-0.10/META.json 2015-09-09 06:20:23.000000000
+0200
+++ new/ExtUtils-CppGuess-0.11/META.json 2015-09-10 21:13:48.000000000
+0200
@@ -58,5 +58,5 @@
"web" : "https://github.com/tsee/extutils-cppguess"
}
},
- "version" : "0.10"
+ "version" : "0.11"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.10/META.yml
new/ExtUtils-CppGuess-0.11/META.yml
--- old/ExtUtils-CppGuess-0.10/META.yml 2015-09-09 06:20:23.000000000 +0200
+++ new/ExtUtils-CppGuess-0.11/META.yml 2015-09-10 21:13:47.000000000 +0200
@@ -30,4 +30,4 @@
File::Basename: '0'
resources:
repository: git://github.com/tsee/extutils-cppguess
-version: '0.10'
+version: '0.11'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.10/lib/ExtUtils/CppGuess.pm
new/ExtUtils-CppGuess-0.11/lib/ExtUtils/CppGuess.pm
--- old/ExtUtils-CppGuess-0.10/lib/ExtUtils/CppGuess.pm 2015-09-09
06:17:03.000000000 +0200
+++ new/ExtUtils-CppGuess-0.11/lib/ExtUtils/CppGuess.pm 2015-09-10
21:10:29.000000000 +0200
@@ -12,9 +12,9 @@
With L<Extutils::MakeMaker>:
use ExtUtils::CppGuess;
-
+
my $guess = ExtUtils::CppGuess->new;
-
+
WriteMakefile
( # MakeMaker args,
$guess->makemaker_options,
@@ -23,7 +23,7 @@
With L<Module::Build>:
my $guess = ExtUtils::CppGuess->new;
-
+
my $build = Module::Build->new
( # Module::Build arguments
$guess->module_build_options,
@@ -111,7 +111,7 @@
use File::Basename qw();
use Capture::Tiny 'capture_merged';
-our $VERSION = '0.10';
+our $VERSION = '0.11';
sub new {
my( $class, %args ) = @_;
@@ -170,9 +170,9 @@
$self->guess_compiler or die;
- my $cflags = $self->_config->{ccflags};
- $cflags .= ' ' . $self->{guess}{extra_cflags};
- $cflags .= ' ' . $self->{extra_compiler_flags}
+ my $cflags = ' ' . $self->_config->{ccflags};
+ $cflags .= ' ' . $self->{guess}{extra_cflags};
+ $cflags .= ' ' . $self->{extra_compiler_flags}
if defined $self->{extra_compiler_flags};
return $cflags;