This is an automated email from the git hooks/post-receive script. gregoa pushed a commit to branch master in repository libextutils-libbuilder-perl.
commit 9127c6a9b5ce885f4bfe2caba5130316d574dbcd Author: gregor herrmann <[email protected]> Date: Sat Sep 27 16:52:15 2014 +0200 Imported Upstream version 0.06 --- Build.PL | 15 ++++++++++----- Changes | 6 ++++++ MANIFEST | 2 +- META.json | 47 ++++++++++++++++++++++++++++++++++++++++++++++ META.yml | 20 +++++++++++--------- lib/ExtUtils/LibBuilder.pm | 2 +- t/manifest.t | 13 ------------- 7 files changed, 76 insertions(+), 29 deletions(-) diff --git a/Build.PL b/Build.PL index d52edd2..d3cb805 100644 --- a/Build.PL +++ b/Build.PL @@ -7,13 +7,18 @@ my $builder = Module::Build->new( license => 'perl', dist_author => q{Alberto Simoes <[email protected]>}, dist_version_from => 'lib/ExtUtils/LibBuilder.pm', - build_requires => { - 'ExtUtils::CBuilder' => '0.23', - 'File::Spec' => 0, - 'File::Temp' => 0, - 'Test::More' => 0, + build_requires => { + 'ExtUtils::CBuilder' => '0.23', + 'File::Spec' => 0, + 'File::Temp' => 0, + 'Test::More' => 0, }, add_to_cleanup => [ 'ExtUtils-LibBuilder-*' ], + meta_merge => { + resources => { + repository => 'http://github.com/ambs/ExtUtils-LibBuilder', + }, + }, ); $builder->create_build_script(); diff --git a/Changes b/Changes index 3426be7..1914c34 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for ExtUtils-LibBuilder +0.06 Sun Aug 31 21:02:44 WEST 2014 + - Fixed metadata for metacpan (thanks to Gabor Szabo). + +0.05 Sun Aug 31 13:44:44 WEST 2014 + - Added metadata for metacpan. + 0.04 Sun Nov 21 13:38:35 WET 2010 - Trying my luck on IRIX... diff --git a/MANIFEST b/MANIFEST index b849a4b..f84f750 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5,7 +5,7 @@ README lib/ExtUtils/LibBuilder.pm t/00-load.t t/01-simple.t -t/manifest.t t/pod-coverage.t t/pod.t META.yml +META.json diff --git a/META.json b/META.json new file mode 100644 index 0000000..a9a67ac --- /dev/null +++ b/META.json @@ -0,0 +1,47 @@ +{ + "abstract" : "A tool to build C libraries.", + "author" : [ + "Alberto Simoes <[email protected]>" + ], + "dynamic_config" : 1, + "generated_by" : "Module::Build version 0.4208", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "ExtUtils-LibBuilder", + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::CBuilder" : "0.23", + "File::Spec" : "0", + "File::Temp" : "0", + "Test::More" : "0" + } + }, + "configure" : { + "requires" : { + "Module::Build" : "0.42" + } + } + }, + "provides" : { + "ExtUtils::LibBuilder" : { + "file" : "lib/ExtUtils/LibBuilder.pm", + "version" : "0.06" + } + }, + "release_status" : "stable", + "resources" : { + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://github.com/ambs/ExtUtils-LibBuilder" + } + }, + "version" : "0.06" +} diff --git a/META.yml b/META.yml index 6b504ae..00733d8 100644 --- a/META.yml +++ b/META.yml @@ -3,22 +3,24 @@ abstract: 'A tool to build C libraries.' author: - 'Alberto Simoes <[email protected]>' build_requires: - ExtUtils::CBuilder: 0.23 - File::Spec: 0 - File::Temp: 0 - Test::More: 0 + ExtUtils::CBuilder: '0.23' + File::Spec: '0' + File::Temp: '0' + Test::More: '0' configure_requires: - Module::Build: 0.36 -generated_by: 'Module::Build version 0.3607' + Module::Build: '0.42' +dynamic_config: 1 +generated_by: 'Module::Build version 0.4208, CPAN::Meta::Converter version 2.142060' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: ExtUtils-LibBuilder provides: ExtUtils::LibBuilder: file: lib/ExtUtils/LibBuilder.pm - version: 0.04 + version: '0.06' resources: license: http://dev.perl.org/licenses/ -version: 0.04 + repository: http://github.com/ambs/ExtUtils-LibBuilder +version: '0.06' diff --git a/lib/ExtUtils/LibBuilder.pm b/lib/ExtUtils/LibBuilder.pm index 509e7e5..45ea9ff 100644 --- a/lib/ExtUtils/LibBuilder.pm +++ b/lib/ExtUtils/LibBuilder.pm @@ -3,7 +3,7 @@ package ExtUtils::LibBuilder; use warnings; use strict; -our $VERSION = '0.04'; +our $VERSION = '0.06'; our $DEBUG = 0; use base 'ExtUtils::CBuilder'; diff --git a/t/manifest.t b/t/manifest.t deleted file mode 100644 index 45eb83f..0000000 --- a/t/manifest.t +++ /dev/null @@ -1,13 +0,0 @@ -#!perl -T - -use strict; -use warnings; -use Test::More; - -unless ( $ENV{RELEASE_TESTING} ) { - plan( skip_all => "Author tests not required for installation" ); -} - -eval "use Test::CheckManifest 0.9"; -plan skip_all => "Test::CheckManifest 0.9 required" if $@; -ok_manifest(); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libextutils-libbuilder-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
