commit perl-ExtUtils-CppGuess for openSUSE:Factory

2020-01-25 Thread root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2020-01-25 13:25:24

Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess (Old)
 and  /work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.26092 (New)


Package is "perl-ExtUtils-CppGuess"

Sat Jan 25 13:25:24 2020 rev:9 rq:767029 version:0.21

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess/perl-ExtUtils-CppGuess.changes
2019-09-05 12:34:42.051568822 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.26092/perl-ExtUtils-CppGuess.changes
 2020-01-25 13:25:32.416072844 +0100
@@ -1,0 +2,6 @@
+Fri Jan 24 03:08:52 UTC 2020 -  
+
+- updated to 0.21
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+---

Old:

  ExtUtils-CppGuess-0.20.tar.gz

New:

  ExtUtils-CppGuess-0.21.tar.gz



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.1EoRYh/_old  2020-01-25 13:25:33.192073184 +0100
+++ /var/tmp/diff_new_pack.1EoRYh/_new  2020-01-25 13:25:33.192073184 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-CppGuess
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.20
+Version:0.21
 Release:0
 %define cpan_name ExtUtils-CppGuess
 Summary:Guess C++ compiler and flags

++ ExtUtils-CppGuess-0.20.tar.gz -> ExtUtils-CppGuess-0.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.20/Changes 
new/ExtUtils-CppGuess-0.21/Changes
--- old/ExtUtils-CppGuess-0.20/Changes  2019-08-31 23:21:31.0 +0200
+++ new/ExtUtils-CppGuess-0.21/Changes  2020-01-23 16:24:44.0 +0100
@@ -1,4 +1,5 @@
-Revision history for Perl extension ExtUtils::CppGuess.
+0.21 2020-01-23
+- no give $Config{ccflags} in Module::Build as add not replace - thanks @xenu
 
 0.20Sat 31 Aug 22:20:32 BST 2019
 - no link -lstdc++ if -static-libstdc++ - thanks @andygrundman
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.20/META.json 
new/ExtUtils-CppGuess-0.21/META.json
--- old/ExtUtils-CppGuess-0.20/META.json2019-08-31 23:23:37.0 
+0200
+++ new/ExtUtils-CppGuess-0.21/META.json2020-01-23 16:25:32.0 
+0100
@@ -64,6 +64,6 @@
  "web" : "https://github.com/tsee/extutils-cppguess;
   }
},
-   "version" : "0.20",
+   "version" : "0.21",
"x_serialization_backend" : "JSON::PP version 4.00"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.20/META.yml 
new/ExtUtils-CppGuess-0.21/META.yml
--- old/ExtUtils-CppGuess-0.20/META.yml 2019-08-31 23:23:37.0 +0200
+++ new/ExtUtils-CppGuess-0.21/META.yml 2020-01-23 16:25:32.0 +0100
@@ -34,5 +34,5 @@
 resources:
   bugtracker: https://github.com/tsee/extutils-cppguess/issues
   repository: git://github.com/tsee/extutils-cppguess
-version: '0.20'
+version: '0.21'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.20/lib/ExtUtils/CppGuess.pm 
new/ExtUtils-CppGuess-0.21/lib/ExtUtils/CppGuess.pm
--- old/ExtUtils-CppGuess-0.20/lib/ExtUtils/CppGuess.pm 2019-08-31 
23:21:56.0 +0200
+++ new/ExtUtils-CppGuess-0.21/lib/ExtUtils/CppGuess.pm 2020-01-23 
16:24:53.0 +0100
@@ -172,7 +172,7 @@
 use File::Spec::Functions qw(catfile);
 use File::Temp qw(tempdir);
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 sub new {
 my( $class, %args ) = @_;
@@ -286,10 +286,10 @@
 }
 
 sub _get_cflags {
-  my $self = shift;
+  my ($self, $omit_ccflags) = @_;
   $self->guess_compiler or die;
   join ' ', '', map _trim_whitespace($_), grep defined && length,
-$self->_config->{ccflags},
+($omit_ccflags ? '' : $self->_config->{ccflags}),
 $self->{guess}{extra_cflags},
 $self->{extra_compiler_flags},
 ($self->is_clang ? '-Wno-reserved-user-defined-literal' : ()),
@@ -323,7 +323,10 @@
 my $self = shift;
 
 my $lflags = $self->_get_lflags;
-my $cflags = $self->_get_cflags;
+# We're omitting ccflags to avoid duplication of flags, because unlike
+# makemaker, we're appending to the compiler flags, not overriding
+# them. They already 

commit perl-ExtUtils-CppGuess for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2019-09-05 12:34:40

Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess (Old)
 and  /work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.7948 (New)


Package is "perl-ExtUtils-CppGuess"

Thu Sep  5 12:34:40 2019 rev:8 rq:727963 version:0.20

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess/perl-ExtUtils-CppGuess.changes
2019-07-11 13:07:40.691015068 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.7948/perl-ExtUtils-CppGuess.changes
  2019-09-05 12:34:42.051568822 +0200
@@ -1,0 +2,9 @@
+Mon Sep  2 08:03:51 UTC 2019 -  
+
+- updated to 0.20
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+  0.20Sat 31 Aug 22:20:32 BST 2019
+  - no link -lstdc++ if -static-libstdc++ - thanks @andygrundman
+
+---

Old:

  ExtUtils-CppGuess-0.19.tar.gz

New:

  ExtUtils-CppGuess-0.20.tar.gz



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.7ZBsix/_old  2019-09-05 12:34:42.575568719 +0200
+++ /var/tmp/diff_new_pack.7ZBsix/_new  2019-09-05 12:34:42.579568718 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.19
+Version:0.20
 Release:0
 %define cpan_name ExtUtils-CppGuess
 Summary:Guess C++ compiler and flags

++ ExtUtils-CppGuess-0.19.tar.gz -> ExtUtils-CppGuess-0.20.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.19/Changes 
new/ExtUtils-CppGuess-0.20/Changes
--- old/ExtUtils-CppGuess-0.19/Changes  2019-04-01 08:09:52.0 +0200
+++ new/ExtUtils-CppGuess-0.20/Changes  2019-08-31 23:21:31.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension ExtUtils::CppGuess.
 
+0.20Sat 31 Aug 22:20:32 BST 2019
+- no link -lstdc++ if -static-libstdc++ - thanks @andygrundman
+
 0.19Mon  1 Apr 07:08:46 BST 2019
 - support clang on Perl 5.14-16 with ExtUtils::ParseXS >= 3.04_01 (yes, 
really)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.19/META.json 
new/ExtUtils-CppGuess-0.20/META.json
--- old/ExtUtils-CppGuess-0.19/META.json2019-04-01 08:10:16.0 
+0200
+++ new/ExtUtils-CppGuess-0.20/META.json2019-08-31 23:23:37.0 
+0200
@@ -4,7 +4,7 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "perl_5"
],
@@ -64,6 +64,6 @@
  "web" : "https://github.com/tsee/extutils-cppguess;
   }
},
-   "version" : "0.19",
+   "version" : "0.20",
"x_serialization_backend" : "JSON::PP version 4.00"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.19/META.yml 
new/ExtUtils-CppGuess-0.20/META.yml
--- old/ExtUtils-CppGuess-0.19/META.yml 2019-04-01 08:10:16.0 +0200
+++ new/ExtUtils-CppGuess-0.20/META.yml 2019-08-31 23:23:37.0 +0200
@@ -15,7 +15,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -34,5 +34,5 @@
 resources:
   bugtracker: https://github.com/tsee/extutils-cppguess/issues
   repository: git://github.com/tsee/extutils-cppguess
-version: '0.19'
+version: '0.20'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.19/lib/ExtUtils/CppGuess.pm 
new/ExtUtils-CppGuess-0.20/lib/ExtUtils/CppGuess.pm
--- old/ExtUtils-CppGuess-0.19/lib/ExtUtils/CppGuess.pm 2019-04-01 
08:08:05.0 +0200
+++ new/ExtUtils-CppGuess-0.20/lib/ExtUtils/CppGuess.pm 2019-08-31 
23:21:56.0 +0200
@@ -172,7 +172,7 @@
 use File::Spec::Functions qw(catfile);
 use File::Temp qw(tempdir);
 
-our $VERSION = '0.19';
+our $VERSION = '0.20';
 
 sub new {
 my( $class, %args ) = @_;
@@ -255,8 +255,10 @@
 %guess = (
   compiler_command => 'g++',
   extra_cflags => '-xc++',
-  extra_lflags => '-lstdc++',
 );
+# Don't use -lstdc++ if Perl was linked with -static-libstdc++ (ActivePerl 
5.18+ on Windows)
+

commit perl-ExtUtils-CppGuess for openSUSE:Factory

2019-07-11 Thread root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2019-07-11 13:07:39

Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess (Old)
 and  /work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.4615 (New)


Package is "perl-ExtUtils-CppGuess"

Thu Jul 11 13:07:39 2019 rev:7 rq:691012 version:0.19

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess/perl-ExtUtils-CppGuess.changes
2018-01-09 14:51:09.673517966 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new.4615/perl-ExtUtils-CppGuess.changes
  2019-07-11 13:07:40.691015068 +0200
@@ -1,0 +2,33 @@
+Wed Apr  3 06:57:15 UTC 2019 - Stephan Kulow 
+
+- updated to 0.19
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+  0.19Mon  1 Apr 07:08:46 BST 2019
+  - support clang on Perl 5.14-16 with ExtUtils::ParseXS >= 3.04_01 (yes, 
really)
+  
+  0.18Sun 31 Mar 17:49:21 BST 2019
+  - improve clang detection
+  
+  0.17Sat 30 Mar 16:03:52 GMT 2019
+  - support Sun Studio compiler family
+  
+  0.16Sat 30 Mar 00:09:42 GMT 2019
+  - test output more if no clue about compiler
+  
+  0.15Fri 29 Mar 22:42:00 GMT 2019
+  - iostream_fname, cpp_flavor_defs methods
+  - add which actual compiler to use to generated MB and EUMM flags
+  - make the test sensitive to whether to #include with a ".h"
+  
+  0.14 Mon 25 Mar 21:13:36 GMT 2019
+  - add is_clang, unify OS-based detection
+  
+  0.13 Mon Mar 25 02:57:02 2019 +
+  - repo tidied slightly
+  - use Travis
+  - add compiler_command, linker_flags
+  - test all known configurations
+  - inhale knowledge from Inline::CPP
+
+---

Old:

  ExtUtils-CppGuess-0.12.tar.gz

New:

  ExtUtils-CppGuess-0.19.tar.gz



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.KAqG15/_old  2019-07-11 13:07:41.275014827 +0200
+++ /var/tmp/diff_new_pack.KAqG15/_new  2019-07-11 13:07:41.275014827 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-CppGuess
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,26 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.12
+Version:0.19
 Release:0
 %define cpan_name ExtUtils-CppGuess
-Summary:Guess C++ Compiler and Flags
-License:Artistic-1.0 or GPL-1.0+
+Summary:Guess C++ compiler and flags
+License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/ExtUtils-CppGuess/
+Url:https://metacpan.org/release/%{cpan_name}
 Source0:
https://cpan.metacpan.org/authors/id/E/ET/ETJ/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Capture::Tiny)
+BuildRequires:  perl(ExtUtils::CBuilder) >= 0.280231
+BuildRequires:  perl(ExtUtils::ParseXS) >= 3.35
 BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Test::More) >= 0.88
 Requires:   perl(Capture::Tiny)
+Requires:   perl(ExtUtils::ParseXS) >= 3.35
 %{perl_requires}
 # MANUAL BEGIN
 BuildRequires:  gcc-c++
@@ -48,11 +52,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install

++ ExtUtils-CppGuess-0.12.tar.gz -> ExtUtils-CppGuess-0.19.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.12/Changes 
new/ExtUtils-CppGuess-0.19/Changes
--- old/ExtUtils-CppGuess-0.12/Changes  2017-10-21 19:13:08.0 +0200
+++ new/ExtUtils-CppGuess-0.19/Changes  2019-04-01 08:09:52.0 +0200
@@ -1,5 +1,32 @@
 Revision history for Perl extension ExtUtils::CppGuess.
 
+0.19Mon  1 Apr 07:08:46 BST 2019
+- support clang on Perl 5.14-16 with ExtUtils::ParseXS >= 3.04_01 (yes, 
really)
+
+0.18Sun 31 Mar 17:49:21 BST 2019
+- 

commit perl-ExtUtils-CppGuess for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2018-01-09 14:50:35

Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess (Old)
 and  /work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new (New)


Package is "perl-ExtUtils-CppGuess"

Tue Jan  9 14:50:35 2018 rev:6 rq:554838 version:0.12

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-ExtUtils-CppGuess/perl-ExtUtils-CppGuess.changes
2015-09-17 09:21:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
   2018-01-09 14:51:09.673517966 +0100
@@ -1,0 +2,9 @@
+Thu Nov  9 06:18:00 UTC 2017 - co...@suse.com
+
+- updated to 0.12
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+  0.12 Sat Oct 21 18:12:51 BST 2017
+  - Fix tests on 5.26 without '.' in @INC (kentfredric)
+
+---

Old:

  ExtUtils-CppGuess-0.11.tar.gz

New:

  ExtUtils-CppGuess-0.12.tar.gz



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.veuddU/_old  2018-01-09 14:51:10.133496400 +0100
+++ /var/tmp/diff_new_pack.veuddU/_new  2018-01-09 14:51:10.137496213 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-CppGuess
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.11
+Version:0.12
 Release:0
 %define cpan_name ExtUtils-CppGuess
 Summary:Guess C++ Compiler and Flags
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/ExtUtils-CppGuess/
-Source0:
http://www.cpan.org/authors/id/D/DA/DAVIDO/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/E/ET/ETJ/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -41,9 +41,8 @@
 'ExtUtils::CppGuess' attempts to guess the system's C++ compiler that is
 compatible with the C compiler that your perl was built with.
 
-It can generate the necessary options to the the Module::Build manpage
-constructor or to the ExtUtils::MakeMaker manpage's 'WriteMakefile'
-function.
+It can generate the necessary options to the Module::Build constructor or
+to ExtUtils::MakeMaker's 'WriteMakefile' function.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ ExtUtils-CppGuess-0.11.tar.gz -> ExtUtils-CppGuess-0.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.11/Changes 
new/ExtUtils-CppGuess-0.12/Changes
--- old/ExtUtils-CppGuess-0.11/Changes  2015-09-10 21:13:15.0 +0200
+++ new/ExtUtils-CppGuess-0.12/Changes  2017-10-21 19:13:08.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension ExtUtils::CppGuess.
 
+0.12   Sat Oct 21 18:12:51 BST 2017
+- Fix tests on 5.26 without '.' in @INC (kentfredric)
+
 0.11   Thu Sep 10 13:12:17 MDT 2015
 - Add leading whitespace to $cflags in _get_cflags (bulk88)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.11/META.json 
new/ExtUtils-CppGuess-0.12/META.json
--- old/ExtUtils-CppGuess-0.11/META.json2015-09-10 21:13:48.0 
+0200
+++ new/ExtUtils-CppGuess-0.12/META.json2017-10-21 19:14:54.0 
+0200
@@ -4,13 +4,13 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001",
+   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter 
version 2.150001",
"license" : [
   "perl_5"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  "version" : "2"
+  "version" : 2
},
"name" : "ExtUtils-CppGuess",
"no_index" : {
@@ -58,5 +58,5 @@
  "web" : "https://github.com/tsee/extutils-cppguess;
   }
},
-   "version" : "0.11"
+   "version" : "0.12"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.11/META.yml 
new/ExtUtils-CppGuess-0.12/META.yml
--- old/ExtUtils-CppGuess-0.11/META.yml 2015-09-10 21:13:47.0 +0200
+++ new/ExtUtils-CppGuess-0.12/META.yml 2017-10-21 19:14:54.0 +0200
@@ -15,7 +15,7 @@
 configure_requires:
   

commit perl-ExtUtils-CppGuess for openSUSE:Factory

2015-09-17 Thread h_root
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.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
   2015-09-17 09:21:33.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep 15 08:44:36 UTC 2015 - co...@suse.com
+
+- 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.0 +0200
+++ /var/tmp/diff_new_pack.zD8LR8/_new  2015-09-17 09:21:33.0 +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.0 +0200
+++ new/ExtUtils-CppGuess-0.11/Changes  2015-09-10 21:13:15.0 +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.json2015-09-09 06:20:23.0 
+0200
+++ new/ExtUtils-CppGuess-0.11/META.json2015-09-10 21:13:48.0 
+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.0 +0200
+++ new/ExtUtils-CppGuess-0.11/META.yml 2015-09-10 21:13:47.0 +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.0 +0200
+++ new/ExtUtils-CppGuess-0.11/lib/ExtUtils/CppGuess.pm 2015-09-10 
21:10:29.0 +0200
@@ -12,9 +12,9 @@
 With L:
 
 use ExtUtils::CppGuess;
-
+
 my $guess = ExtUtils::CppGuess->new;
-
+
 WriteMakefile
   ( # MakeMaker args,
 $guess->makemaker_options,
@@ -23,7 +23,7 @@
 With L:
 
 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;




commit perl-ExtUtils-CppGuess for openSUSE:Factory

2015-09-11 Thread h_root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2015-09-11 09:04:40

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-04-16 14:13:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
   2015-09-11 09:04:47.0 +0200
@@ -1,0 +2,9 @@
+Thu Sep 10 09:39:07 UTC 2015 - co...@suse.com
+
+- updated to 0.10
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+  0.10   Tue Sep 11 21:15:30 MDT 2015
+  - Config's ccflags must always be used. (bulk88)
+
+---

Old:

  ExtUtils-CppGuess-0.09.tar.gz

New:

  ExtUtils-CppGuess-0.10.tar.gz



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.uUhlvU/_old  2015-09-11 09:04:48.0 +0200
+++ /var/tmp/diff_new_pack.uUhlvU/_new  2015-09-11 09:04:48.0 +0200
@@ -17,14 +17,14 @@
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.09
+Version:0.10
 Release:0
 %define cpan_name ExtUtils-CppGuess
 Summary:Guess C++ Compiler and Flags
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/ExtUtils-CppGuess/
-Source0:
http://www.cpan.org/authors/id/E/ET/ETJ/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DA/DAVIDO/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++ ExtUtils-CppGuess-0.09.tar.gz -> ExtUtils-CppGuess-0.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.09/Changes 
new/ExtUtils-CppGuess-0.10/Changes
--- old/ExtUtils-CppGuess-0.09/Changes  2015-04-11 17:08:52.0 +0200
+++ new/ExtUtils-CppGuess-0.10/Changes  2015-09-09 06:16:33.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension ExtUtils::CppGuess.
 
+0.10   Tue Sep 11 21:15:30 MDT 2015
+- Config's ccflags must always be used. (bulk88)
+
 0.09   Sat Apr 11 16:05:50 BST 2015
- Convert to EUMM
- Make tests divulge guessed options for better debugging
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.09/MANIFEST 
new/ExtUtils-CppGuess-0.10/MANIFEST
--- old/ExtUtils-CppGuess-0.09/MANIFEST 2015-04-11 17:10:39.0 +0200
+++ new/ExtUtils-CppGuess-0.10/MANIFEST 2015-09-09 06:19:41.0 +0200
@@ -2,6 +2,8 @@
 Changes
 MANIFEST   This list of files
 README
+META.json
+META.yml
 lib/ExtUtils/CppGuess.pm
 t/001_load.t
 t/010_module_build.t
@@ -15,5 +17,3 @@
 t/module/t/001_load.t
 t/module/t/002_base.t
 t/module/typemap
-META.yml Module YAML meta-data (added by 
MakeMaker)
-META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.09/META.json 
new/ExtUtils-CppGuess-0.10/META.json
--- old/ExtUtils-CppGuess-0.09/META.json2015-04-11 17:10:39.0 
+0200
+++ new/ExtUtils-CppGuess-0.10/META.json2015-09-09 06:20:23.0 
+0200
@@ -4,7 +4,7 @@
   "unknown"
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.052, CPAN::Meta::Converter 
version 2.150001",
+   "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001",
"license" : [
   "perl_5"
],
@@ -58,6 +58,5 @@
  "web" : "https://github.com/tsee/extutils-cppguess;
   }
},
-   "version" : "0.09"
+   "version" : "0.10"
 }
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.09/META.yml 
new/ExtUtils-CppGuess-0.10/META.yml
--- old/ExtUtils-CppGuess-0.09/META.yml 2015-04-11 17:10:39.0 +0200
+++ new/ExtUtils-CppGuess-0.10/META.yml 2015-09-09 06:20:23.0 +0200
@@ -15,7 +15,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.052, CPAN::Meta::Converter 
version 2.150001'
+generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter 
version 2.150001'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,5 +30,4 

commit perl-ExtUtils-CppGuess for openSUSE:Factory

2015-04-16 Thread h_root
Hello community,

here is the log from the commit of package perl-ExtUtils-CppGuess for 
openSUSE:Factory checked in at 2015-04-16 14:13:29

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
2014-06-16 21:30:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
   2015-04-16 14:13:32.0 +0200
@@ -1,0 +2,14 @@
+Tue Apr 14 19:29:47 UTC 2015 - co...@suse.com
+
+- updated to 0.09
+   see /usr/share/doc/packages/perl-ExtUtils-CppGuess/Changes
+
+  0.09   Sat Apr 11 16:05:50 BST 2015
+   - Convert to EUMM
+   - Make tests divulge guessed options for better debugging
+  
+  
+  0.08   Thu Jan 15 03:07:38 GMT 2015
+   - Update metadata
+
+---

Old:

  ExtUtils-CppGuess-0.07.tar.gz

New:

  ExtUtils-CppGuess-0.09.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-ExtUtils-CppGuess.spec ++
--- /var/tmp/diff_new_pack.lMVo3P/_old  2015-04-16 14:13:32.0 +0200
+++ /var/tmp/diff_new_pack.lMVo3P/_new  2015-04-16 14:13:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-ExtUtils-CppGuess
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   perl-ExtUtils-CppGuess
-Version:0.07
+Version:0.09
 Release:0
 %define cpan_name ExtUtils-CppGuess
-Summary:guess C++ compiler and flags
+Summary:Guess C++ Compiler and Flags
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/ExtUtils-CppGuess/
-Source: 
http://www.cpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/E/ET/ETJ/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
@@ -32,8 +33,9 @@
 BuildRequires:  perl(Module::Build)
 Requires:   perl(Capture::Tiny)
 %{perl_requires}
-# MANUAL
+# MANUAL BEGIN
 BuildRequires:  gcc-c++
+# MANUAL END
 
 %description
 'ExtUtils::CppGuess' attempts to guess the system's C++ compiler that is
@@ -47,14 +49,15 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor optimize=%{optflags}
-./Build build flags=%{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
+%{__make} %{?_smp_mflags}
 
 %check
-./Build test
+%{__make} test
 
 %install
-./Build install destdir=%{buildroot} create_packlist=0
+%perl_make_install
+%perl_process_packlist
 %perl_gen_filelist
 
 %files -f %{name}.files

++ ExtUtils-CppGuess-0.07.tar.gz - ExtUtils-CppGuess-0.09.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/Build.PL 
new/ExtUtils-CppGuess-0.09/Build.PL
--- old/ExtUtils-CppGuess-0.07/Build.PL 2011-07-07 23:15:37.0 +0200
+++ new/ExtUtils-CppGuess-0.09/Build.PL 1970-01-01 01:00:00.0 +0100
@@ -1,29 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use Module::Build;
-
-my $build = Module::Build-new
-  ( module_name= 'ExtUtils::CppGuess',
-license= 'perl',
-requires   = {
-'Capture::Tiny' = '0',
-'File::Basename' = '0',
-},
-build_requires  = {
-'Module::Build' = '0',
-},
-test_requires  = {
-'Capture::Tiny' = '0',
-'Module::Build' = '0',
-'ExtUtils::MakeMaker' = '0',
-'Test::More' = '0',
-'File::Spec' = '0',
-'ExtUtils::Manifest' = '0',
-'Fatal' = '0',
-'Cwd' = '0',
-},
-add_to_cleanup = [ 't/module_build', 't/makemaker' ],
-);
-
-$build-create_build_script;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/Changes 
new/ExtUtils-CppGuess-0.09/Changes
--- old/ExtUtils-CppGuess-0.07/Changes  2011-07-07 23:15:37.0 +0200
+++ new/ExtUtils-CppGuess-0.09/Changes  2015-04-11 17:08:52.0 +0200
@@ -1,5 +1,14 @@
 Revision history for Perl extension ExtUtils::CppGuess.
 
+0.09   Sat Apr 11 16:05:50 BST 2015
+   - Convert to EUMM
+   - Make tests divulge guessed options for better debugging
+
+
+0.08