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

diff --git a/Changes b/Changes
index 72f2a577c2ea3ff3f2020b3b33078f7dc19769c8..7939405dfa7419767b9817e7b2917ca5d714ba4d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Linux-SysInfo
 
+0.07    2007-08-28 12:30 UTC
+        + Chg : s/require (XSLoader)/use $1/.
+        + Fix : Tests are now strict.
+
 0.06    2007-08-14 18:40 UTC
         + Fix : Building for perl-5.6.x and perl-5.9.{3,4}.
 
index d73e14e5e7b4a9f819a3d28243c833368438b253..22e761f2695a4854c6d4fb3897d05562e4c7566e 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Linux-SysInfo
-version:             0.06
+version:             0.07
 abstract:            Perl interface to the sysinfo(2) Linux system call.
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36
diff --git a/README b/README
index a2a3f55b4482fd1edef1724b2d2e7f1641ac9fa8..1095de656186f88a1e8789c69c0a0f7233eaf18b 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.06
+    Version 0.07
 
 SYNOPSIS
         use Linux::SysInfo qw/sysinfo/;
index e11d26b53483fc94e9b9cc7369bb021d70c3c2a1..98f991d6cfb1f11d334cd85b9c86e8d7d0e47081 100644 (file)
@@ -9,11 +9,11 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 =head1 VERSION
 
-Version 0.06
+Version 0.07
 
 =cut
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =head1 SYNOPSIS
 
@@ -38,9 +38,9 @@ our @EXPORT_OK = qw/sysinfo LS_HAS_EXTENDED/;
 
 our %EXPORT_TAGS = ( 'all' => [ @EXPORT_OK ] );
 
-require XSLoader;
+use XSLoader;
 
-XSLoader::load('Linux::SysInfo', $VERSION);
+XSLoader::load 'Linux::SysInfo', $VERSION;
 
 =head1 FUNCTIONS
 
index 3ba29b7aacb73531d02045b0c11eab71c212e438..6c4869138dc75ae7ffc00c464c5f9bb90cfd3333 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 1;
 
 BEGIN {
index 9952ac2d578e714996151959231e293929b611f7..1642ed4b294d6b4dd3bd4b8ac4f028dbb4dd8bbd 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More tests => 12 * 5;
 
 use Linux::SysInfo qw/sysinfo/;
index 892a596260d7fdbdce172d34cc0575c1418742e7..c8a270e6711320095c6f1ced0664cca6fa8e925d 100644 (file)
@@ -1,5 +1,8 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More;
 
 use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/;
index b80a670a543ebfa731a1818eee165de77303c373..10185bb66653d6069b4fc353b42b38654d2a93bd 100644 (file)
@@ -2,6 +2,7 @@
 
 use strict;
 use warnings;
+
 use Test::More tests => 3;
 
 sub not_in_file_ok {
index 1e95c3dc6897784a9bff7930462619480923e513..7775e608d046d625d33d383cd329e8197a3e5ede 100644 (file)
@@ -1,5 +1,8 @@
 #!perl
 
+use strict;
+use warnings;
+
 use Test::More;
 
 eval { require Test::Kwalitee; Test::Kwalitee->import() };
index 703f91de3601f3e0939d7d6e6e780d342c5c381f..5cc37aab1722c310a2de3338fb3aef3c6b8eb9fa 100644 (file)
@@ -1,6 +1,10 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More;
+
 eval "use Test::Pod::Coverage 1.04";
 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
 all_pod_coverage_ok();
diff --git a/t/pod.t b/t/pod.t
index 976d7cdfb2a829b1383ffe12570180e25c14668c..f1e1d3e375d2b802ad35abd32ba55f7f5eddacae 100644 (file)
--- a/t/pod.t
+++ b/t/pod.t
@@ -1,6 +1,10 @@
 #!perl -T
 
+use strict;
+use warnings;
+
 use Test::More;
+
 eval "use Test::Pod 1.14";
 plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
 all_pod_files_ok();