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.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-ExtUtils-CppGuess.new/perl-ExtUtils-CppGuess.changes
       2015-04-16 14:13:32.000000000 +0200
@@ -1,0 +2,14 @@
+Tue Apr 14 19:29:47 UTC 2015 - [email protected]
+
+- 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.000000000 +0200
+++ /var/tmp/diff_new_pack.lMVo3P/_new  2015-04-16 14:13:32.000000000 +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.000000000 +0200
+++ new/ExtUtils-CppGuess-0.09/Build.PL 1970-01-01 01:00:00.000000000 +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.000000000 +0200
+++ new/ExtUtils-CppGuess-0.09/Changes  2015-04-11 17:08:52.000000000 +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   Thu Jan 15 03:07:38 GMT 2015
+       - Update metadata
+
+
 0.07   Thu Jul  7 17:00:00 CEST 2011
        - Fix for unknown enum `vtype' on solaris 2.11 (Tobias Leich)
           See 
http://www.cpantesters.org/cpan/report/a0cca9ee-39e3-11e0-83a5-34754e7aadc9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/MANIFEST 
new/ExtUtils-CppGuess-0.09/MANIFEST
--- old/ExtUtils-CppGuess-0.07/MANIFEST 2011-07-07 23:15:37.000000000 +0200
+++ new/ExtUtils-CppGuess-0.09/MANIFEST 2015-04-11 17:10:39.000000000 +0200
@@ -1,19 +1,19 @@
-Build.PL
+Makefile.PL
 Changes
-lib/ExtUtils/CppGuess.pm
 MANIFEST                       This list of files
-MANIFEST.SKIP
-META.yml
 README
+lib/ExtUtils/CppGuess.pm
 t/001_load.t
 t/010_module_build.t
 t/011_makemaker.t
 t/lib/TestUtils.pm
 t/module/Build.PL
 t/module/CppGuessTest.xs
-t/module/lib/CppGuessTest.pm
-t/module/Makefile.PL
 t/module/MANIFEST
+t/module/Makefile.PL
+t/module/lib/CppGuessTest.pm
 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.json                                Module JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/MANIFEST.SKIP 
new/ExtUtils-CppGuess-0.09/MANIFEST.SKIP
--- old/ExtUtils-CppGuess-0.07/MANIFEST.SKIP    2011-07-07 23:15:37.000000000 
+0200
+++ new/ExtUtils-CppGuess-0.09/MANIFEST.SKIP    1970-01-01 01:00:00.000000000 
+0100
@@ -1,80 +0,0 @@
-
-#!start included /opt/perl/modules/lib/perl5/ExtUtils/MANIFEST.SKIP
-# Avoid version control files.
-\bRCS\b
-\bCVS\b
-\bSCCS\b
-,v$
-\B\.svn\b
-\B\.git\b
-\B\.gitignore\b
-\b_darcs\b
-\B\.cvsignore$
-
-# Avoid VMS specific MakeMaker generated files
-\bDescrip.MMS$
-\bDESCRIP.MMS$
-\bdescrip.mms$
-
-# Avoid Makemaker generated and utility files.
-\bMANIFEST\.bak
-\bMakefile$
-\bblib/
-\bMakeMaker-\d
-\bpm_to_blib\.ts$
-\bpm_to_blib$
-\bblibdirs\.ts$         # 6.18 through 6.25 generated this
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\b_build/
-\bBuild.bat$
-\bBuild.COM$
-\bBUILD.COM$
-\bbuild.com$
-
-# Avoid temp and backup files.
-~$
-\.old$
-\#$
-\b\.#
-\.bak$
-\.tmp$
-\.#
-\.rej$
-
-# Avoid OS-specific files/dirs
-# Mac OSX metadata
-\B\.DS_Store
-# Mac OSX SMB mount metadata files
-\B\._
-
-# Avoid Devel::Cover and Devel::CoverX::Covered files.
-\bcover_db\b
-\bcovered\b
- 
-# Avoid MYMETA files
-^MYMETA\.
-#!end included /opt/perl/modules/lib/perl5/ExtUtils/MANIFEST.SKIP
-
-# Avoid configuration metadata file
-^MYMETA\.
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\bBuild.bat$
-\b_build
-\bBuild.COM$
-\bBUILD.COM$
-\bbuild.com$
-
-# Avoid archives of this distribution
-\bExtUtils-CppGuess-[\d\.\_]+
-
-# Ignore test byproducts
-CppGuessTest\.bs
-CppGuessTest\.c
-CppGuessTest\.o
-CppGuessTest\.obj
-^t/module/lib/CppGuessTest.xs$
-^t/module/MYMETA\.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/META.json 
new/ExtUtils-CppGuess-0.09/META.json
--- old/ExtUtils-CppGuess-0.07/META.json        1970-01-01 01:00:00.000000000 
+0100
+++ new/ExtUtils-CppGuess-0.09/META.json        2015-04-11 17:10:39.000000000 
+0200
@@ -0,0 +1,63 @@
+{
+   "abstract" : "unknown",
+   "author" : [
+      "unknown"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 7.052, CPAN::Meta::Converter 
version 2.150001",
+   "license" : [
+      "perl_5"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
+      "version" : "2"
+   },
+   "name" : "ExtUtils-CppGuess",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Capture::Tiny" : "0",
+            "File::Basename" : "0"
+         }
+      },
+      "test" : {
+         "requires" : {
+            "Capture::Tiny" : "0",
+            "Cwd" : "0",
+            "Data::Dumper" : "0",
+            "ExtUtils::MakeMaker" : "0",
+            "ExtUtils::Manifest" : "0",
+            "Fatal" : "0",
+            "File::Spec" : "0",
+            "Module::Build" : "0",
+            "Test::More" : "0"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "resources" : {
+      "repository" : {
+         "type" : "git",
+         "url" : "git://github.com/tsee/extutils-cppguess",
+         "web" : "https://github.com/tsee/extutils-cppguess";
+      }
+   },
+   "version" : "0.09"
+}
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/META.yml 
new/ExtUtils-CppGuess-0.09/META.yml
--- old/ExtUtils-CppGuess-0.07/META.yml 2011-07-07 23:15:37.000000000 +0200
+++ new/ExtUtils-CppGuess-0.09/META.yml 2015-04-11 17:10:39.000000000 +0200
@@ -1,26 +1,34 @@
 ---
-abstract: 'guess C++ compiler and flags'
+abstract: unknown
 author:
-  - 'Mattia Barbon <[email protected]>'
-  - 'Steffen Mueller <[email protected]>'
-  - 'Tobias Leich <[email protected]>'
+  - unknown
 build_requires:
-  Module::Build: 0
+  Capture::Tiny: '0'
+  Cwd: '0'
+  Data::Dumper: '0'
+  ExtUtils::MakeMaker: '0'
+  ExtUtils::Manifest: '0'
+  Fatal: '0'
+  File::Spec: '0'
+  Module::Build: '0'
+  Test::More: '0'
 configure_requires:
-  Module::Build: 0.36
-generated_by: 'Module::Build version 0.3624'
+  ExtUtils::MakeMaker: '0'
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 7.052, CPAN::Meta::Converter 
version 2.150001'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: ExtUtils-CppGuess
-provides:
-  ExtUtils::CppGuess:
-    file: lib/ExtUtils/CppGuess.pm
-    version: 0.07
+no_index:
+  directory:
+    - t
+    - inc
 requires:
-  Capture::Tiny: 0
-  File::Basename: 0
+  Capture::Tiny: '0'
+  File::Basename: '0'
 resources:
-  license: http://dev.perl.org/licenses/
-version: 0.07
+  repository: git://github.com/tsee/extutils-cppguess
+version: '0.09'
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/Makefile.PL 
new/ExtUtils-CppGuess-0.09/Makefile.PL
--- old/ExtUtils-CppGuess-0.07/Makefile.PL      1970-01-01 01:00:00.000000000 
+0100
+++ new/ExtUtils-CppGuess-0.09/Makefile.PL      2015-04-11 17:08:52.000000000 
+0200
@@ -0,0 +1,37 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+    NAME => 'ExtUtils::CppGuess',
+    VERSION_FROM => 'lib/ExtUtils/CppGuess.pm',
+    LICENSE => 'perl',
+    PREREQ_PM => {
+        'Capture::Tiny' => '0',
+        'File::Basename' => '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',
+        'Data::Dumper' => 0,
+    },
+    clean => { FILES => 't/module_build t/makemaker' },
+    META_MERGE => {
+      "meta-spec" => { version => 2 },
+      resources => {
+        repository => {
+          type => 'git',
+          url => 'git://github.com/tsee/extutils-cppguess',
+          web => 'https://github.com/tsee/extutils-cppguess',
+        },
+      },
+    },
+);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/lib/ExtUtils/CppGuess.pm 
new/ExtUtils-CppGuess-0.09/lib/ExtUtils/CppGuess.pm
--- old/ExtUtils-CppGuess-0.07/lib/ExtUtils/CppGuess.pm 2011-07-07 
23:15:37.000000000 +0200
+++ new/ExtUtils-CppGuess-0.09/lib/ExtUtils/CppGuess.pm 2015-04-11 
17:08:52.000000000 +0200
@@ -111,7 +111,7 @@
 use File::Basename qw();
 use Capture::Tiny 'capture_merged';
 
-our $VERSION = '0.07';
+our $VERSION = '0.09';
 
 sub new {
     my( $class, %args ) = @_;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ExtUtils-CppGuess-0.07/t/001_load.t 
new/ExtUtils-CppGuess-0.09/t/001_load.t
--- old/ExtUtils-CppGuess-0.07/t/001_load.t     2011-07-07 23:15:37.000000000 
+0200
+++ new/ExtUtils-CppGuess-0.09/t/001_load.t     2015-04-11 17:08:52.000000000 
+0200
@@ -1,6 +1,16 @@
 #!/usr/bin/perl -w
 
 use strict;
-use Test::More tests => 1;
+use warnings;
+use Data::Dumper;
+use Test::More tests => 2;
 
-use_ok( 'ExtUtils::CppGuess' );
+my $MODULE = 'ExtUtils::CppGuess';
+use_ok($MODULE);
+
+my $guess = $MODULE->new;
+isa_ok $guess, $MODULE;
+
+diag 'EUMM:', Dumper { $guess->makemaker_options };
+diag '---';
+diag 'MB:', Dumper { $guess->module_build_options };

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
preamble: |-
 BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: -
#./Build build flags=%{?_smp_mflags} --myflag

Reply via email to