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
Changes
MANIFEST
+META.json
META.yml
Makefile.PL
README
--- /dev/null
+{
+ "abstract" : "Perl interface to the sysinfo(2) Linux system call.",
+ "author" : [
+ "Vincent Pit <perl@profvince.com>"
+ ],
+ "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"
+}
---- #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 <perl@profvince.com>
-license: perl
-distribution_type: module
-configure_requires:
- ExtUtils::MakeMaker: 0
+ - 'Vincent Pit <perl@profvince.com>'
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
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<sysinfo>;
my $si = sysinfo;
print "$_: $si->{$_}\n" for keys %$si;
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.
<http://www.profvince.com/perl/cover/Linux-SysInfo>.
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.
=head1 VERSION
-Version 0.13
+Version 0.14
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.13';
+ $VERSION = '0.14';
}
=head1 SYNOPSIS