]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/commitdiff
Importing Linux-SysInfo-0.10.tar.gz v0.10
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:41:34 +0000 (18:41 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:41:34 +0000 (18:41 +0200)
Changes
META.yml
Makefile.PL
README
lib/Linux/SysInfo.pm
t/00-load.t
t/92-pod-coverage.t

diff --git a/Changes b/Changes
index 64567c9a274e435b7f5369d9300118a2f1b2c4e2..7ecc441f1d2578b5eff5a5a163c7e29c08bacdde 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for Linux-SysInfo
 
+0.10    2008-03-10 15:40 UTC
+        + Doc : The usual set of POD typos.
+        + Fix : Ensure that we're on linux with $^O, as some smokers don't seem
+                to apply anymore the rule of "if it's in the Linux:: namespace,
+                then errors should be reported as FAILures only if we actually
+                are on linux".
+        + Tst : Tiny refinements.
+
 0.09    2008-03-09 13:00 UTC
         + Add : ':funcs' and ':consts' export tags.
         + Doc : Copyright update.
index b043869271d7f9031fb542e3cbd0587239131aa2..35759fe8a53faf140dcf7415326d200211ee95e6 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,11 +1,11 @@
 --- #YAML:1.0
 name:                Linux-SysInfo
-version:             0.09
+version:             0.10
 abstract:            Perl interface to the sysinfo(2) Linux system call.
 license:             perl
 author:              
     - Vincent Pit <perl@profvince.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
+generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
     Exporter:                      0
index a300844723fe9f40a8ed37415334aa1423089b8a..69df46f6691b65c2dc19bf6f200b31b7579566b6 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 use ExtUtils::MakeMaker;
 
+die 'OS unsupported' unless $^O && $^O eq 'linux';
+
 my $BUILD_REQUIRES = {
  'ExtUtils::MakeMaker' => 0,
  'Test::More'          => 0,
diff --git a/README b/README
index d7b75e15d7640dea5ee4e2430385072fef6258a3..1ecb696a8a6eeb56467adbae28dab268e64480f3 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 VERSION
-    Version 0.09
+    Version 0.10
 
 SYNOPSIS
         use Linux::SysInfo qw/sysinfo/;
@@ -49,7 +49,7 @@ FUNCTIONS
         Total swap space size.
 
     "freeswap"
-        Swap space stil available.
+        Swap space still available.
 
     "procs"
         Number of current processes.
index fcd299e5ccd951468dee98751e45704a958fe8e6..94a5afffeb13c0cba827fe4614c6ed69f9c9e152 100644 (file)
@@ -9,13 +9,13 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 =head1 VERSION
 
-Version 0.09
+Version 0.10
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.09';
+ $VERSION = '0.10';
 }
 
 =head1 SYNOPSIS
@@ -80,7 +80,7 @@ Total swap space size.
 
 =item C<freeswap>
 
-Swap space stil available.
+Swap space still available.
 
 =item C<procs>
 
index 3ba29b7aacb73531d02045b0c11eab71c212e438..6c4869138dc75ae7ffc00c464c5f9bb90cfd3333 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 1;
 
 BEGIN {
index fc40a57c2a4c56d56ddc0f1fe32737d11592d6f7..b19fa54cabc426fdb21cb082754b2f0710a4ec3f 100644 (file)
@@ -5,14 +5,12 @@ use Test::More;
 # Ensure a recent version of Test::Pod::Coverage
 my $min_tpc = 1.08;
 eval "use Test::Pod::Coverage $min_tpc";
-plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
-    if $@;
+plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage" if $@;
 
 # Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
 # but older versions don't recognize some common documentation styles
 my $min_pc = 0.18;
 eval "use Pod::Coverage $min_pc";
-plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
-    if $@;
+plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage" if $@;
 
 all_pod_coverage_ok();