Hello community,
here is the log from the commit of package perl-Devel-CheckBin for
openSUSE:Factory checked in at 2015-05-02 17:45:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Devel-CheckBin (Old)
and /work/SRC/openSUSE:Factory/.perl-Devel-CheckBin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Devel-CheckBin"
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Devel-CheckBin/perl-Devel-CheckBin.changes
2014-09-30 19:42:07.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Devel-CheckBin.new/perl-Devel-CheckBin.changes
2015-05-02 17:45:28.000000000 +0200
@@ -1,0 +2,10 @@
+Thu Apr 30 05:49:02 UTC 2015 - [email protected]
+
+- updated to 0.03
+ see /usr/share/doc/packages/perl-Devel-CheckBin/Changes
+
+ 0.03 2015-04-30T00:47:41Z
+
+ - re-packaging with EU::MM
+
+-------------------------------------------------------------------
Old:
----
Devel-CheckBin-0.02.tar.gz
New:
----
Devel-CheckBin-0.03.tar.gz
cpanspec.yml
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Devel-CheckBin.spec ++++++
--- /var/tmp/diff_new_pack.7kO5mm/_old 2015-05-02 17:45:30.000000000 +0200
+++ /var/tmp/diff_new_pack.7kO5mm/_new 2015-05-02 17:45:30.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Devel-CheckBin
#
-# 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,22 +17,20 @@
Name: perl-Devel-CheckBin
-Version: 0.02
+Version: 0.03
Release: 0
%define cpan_name Devel-CheckBin
-Summary: Check that a command is available
+Summary: Check That a Command Is Available
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Devel-CheckBin/
-Source:
http://www.cpan.org/authors/id/T/TO/TOKUHIROM/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/T/TO/TOKUHIROM/%{cpan_name}-%{version}.tar.gz
+Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(CPAN::Meta)
-BuildRequires: perl(CPAN::Meta::Prereqs)
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.52
-BuildRequires: perl(Module::Build) >= 0.38
BuildRequires: perl(Test::More) >= 0.98
BuildRequires: perl(parent)
Requires: perl(ExtUtils::MakeMaker) >= 6.52
@@ -47,18 +45,19 @@
%setup -q -n %{cpan_name}-%{version}
%build
-%{__perl} Build.PL installdirs=vendor
-./Build build flags=%{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__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
%defattr(-,root,root,755)
-%doc Changes cpanfile LICENSE README.md
+%doc Changes LICENSE minil.toml README.md
%changelog
++++++ Devel-CheckBin-0.02.tar.gz -> Devel-CheckBin-0.03.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/Build.PL
new/Devel-CheckBin-0.03/Build.PL
--- old/Devel-CheckBin-0.02/Build.PL 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/Build.PL 1970-01-01 01:00:00.000000000 +0100
@@ -1,69 +0,0 @@
-# =========================================================================
-# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA.
-# DO NOT EDIT DIRECTLY.
-# =========================================================================
-
-use 5.008_001;
-
-use strict;
-use warnings;
-use utf8;
-
-use Module::Build;
-use File::Basename;
-use File::Spec;
-use CPAN::Meta;
-use CPAN::Meta::Prereqs;
-
-my %args = (
- license => 'perl',
- dynamic_config => 0,
-
- configure_requires => {
- 'Module::Build' => 0.38,
- },
-
- name => 'Devel-CheckBin',
- module_name => 'Devel::CheckBin',
- allow_pureperl => 0,
-
- script_files => [glob('script/*'), glob('bin/*')],
- c_source => [qw()],
-
- 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();
-
-my $mbmeta = CPAN::Meta->load_file('MYMETA.json');
-my $meta = CPAN::Meta->load_file('META.json');
-my $prereqs_hash = CPAN::Meta::Prereqs->new(
- $meta->prereqs
-)->with_merged_prereqs(
- CPAN::Meta::Prereqs->new($mbmeta->prereqs)
-)->as_string_hash;
-my $mymeta = CPAN::Meta->new(
- {
- %{$meta->as_struct},
- prereqs => $prereqs_hash
- }
-);
-print "Merging cpanfile prereqs to MYMETA.yml\n";
-$mymeta->save('MYMETA.yml', { version => 1.4 });
-print "Merging cpanfile prereqs to MYMETA.json\n";
-$mymeta->save('MYMETA.json', { version => 2 });
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/Changes
new/Devel-CheckBin-0.03/Changes
--- old/Devel-CheckBin-0.02/Changes 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/Changes 2015-04-30 02:47:48.000000000 +0200
@@ -1,5 +1,9 @@
Revision history for Perl extension Devel-CheckBin
+0.03 2015-04-30T00:47:41Z
+
+ - re-packaging with EU::MM
+
0.02 2013-08-14T03:17:03Z
- re-packaging
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/MANIFEST
new/Devel-CheckBin-0.03/MANIFEST
--- old/Devel-CheckBin-0.02/MANIFEST 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/MANIFEST 2015-04-30 02:47:48.000000000 +0200
@@ -1,10 +1,11 @@
-Build.PL
Changes
LICENSE
META.json
+Makefile.PL
README.md
cpanfile
lib/Devel/CheckBin.pm
+minil.toml
t/00_compile.t
t/01_can_run.t
t/02_can_run.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/META.json
new/Devel-CheckBin-0.03/META.json
--- old/Devel-CheckBin-0.02/META.json 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/META.json 2015-04-30 02:47:48.000000000 +0200
@@ -4,8 +4,10 @@
"tokuhirom <[email protected]>"
],
"dynamic_config" : 0,
- "generated_by" : "Minilla/v0.5.6",
- "license" : "perl_5",
+ "generated_by" : "Minilla/v2.4.0",
+ "license" : [
+ "perl_5"
+ ],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
@@ -19,21 +21,21 @@
"share",
"eg",
"examples",
- "author"
+ "author",
+ "builder"
]
},
"prereqs" : {
"configure" : {
"requires" : {
- "CPAN::Meta" : "0",
- "CPAN::Meta::Prereqs" : "0",
- "Module::Build" : "0.38"
+ "ExtUtils::MakeMaker" : "0"
}
},
"develop" : {
"requires" : {
"Test::CPAN::Meta" : "0",
- "Test::MinimumVersion" : "0.10108",
+ "Test::MinimumVersion::Fast" : "0.04",
+ "Test::PAUSE::Permissions" : "0.04",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
@@ -56,7 +58,7 @@
"provides" : {
"Devel::CheckBin" : {
"file" : "lib/Devel/CheckBin.pm",
- "version" : "0.02"
+ "version" : "0.03"
}
},
"release_status" : "stable",
@@ -70,5 +72,8 @@
"web" : "https://github.com/tokuhirom/Devel-CheckBin"
}
},
- "version" : "0.02"
+ "version" : "0.03",
+ "x_contributors" : [
+ "Graham Knop <[email protected]>"
+ ]
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/META.yml
new/Devel-CheckBin-0.03/META.yml
--- old/Devel-CheckBin-0.02/META.yml 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/META.yml 2015-04-30 02:47:48.000000000 +0200
@@ -3,18 +3,16 @@
author:
- 'tokuhirom <[email protected]>'
build_requires:
- File::Temp: 0
- Test::More: 0.98
+ File::Temp: '0'
+ Test::More: '0.98'
configure_requires:
- CPAN::Meta: 0
- CPAN::Meta::Prereqs: 0
- Module::Build: 0.38
+ ExtUtils::MakeMaker: '0'
dynamic_config: 0
-generated_by: 'Minilla/v0.5.6, CPAN::Meta::Converter version 2.131560'
+generated_by: 'Minilla/v2.4.0, CPAN::Meta::Converter version 2.141520'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
+ version: '1.4'
name: Devel-CheckBin
no_index:
directory:
@@ -25,17 +23,20 @@
- eg
- examples
- author
+ - builder
provides:
Devel::CheckBin:
file: lib/Devel/CheckBin.pm
- version: 0.02
+ version: '0.03'
requires:
- Exporter: 0
- ExtUtils::MakeMaker: 6.52
- parent: 0
- perl: 5.008001
+ Exporter: '0'
+ ExtUtils::MakeMaker: '6.52'
+ parent: '0'
+ perl: '5.008001'
resources:
bugtracker: https://github.com/tokuhirom/Devel-CheckBin/issues
homepage: https://github.com/tokuhirom/Devel-CheckBin
repository: git://github.com/tokuhirom/Devel-CheckBin.git
-version: 0.02
+version: '0.03'
+x_contributors:
+ - 'Graham Knop <[email protected]>'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/Makefile.PL
new/Devel-CheckBin-0.03/Makefile.PL
--- old/Devel-CheckBin-0.02/Makefile.PL 1970-01-01 01:00:00.000000000 +0100
+++ new/Devel-CheckBin-0.03/Makefile.PL 2015-04-30 02:47:48.000000000 +0200
@@ -0,0 +1,62 @@
+# =========================================================================
+# THIS FILE IS AUTOMATICALLY GENERATED BY MINILLA.
+# DO NOT EDIT DIRECTLY.
+# =========================================================================
+
+use 5.008_001;
+use strict;
+
+use ExtUtils::MakeMaker;
+
+
+my %WriteMakefileArgs = (
+ NAME => 'Devel::CheckBin',
+ DISTNAME => 'Devel-CheckBin',
+ VERSION => '0.03',
+ CONFIGURE_REQUIRES => {
+ "ExtUtils::MakeMaker" => 0
+}
+,
+ BUILD_REQUIRES => {}
+,
+ TEST_REQUIRES => {
+ "File::Temp" => 0,
+ "Test::More" => "0.98"
+}
+,
+ PREREQ_PM => {
+ "Exporter" => 0,
+ "ExtUtils::MakeMaker" => "6.52",
+ "parent" => 0,
+ "perl" => "5.008001"
+}
+,
+);
+
+my $full_prereqs = {
+ "Exporter" => 0,
+ "ExtUtils::MakeMaker" => "6.52",
+ "File::Temp" => 0,
+ "Test::More" => "0.98",
+ "parent" => 0,
+ "perl" => "5.008001"
+}
+;
+
+unless (eval { ExtUtils::MakeMaker->VERSION(6.63_03) }) {
+ delete $WriteMakefileArgs{TEST_REQUIRES};
+ delete $WriteMakefileArgs{BUILD_REQUIRES};
+ $WriteMakefileArgs{PREREQ_PM} = $full_prereqs;
+}
+
+unless (eval { ExtUtils::MakeMaker->VERSION(6.52) }) {
+ delete $WriteMakefileArgs{CONFIGURE_REQUIRES};
+}
+
+unless (eval { ExtUtils::MakeMaker->VERSION(6.57_01) }) {
+ use File::Copy;
+ copy('META.yml', 'MYMETA.yml') or warn "META.yml: $!";
+ copy('META.json', 'MYMETA.json') or warn "META.json: $!";
+}
+
+WriteMakefile(%WriteMakefileArgs);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/README.md
new/Devel-CheckBin-0.03/README.md
--- old/Devel-CheckBin-0.02/README.md 2013-08-14 05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/README.md 2015-04-30 02:47:48.000000000 +0200
@@ -14,8 +14,6 @@
If you want to use this from Makefile.PL or Build.PL, do not simply copy the
module into your distribution as this may cause problems when PAUSE and
search.cpan.org index the distro. Instead, use the 'configure\_requires'.
-
-
# LICENSE
Copyright (C) tokuhirom
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/lib/Devel/CheckBin.pm
new/Devel-CheckBin-0.03/lib/Devel/CheckBin.pm
--- old/Devel-CheckBin-0.02/lib/Devel/CheckBin.pm 2013-08-14
05:17:09.000000000 +0200
+++ new/Devel-CheckBin-0.03/lib/Devel/CheckBin.pm 2015-04-30
02:47:48.000000000 +0200
@@ -2,7 +2,7 @@
use strict;
use warnings;
use 5.008001;
-our $VERSION = "0.02";
+our $VERSION = "0.03";
use parent qw(Exporter);
our @EXPORT = qw(can_run check_bin);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Devel-CheckBin-0.02/minil.toml
new/Devel-CheckBin-0.03/minil.toml
--- old/Devel-CheckBin-0.02/minil.toml 1970-01-01 01:00:00.000000000 +0100
+++ new/Devel-CheckBin-0.03/minil.toml 2015-04-30 02:47:48.000000000 +0200
@@ -0,0 +1 @@
+module_maker="ExtUtilsMakeMaker"
++++++ 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
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module