From: Vincent Pit Date: Sun, 1 Sep 2013 15:20:05 +0000 (+0200) Subject: This is 0.14 X-Git-Tag: v0.14^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=171099abd058a217d30a7b7f4e4a9625de8094cd This is 0.14 --- diff --git a/Changes b/Changes index d4cbc96..baf551e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Linux-SysInfo +0.14 2013-09-01 15:20 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.13 can skip this update. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + + Tst : Threads tests will not fail anymore if resources constraints + prevent the system from creating all the required threads. + 0.13 2010-03-05 22:50 UTC + Fix : t/30-threads.t will not be correctly skipped for perls with ithreads but without threads.pm. Thanks David Cantrell for diff --git a/MANIFEST b/MANIFEST index ff91fcd..e12c298 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,6 @@ Changes MANIFEST +META.json META.yml Makefile.PL README diff --git a/META.json b/META.json new file mode 100644 index 0000000..2bef45b --- /dev/null +++ b/META.json @@ -0,0 +1,60 @@ +{ + "abstract" : "Perl interface to the sysinfo(2) Linux system call.", + "author" : [ + "Vincent Pit " + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "Linux-SysInfo", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "Exporter" : "0", + "ExtUtils::MakeMaker" : "0", + "Test::More" : "0", + "XSLoader" : "0", + "base" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : { + "Exporter" : "0", + "XSLoader" : "0", + "base" : "0", + "perl" : "5.006" + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.cpan.org/Dist/Display.html?Name=Linux-SysInfo" + }, + "homepage" : "http://search.cpan.org/dist/Linux-SysInfo/", + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git" + } + }, + "version" : "0.14" +} diff --git a/META.yml b/META.yml index 511f722..3ba15fb 100644 --- a/META.yml +++ b/META.yml @@ -1,35 +1,34 @@ ---- #YAML:1.0 -name: Linux-SysInfo -version: 0.13 -abstract: Perl interface to the sysinfo(2) Linux system call. +--- +abstract: 'Perl interface to the sysinfo(2) Linux system call.' author: - - Vincent Pit -license: perl -distribution_type: module -configure_requires: - ExtUtils::MakeMaker: 0 + - 'Vincent Pit ' build_requires: - base: 0 - Exporter: 0 - ExtUtils::MakeMaker: 0 - Test::More: 0 - XSLoader: 0 + Exporter: 0 + ExtUtils::MakeMaker: 0 + Test::More: 0 + XSLoader: 0 + base: 0 +configure_requires: + ExtUtils::MakeMaker: 0 +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: Linux-SysInfo +no_index: + directory: + - t + - inc requires: - base: 0 - Exporter: 0 - perl: 5.006 - XSLoader: 0 + Exporter: 0 + XSLoader: 0 + base: 0 + perl: 5.006 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Linux-SysInfo - homepage: http://search.cpan.org/dist/Linux-SysInfo/ - license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git -no_index: - directory: - - t - - inc -generated_by: ExtUtils::MakeMaker version 6.56 -meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 -dynamic_config: 1 + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Linux-SysInfo + homepage: http://search.cpan.org/dist/Linux-SysInfo/ + license: http://dev.perl.org/licenses/ + repository: http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git +version: 0.14 diff --git a/README b/README index e158e83..a01f1c8 100644 --- a/README +++ b/README @@ -2,10 +2,10 @@ NAME Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call. VERSION - Version 0.13 + Version 0.14 SYNOPSIS - use Linux::SysInfo qw/sysinfo/; + use Linux::SysInfo qw; my $si = sysinfo; print "$_: $si->{$_}\n" for keys %$si; @@ -97,6 +97,9 @@ BINARY COMPATIBILITY DEPENDENCIES perl 5.6. + A C compiler. This module may happen to build with a C++ compiler as + well, but don't rely on it, as no guarantee is made in this regard. + SEE ALSO The sysinfo(2) man page. @@ -128,7 +131,7 @@ SUPPORT . COPYRIGHT & LICENSE - Copyright 2007,2008,2009,2010 Vincent Pit, all rights reserved. + Copyright 2007,2008,2009,2010,2013 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/Linux/SysInfo.pm b/lib/Linux/SysInfo.pm index 9471da1..6332a94 100644 --- a/lib/Linux/SysInfo.pm +++ b/lib/Linux/SysInfo.pm @@ -11,13 +11,13 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call. =head1 VERSION -Version 0.13 +Version 0.14 =cut our $VERSION; BEGIN { - $VERSION = '0.13'; + $VERSION = '0.14'; } =head1 SYNOPSIS