Hello community,

here is the log from the commit of package perl-Devel-CheckCompiler for 
openSUSE:Factory checked in at 2016-11-20 18:19:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Devel-CheckCompiler (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Devel-CheckCompiler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Devel-CheckCompiler"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Devel-CheckCompiler/perl-Devel-CheckCompiler.changes
        2015-07-03 00:12:33.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-CheckCompiler.new/perl-Devel-CheckCompiler.changes
   2016-11-20 18:19:23.000000000 +0100
@@ -1,0 +2,9 @@
+Sat Nov 19 06:21:07 UTC 2016 - [email protected]
+
+- updated to 0.07
+   see /usr/share/doc/packages/perl-Devel-CheckCompiler/Changes
+
+  0.07 2016-11-18T15:32:45Z
+      - Correct test dependency
+
+-------------------------------------------------------------------

Old:
----
  Devel-CheckCompiler-0.06.tar.gz

New:
----
  Devel-CheckCompiler-0.07.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Devel-CheckCompiler.spec ++++++
--- /var/tmp/diff_new_pack.Ah1zqm/_old  2016-11-20 18:19:24.000000000 +0100
+++ /var/tmp/diff_new_pack.Ah1zqm/_new  2016-11-20 18:19:24.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-CheckCompiler
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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-Devel-CheckCompiler
-Version:        0.06
+Version:        0.07
 Release:        0
 %define cpan_name Devel-CheckCompiler
 Summary:        Check the compiler's availability
@@ -31,9 +31,8 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(ExtUtils::CBuilder)
-BuildRequires:  perl(Module::Build) >= 0.380000
+BuildRequires:  perl(Module::Build::Tiny) >= 0.035
 BuildRequires:  perl(Test::More) >= 0.98
-BuildRequires:  perl(Test::Requires)
 BuildRequires:  perl(parent)
 Requires:       perl(ExtUtils::CBuilder)
 Requires:       perl(parent)
@@ -46,14 +45,14 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build build flags=%{?_smp_mflags}
+%{__perl} Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
 
 %check
 ./Build test
 
 %install
-./Build install destdir=%{buildroot} create_packlist=0
+./Build install --destdir=%{buildroot} --create_packlist=0
 %perl_gen_filelist
 
 %files -f %{name}.files

++++++ Devel-CheckCompiler-0.06.tar.gz -> Devel-CheckCompiler-0.07.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/Build.PL 
new/Devel-CheckCompiler-0.07/Build.PL
--- old/Devel-CheckCompiler-0.06/Build.PL       2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/Build.PL       2016-11-18 16:32:56.000000000 
+0100
@@ -4,62 +4,9 @@
 # =========================================================================
 
 use 5.008_001;
-
 use strict;
-use warnings;
-use utf8;
-
-use Module::Build;
-use File::Basename;
-use File::Spec;
-
-my %args = (
-    license              => 'perl',
-    dynamic_config       => 0,
-
-    configure_requires => {
-        'Module::Build' => 0.38,
-    },
-
-    name            => 'Devel-CheckCompiler',
-    module_name     => 'Devel::CheckCompiler',
-    allow_pureperl => 0,
-
-    script_files => [glob('script/*'), glob('bin/*')],
-    c_source     => [qw()],
-    PL_files => {},
-
-    test_files           => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') 
? 't/ xt/' : 't/',
-    recursive_test_files => 1,
-
-
-);
-if (-d 'share') {
-    $args{share_dir} = 'share';
-}
-
-my $builder = Module::Build->subclass(
-    class => 'MyBuilder',
-    code => q{
-        sub ACTION_distmeta {
-            die "Do not run distmeta. Install Minilla and `minil install` 
instead.\n";
-        }
-        sub ACTION_installdeps {
-            die "Do not run installdeps. Run `cpanm --installdeps .` 
instead.\n";
-        }
-    }
-)->new(%args);
-$builder->create_build_script();
-
-use File::Copy;
 
-print "cp META.json MYMETA.json\n";
-copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
+use Module::Build::Tiny 0.035;
 
-if (-f 'META.yml') {
-    print "cp META.yml MYMETA.yml\n";
-    copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
-} else {
-    print "There is no META.yml... You may install this module from the 
repository...\n";
-}
+Build_PL();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/Changes 
new/Devel-CheckCompiler-0.07/Changes
--- old/Devel-CheckCompiler-0.06/Changes        2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/Changes        2016-11-18 16:32:56.000000000 
+0100
@@ -1,5 +1,8 @@
 Revision history for Perl extension Devel::CheckCompiler
 
+0.07 2016-11-18T15:32:45Z
+    - Correct test dependency
+
 0.06 2015-06-30T05:22:51Z
     - More strict C99 check code
       (tokuhirom)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/META.json 
new/Devel-CheckCompiler-0.07/META.json
--- old/Devel-CheckCompiler-0.06/META.json      2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/META.json      2016-11-18 16:32:56.000000000 
+0100
@@ -4,7 +4,7 @@
       "Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Minilla/v2.4.1",
+   "generated_by" : "Minilla/v3.0.5",
    "license" : [
       "perl_5"
    ],
@@ -28,13 +28,12 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "Test::More" : "0.98",
-            "Test::Requires" : "0"
+            "Test::More" : "0.98"
          }
       },
       "configure" : {
          "requires" : {
-            "Module::Build" : "0.38"
+            "Module::Build::Tiny" : "0.035"
          }
       },
       "develop" : {
@@ -62,7 +61,7 @@
       },
       "Devel::CheckCompiler" : {
          "file" : "lib/Devel/CheckCompiler.pm",
-         "version" : "0.06"
+         "version" : "0.07"
       }
    },
    "release_status" : "stable",
@@ -76,10 +75,11 @@
          "web" : "https://github.com/tokuhirom/Devel-CheckCompiler";
       }
    },
-   "version" : "0.06",
+   "version" : "0.07",
    "x_contributors" : [
       "Neil Bowers <[email protected]>",
       "Tokuhiro Matsuno <[email protected]>",
       "Syohei YOSHIDA <[email protected]>"
-   ]
+   ],
+   "x_serialization_backend" : "JSON::PP version 2.27400"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/META.yml 
new/Devel-CheckCompiler-0.07/META.yml
--- old/Devel-CheckCompiler-0.06/META.yml       2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/META.yml       2016-11-18 16:32:56.000000000 
+0100
@@ -4,11 +4,10 @@
   - 'Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>'
 build_requires:
   Test::More: '0.98'
-  Test::Requires: '0'
 configure_requires:
-  Module::Build: '0.38'
+  Module::Build::Tiny: '0.035'
 dynamic_config: 0
-generated_by: 'Minilla/v2.4.1, CPAN::Meta::Converter version 2.150001'
+generated_by: 'Minilla/v3.0.5, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -29,7 +28,7 @@
     file: lib/Devel/AssertC99.pm
   Devel::CheckCompiler:
     file: lib/Devel/CheckCompiler.pm
-    version: '0.06'
+    version: '0.07'
 requires:
   Exporter: '0'
   ExtUtils::CBuilder: '0'
@@ -40,8 +39,9 @@
   bugtracker: https://github.com/tokuhirom/Devel-CheckCompiler/issues
   homepage: https://github.com/tokuhirom/Devel-CheckCompiler
   repository: git://github.com/tokuhirom/Devel-CheckCompiler.git
-version: '0.06'
+version: '0.07'
 x_contributors:
   - 'Neil Bowers <[email protected]>'
   - 'Tokuhiro Matsuno <[email protected]>'
   - 'Syohei YOSHIDA <[email protected]>'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/README.md 
new/Devel-CheckCompiler-0.07/README.md
--- old/Devel-CheckCompiler-0.06/README.md      2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/README.md      2016-11-18 16:32:56.000000000 
+0100
@@ -39,7 +39,7 @@
 
 # AUTHOR
 
-Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>
+Tokuhiro Matsuno &lt;tokuhirom AAJKLFJEF@ GMAIL COM>
 
 # SEE ALSO
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/cpanfile 
new/Devel-CheckCompiler-0.07/cpanfile
--- old/Devel-CheckCompiler-0.06/cpanfile       2015-06-30 07:26:29.000000000 
+0200
+++ new/Devel-CheckCompiler-0.07/cpanfile       2016-11-18 16:32:56.000000000 
+0100
@@ -6,5 +6,4 @@
 
 on build => sub {
     requires 'Test::More', '0.98';
-    requires 'Test::Requires';
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-CheckCompiler-0.06/lib/Devel/CheckCompiler.pm 
new/Devel-CheckCompiler-0.07/lib/Devel/CheckCompiler.pm
--- old/Devel-CheckCompiler-0.06/lib/Devel/CheckCompiler.pm     2015-06-30 
07:26:29.000000000 +0200
+++ new/Devel-CheckCompiler-0.07/lib/Devel/CheckCompiler.pm     2016-11-18 
16:32:56.000000000 +0100
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use 5.008001;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 use parent qw/Exporter/;
 
 our @EXPORT = qw/check_c99 check_c99_or_exit check_compile/;


Reply via email to