[libalt-perl] 01/03: Imported Upstream version 0.16

Harlan Lieberman-Berg H.LiebermanBerg at gmail.com
Wed Aug 27 18:37:47 UTC 2014


This is an automated email from the git hooks/post-receive script.

hlieberman-guest pushed a commit to branch master
in repository libalt-perl.

commit 3218eeb80de8d4fdc72e2d06322b1eb7345f1ec8
Author: Harlan Lieberman-Berg <harlan at advertisin.com>
Date:   Wed Aug 27 11:34:26 2014 -0700

    Imported Upstream version 0.16
---
 Changes                 | 15 +++++++++++++++
 MANIFEST                |  1 +
 META.json               |  4 ++--
 META.yml                |  4 ++--
 Makefile.PL             |  4 ++--
 lib/Alt.pm              |  2 +-
 t/000-require-modules.t | 19 +++++++++++++++++++
 7 files changed, 42 insertions(+), 7 deletions(-)

diff --git a/Changes b/Changes
index 600dc9d..86d088a 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,18 @@
+0.16 Sat Aug 16 14:52:27 PDT 2014
+ - Fix Meta copyright
+
+0.15 Sat Aug 16 14:41:50 PDT 2014
+ - Change Meta email
+
+0.14 Sat Aug 16 10:42:42 PDT 2014
+ - Meta 0.0.2
+
+0.13 Fri Aug 15 19:51:14 PDT 2014
+ - Add t/000-require-modules.t
+
+0.12 Fri Aug 15 17:50:02 PDT 2014
+ - Add t/000-compile-modules.t
+
 0.11 Sat Aug  2 09:55:57 PDT 2014
  - Fix Copyright years.
 
diff --git a/MANIFEST b/MANIFEST
index dfe32f3..2e57e55 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -11,6 +11,7 @@ lib/Alt.pm
 lib/Alt.pod
 lib/Alt/Assert.pm
 lib/Alt/Assert.pod
+t/000-require-modules.t
 t/alt.t
 t/assert.t
 t/lib/Alt/Bar/one.pm
diff --git a/META.json b/META.json
index 28fbd3c..1fce7b4 100644
--- a/META.json
+++ b/META.json
@@ -1,7 +1,7 @@
 {
    "abstract" : "Alternate Module Implementations",
    "author" : [
-      "Ingy döt Net <ingy at ingy.net>"
+      "Ingy döt Net <ingy at cpan.org>"
    ],
    "dynamic_config" : 0,
    "generated_by" : "Dist::Zilla version 5.019, CPAN::Meta::Converter version 2.132830",
@@ -55,6 +55,6 @@
          "web" : "https://github.com/ingydotnet/alt-pm"
       }
    },
-   "version" : "0.11"
+   "version" : "0.16"
 }
 
diff --git a/META.yml b/META.yml
index dfb9bcc..3562ea3 100644
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 ---
 abstract: 'Alternate Module Implementations'
 author:
-  - 'Ingy döt Net <ingy at ingy.net>'
+  - 'Ingy döt Net <ingy at cpan.org>'
 build_requires:
   Test::Exception: '0'
 configure_requires:
@@ -25,4 +25,4 @@ resources:
   bugtracker: https://github.com/ingydotnet/alt-pm/issues
   homepage: https://github.com/ingydotnet/alt-pm
   repository: https://github.com/ingydotnet/alt-pm.git
-version: '0.11'
+version: '0.16'
diff --git a/Makefile.PL b/Makefile.PL
index c483c88..8016fc5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -11,7 +11,7 @@ use ExtUtils::MakeMaker 6.30;
 
 my %WriteMakefileArgs = (
   "ABSTRACT" => "Alternate Module Implementations",
-  "AUTHOR" => "Ingy d\x{f6}t Net <ingy\@ingy.net>",
+  "AUTHOR" => "Ingy d\x{f6}t Net <ingy\@cpan.org>",
   "CONFIGURE_REQUIRES" => {
     "ExtUtils::MakeMaker" => "6.30"
   },
@@ -23,7 +23,7 @@ my %WriteMakefileArgs = (
   "TEST_REQUIRES" => {
     "Test::Exception" => 0
   },
-  "VERSION" => "0.11",
+  "VERSION" => "0.16",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff --git a/lib/Alt.pm b/lib/Alt.pm
index d69d88f..8ad6893 100644
--- a/lib/Alt.pm
+++ b/lib/Alt.pm
@@ -1,2 +1,2 @@
 package Alt;
-our $VERSION = '0.11';
+our $VERSION = '0.16';
diff --git a/t/000-require-modules.t b/t/000-require-modules.t
new file mode 100644
index 0000000..458a8a4
--- /dev/null
+++ b/t/000-require-modules.t
@@ -0,0 +1,19 @@
+# This test does a basic `use` check on all the code.
+use Test::More;
+
+use File::Find;
+
+sub test {
+    -f and /\.pm$/ or return;
+    s{^lib[/\\]}{};
+    s{\.pm$}{};
+    s{[/\\]}{::}g;
+    ok eval("require $_; 1"), "require $_; # OK";
+}
+
+find {
+    wanted => \&test,
+    no_chdir => 1,
+}, 'lib';
+
+done_testing;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libalt-perl.git



More information about the Pkg-perl-cvs-commits mailing list