PSARC 2016/024 Add Perl 5.22, Remove Perl 5.20
authorCraig Mohrman <craig.mohrman@oracle.com>
Fri, 04 Mar 2016 13:37:19 -0800
changeset 5554 63d6ec724bea
parent 5553 58119a697acd
child 5555 192cd077bf22
PSARC 2016/024 Add Perl 5.22, Remove Perl 5.20 22548084 add perl 5.22 to Solaris 22653597 problem in UTILITY/PERL
components/perl/perl522/Makefile
components/perl/perl522/patches/0001-perl-126862-ensure-File-Spec-canonpath-preserves-tai.patch
components/perl/perl522/patches/1000_largefiles.patch
components/perl/perl522/perl-522.p5m
components/perl/perl522/perl.license
components/perl/perl522/test/results-i386.master
components/perl/perl522/test/results-sparc.master
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/Makefile	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,164 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+
+#
+# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+#
+
+include ../../../make-rules/shared-macros.mk
+
+COMPONENT_NAME=		perl
+COMPONENT_VERSION=	5.22.1
+PERL_VERSION=		5.22
+COMPONENT_PROJECT_URL=	http://www.perl.org/
+COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.bz2
+COMPONENT_ARCHIVE_HASH=	\
+     sha256:e98e4075a3167fa40524abe447c30bcca10c60e02a54ee1361eff278947a1221
+COMPONENT_ARCHIVE_URL=	http://www.cpan.org/src/5.0/$(COMPONENT_ARCHIVE)
+COMPONENT_BUGDB=	utility/perl
+TPNO=			26810
+
+include $(WS_MAKE_RULES)/prep.mk
+include $(WS_MAKE_RULES)/configure.mk
+include $(WS_MAKE_RULES)/ips.mk
+
+ifeq   ($(strip $(PARFAIT_BUILD)),yes)
+PATH=$(PARFAIT_TOOLS):$(SPRO_VROOT)/bin:/usr/bin
+endif
+
+#
+# Override these compiler settings because they are causing problems
+# in the ON build of the contrib components.
+# ON doesn't use or need these settings or the compiler has some of them
+# on by default.
+# This also produces a perl more inline with past perl's.  For better
+# or worse.
+#
+studio_XBITS=
+studio_XREGS=
+studio_IROPTS=
+studio_C99MODE=
+studio_ALIGN=
+studio_MT=
+
+# Sparc optimization -xO4 causes issues with dtrace probes on Sparc
+studio_OPT.sparc.64=-xO3
+
+CONFIGURE_SCRIPT = $(SOURCE_DIR)/Configure
+CONFIGURE_ENV += MAKE=$(GMAKE)
+CONFIGURE_ENV += PATH=$(dir $(CC)):$(PATH)
+
+# -Dperl_static_inline="static" turns OFF "static inline".
+# This was added because Configure probes
+# for static inline (C99 feature) and finds it in our default Studio
+# compiler.  But in the ON build of the perl add-ons, sun-solaris, the
+# shadow build with gcc 3.4.3 doesn't understand static inline so errors.
+#
+CONFIGURE_OPTIONS = \
+			-de \
+			-Dmksymlinks \
+			-Ulocincpth= \
+                        -Dbin=/usr/perl5/$(PERL_VERSION)/bin \
+			-Dcc="cc" \
+			-Dcf_email="[email protected]" \
+			-Dcf_by="perl-bugs" \
+			-Dlibperl=libperl.so \
+			-Dmyhostname="localhost" \
+			-Dperl_static_inline="static" \
+			-Dprefix=/usr/perl5/$(PERL_VERSION) \
+                        -Dprivlib=/usr/perl5/$(PERL_VERSION)/lib \
+			-Dsitelib=/usr/perl5/site_perl/$(PERL_VERSION) \
+			-Dsiteprefix=/usr/perl5/$(PERL_VERSION) \
+			-Dvendorlib=/usr/perl5/vendor_perl/$(PERL_VERSION) \
+			-Dvendorprefix=/usr/perl5/$(PERL_VERSION) \
+			-Duseshrplib \
+			-Dusedtrace \
+			-Duse64bitall \
+                        -Dusethreads \
+			-Dlibpth="/lib/64 /usr/lib/64" \
+			-Doptimize="$(CFLAGS.studio)"
+
+#
+# The extra Configure parameters (cf_email, cf_by, myhostname) and
+# the gawk and sed that follow are attempting to sanatize the
+# resulting config.sh of values from our build environment that
+# are discoverable in perl's config via "perl -V".
+# I'm assuming our compilers live on a path that contains "SUNWspro".
+# If that changes the sed filter needs to change.
+#
+COMPONENT_POST_CONFIGURE_ACTION = \
+	(cd $(@D); \
+	    cp config.sh config.sh_orig ; \
+	    gawk \
+	    '/^myuname=/{print $$1" localhost "$$3" "$$5" "$$6" "$$7"\047"} ; \
+	    		!/^myuname=/ {print}' config.sh_orig \
+		| \
+		sed -e "s/[^ ']*SUNWspro[^ ']*//g" > config.sh )
+
+
+#
+# Put studio compilers in PATH so we can tell Configure and gmake just
+# use cc.  Trying to avoid the full path so it doesn't end up in
+# perl's config.
+#
+COMPONENT_BUILD_ENV	  +=	PATH=$(dir $(CC)):$(PATH)
+COMPONENT_INSTALL_ENV	  +=	PATH=$(dir $(CC)):$(PATH)
+COMPONENT_INSTALL_ENV	  +=	DESTDIR="$(PROTO_DIR)"
+COMPONENT_TEST_ENV	  +=	PATH=$(dir $(CC)):$(PATH)
+#
+# Getting 1 different result between sparc and x86.
+#
+COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-$(MACH).master
+
+#
+# Throw out everything prior to test results.
+# 2 x delete timings
+#
+COMPONENT_TEST_TRANSFORMS += \
+	'-e "1,/runtests choose/d"' \
+	'-e "/^u=/d" ' \
+	'-e "/^Elapsed/d"'
+
+#
+# perl's install path for sparc is based off the value of the
+# "arch" command.  So we must package that way also.
+#
+PKG_MACROS		+=	P_ARCH=$(shell arch)
+
+ASLR_MODE = $(ASLR_ENABLE)
+
+configure:	$(CONFIGURE_64)
+
+build:		$(BUILD_64)
+
+parfait:	PARFAIT_BUILD=yes install
+
+install:	$(INSTALL_64)
+
+test:		$(TEST_64)
+
+system-test:    $(SYSTEM_TESTS_NOT_IMPLEMENTED)
+
+REQUIRED_PACKAGES += database/berkeleydb-5
+REQUIRED_PACKAGES += library/database/gdbm
+REQUIRED_PACKAGES += system/library
+REQUIRED_PACKAGES += system/library/math
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/patches/0001-perl-126862-ensure-File-Spec-canonpath-preserves-tai.patch	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,64 @@
+From b6307f728a4f842a54ea96959e386c7daa92ece1 Mon Sep 17 00:00:00 2001
+From: Tony Cook <[email protected]>
+Date: Tue, 15 Dec 2015 10:56:54 +1100
+Subject: [perl #126862] ensure File::Spec::canonpath() preserves taint
+
+Previously the unix specific XS implementation of canonpath() would
+return an untainted path when supplied a tainted path.
+
+For the empty string case, newSVpvs() already sets taint as needed on
+its result.
+---
+ dist/PathTools/Cwd.xs    |  1 +
+ dist/PathTools/t/taint.t | 19 ++++++++++++++++++-
+ 2 files changed, 19 insertions(+), 1 deletion(-)
+
+diff --git a/dist/PathTools/Cwd.xs b/dist/PathTools/Cwd.xs
+index 9d4dcf0..3d018dc 100644
+--- a/dist/PathTools/Cwd.xs
++++ b/dist/PathTools/Cwd.xs
+@@ -535,6 +535,7 @@ THX_unix_canonpath(pTHX_ SV *path)
+     *o = 0;
+     SvPOK_on(retval);
+     SvCUR_set(retval, o - SvPVX(retval));
++    SvTAINT(retval);
+     return retval;
+ }
+ 
+diff --git a/dist/PathTools/t/taint.t b/dist/PathTools/t/taint.t
+index 309b3e5..48f8c5b 100644
+--- a/dist/PathTools/t/taint.t
++++ b/dist/PathTools/t/taint.t
+@@ -12,7 +12,7 @@ use Test::More;
+ BEGIN {
+     plan(
+         ${^TAINT}
+-        ? (tests => 17)
++        ? (tests => 21)
+         : (skip_all => "A perl without taint support")
+     );
+ }
+@@ -34,3 +34,20 @@ foreach my $func (@Functions) {
+ 
+ # Previous versions of Cwd tainted $^O
+ is !tainted($^O), 1, "\$^O should not be tainted";
++
++{
++    # [perl #126862] canonpath() loses taint
++    my $tainted = substr($ENV{PATH}, 0, 0);
++    # yes, getcwd()'s result should be tainted, and is tested above
++    # but be sure
++    ok tainted(File::Spec->canonpath($tainted . Cwd::getcwd)),
++        "canonpath() keeps taint on non-empty string";
++    ok tainted(File::Spec->canonpath($tainted)),
++        "canonpath() keeps taint on empty string";
++
++    (Cwd::getcwd() =~ /^(.*)/);
++    my $untainted = $1;
++    ok !tainted($untainted), "make sure our untainted value is untainted";
++    ok !tainted(File::Spec->canonpath($untainted)),
++        "canonpath() doesn't add taint to untainted string";
++}
+-- 
+2.1.4
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/patches/1000_largefiles.patch	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,18 @@
+In house patch to correctly identify large file support in a 64-bit
+compilation environment.
+A correction of this sort should be sent upstream.
+--- perl-5.22.1/hints/solaris_2.sh-orig	2016-02-25 20:22:01.201322692 -0800
++++ perl-5.22.1/hints/solaris_2.sh	2016-02-25 20:22:31.670265384 -0800
+@@ -494,9 +494,9 @@
+ ''|$define|true|[yY]*)
+ 
+ # Keep these in the left margin.
+-ccflags_uselargefiles="`$run getconf LFS_CFLAGS 2>/dev/null`"
+-ldflags_uselargefiles="`$run getconf LFS_LDFLAGS 2>/dev/null`"
+-libswanted_uselargefiles="`$run getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
++ccflags_uselargefiles="`$run getconf LFS64_CFLAGS 2>/dev/null`"
++ldflags_uselargefiles="`$run getconf LFS64_LDFLAGS 2>/dev/null`"
++libswanted_uselargefiles="`$run getconf LFS64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
+ 
+     ccflags="$ccflags $ccflags_uselargefiles"
+     ldflags="$ldflags $ldflags_uselargefiles"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/perl-522.p5m	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,2297 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+
+#
+# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+#
+
+<transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
+set name=pkg.fmri \
+    value=pkg:/runtime/perl-522@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.summary value=Perl
+set name=pkg.description \
+    value="Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more."
+set name=com.oracle.info.description value="Perl 5.22"
+set name=com.oracle.info.tpno value=$(TPNO)
+set name=info.classification \
+    value=org.opensolaris.category.2008:Development/Perl
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
+set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
+set name=org.opensolaris.arc-caseid value=PSARC/2016/024
+set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
+
+# These links (more at the bottom) are mediated so that customers may
+# create their own IPS packages and replace perl.
+link path=usr/bin/perl target=../perl5/$(PERL_VERSION)/bin/perl mediator=perl \
+    mediator-version=$(PERL_VERSION)
+hardlink path=usr/perl5/$(PERL_VERSION)/bin/c2ph target=pstruct
+file path=usr/perl5/$(PERL_VERSION)/bin/corelist
+file path=usr/perl5/$(PERL_VERSION)/bin/cpan
+file path=usr/perl5/$(PERL_VERSION)/bin/enc2xs
+file path=usr/perl5/$(PERL_VERSION)/bin/encguess
+file path=usr/perl5/$(PERL_VERSION)/bin/h2ph
+file path=usr/perl5/$(PERL_VERSION)/bin/h2xs
+file path=usr/perl5/$(PERL_VERSION)/bin/instmodsh
+file path=usr/perl5/$(PERL_VERSION)/bin/json_pp
+file path=usr/perl5/$(PERL_VERSION)/bin/libnetcfg
+file path=usr/perl5/$(PERL_VERSION)/bin/perl
+hardlink path=usr/perl5/$(PERL_VERSION)/bin/perl$(COMPONENT_VERSION) target=perl
+file path=usr/perl5/$(PERL_VERSION)/bin/perlbug
+file path=usr/perl5/$(PERL_VERSION)/bin/perldoc
+file path=usr/perl5/$(PERL_VERSION)/bin/perlivp
+hardlink path=usr/perl5/$(PERL_VERSION)/bin/perlthanks target=perlbug
+file path=usr/perl5/$(PERL_VERSION)/bin/piconv
+file path=usr/perl5/$(PERL_VERSION)/bin/pl2pm
+file path=usr/perl5/$(PERL_VERSION)/bin/pod2html
+file path=usr/perl5/$(PERL_VERSION)/bin/pod2man
+file path=usr/perl5/$(PERL_VERSION)/bin/pod2text
+file path=usr/perl5/$(PERL_VERSION)/bin/pod2usage
+file path=usr/perl5/$(PERL_VERSION)/bin/podchecker
+file path=usr/perl5/$(PERL_VERSION)/bin/podselect
+file path=usr/perl5/$(PERL_VERSION)/bin/prove
+file path=usr/perl5/$(PERL_VERSION)/bin/pstruct
+file path=usr/perl5/$(PERL_VERSION)/bin/ptar
+file path=usr/perl5/$(PERL_VERSION)/bin/ptardiff
+file path=usr/perl5/$(PERL_VERSION)/bin/ptargrep
+file path=usr/perl5/$(PERL_VERSION)/bin/shasum
+file path=usr/perl5/$(PERL_VERSION)/bin/splain
+file path=usr/perl5/$(PERL_VERSION)/bin/xsubpp
+file path=usr/perl5/$(PERL_VERSION)/bin/zipdetails
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/.packlist
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/B.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/B/Concise.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/B/Showlex.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/B/Terse.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/B/Xref.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/EXTERN.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/INTERN.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/XSUB.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/av.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/bitcount.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/charclass_invlists.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/config.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/cop.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/cv.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/dosish.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/ebcdic_tables.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/embed.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/embedvar.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/fakesdio.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/feature.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/form.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/git_version.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/gv.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/handy.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/hv.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/hv_func.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/inline.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/intrpvar.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/iperlsys.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/keywords.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/l1_char_class_tab.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/libperl.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/malloc_ctl.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/metaconfig.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/mg.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/mg_data.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/mg_raw.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/mg_vtable.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/mydtrace.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/nostdio.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/op.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/op_reg_common.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/opcode.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/opnames.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/overload.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/pad.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/parser.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/patchlevel.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perl.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perlapi.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perldtrace.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perlio.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perliol.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perlsdio.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perlvars.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/perly.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/pp.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/pp_proto.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/proto.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/reentr.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/regcharclass.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/regcomp.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/regexp.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/regnodes.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/scope.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/sv.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/thread.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/time64.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/time64_config.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/uconfig.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/unicode_constants.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/unixish.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/utf8.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/utfebcdic.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/util.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/uudmap.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/vutil.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/CORE/warnings.h
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Compress/Raw/Bzip2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Compress/Raw/Zlib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Config.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Config.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Config_git.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Config_heavy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Cwd.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/DB_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Data/Dumper.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Devel/PPPort.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Devel/Peek.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Digest/MD5.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Digest/SHA.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/DynaLoader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Alias.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Byte.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/CJKConstants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/CN.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/CN/HZ.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Config.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/EBCDIC.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Encoder.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Encoding.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/GSM0338.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Guess.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/JP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/JP/H2Z.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/JP/JIS7.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/KR.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/KR/2022_KR.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/MIME/Header.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/MIME/Header/ISO_2022_JP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/MIME/Name.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Symbol.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/TW.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Unicode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Encode/Unicode/UTF7.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Errno.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Fcntl.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/DosGlob.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Glob.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Cygwin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Epoc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Functions.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Mac.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/OS2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Unix.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/VMS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/File/Spec/Win32.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Filter/Util/Call.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/GDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Hash/Util.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Hash/Util/FieldHash.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/I18N/Langinfo.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Dir.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Handle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Pipe.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Poll.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Seekable.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Select.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Socket.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Socket/INET.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IO/Socket/UNIX.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IPC/Msg.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IPC/Semaphore.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IPC/SharedMem.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/IPC/SysV.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/List/Util.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/List/Util/XS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/MIME/Base64.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/MIME/QuotedPrint.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Math/BigInt/FastCalc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/NDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/O.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/ODBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Opcode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/POSIX.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/POSIX.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/PerlIO/encoding.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/PerlIO/mmap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/PerlIO/scalar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/PerlIO/via.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/SDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Scalar/Util.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Socket.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Storable.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Sub/Util.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Sys/Hostname.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Sys/Syslog.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Tie/Hash/NamedCapture.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Time/HiRes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Time/Piece.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Time/Seconds.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Unicode/Collate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/Unicode/Collate/Locale.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/arybase.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/attributes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/B/B.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Compress/Raw/Bzip2/Bzip2.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Compress/Raw/Zlib/Zlib.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Cwd/Cwd.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/DB_File/DB_File.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Data/Dumper/Dumper.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Devel/PPPort/PPPort.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Devel/Peek/Peek.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Digest/MD5/MD5.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Digest/SHA/SHA.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/Byte/Byte.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/CN/CN.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/EBCDIC/EBCDIC.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/Encode.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/JP/JP.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/KR/KR.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/Symbol/Symbol.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/TW/TW.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Encode/Unicode/Unicode.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Fcntl/Fcntl.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/File/DosGlob/DosGlob.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/File/Glob/Glob.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Filter/Util/Call/Call.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/GDBM_File/GDBM_File.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Hash/Util/FieldHash/FieldHash.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Hash/Util/Util.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/I18N/Langinfo/Langinfo.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/IO/IO.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/IPC/SysV/SysV.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/List/Util/Util.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/MIME/Base64/Base64.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Math/BigInt/FastCalc/FastCalc.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/NDBM_File/NDBM_File.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/ODBM_File/ODBM_File.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Opcode/Opcode.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/POSIX/POSIX.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/PerlIO/encoding/encoding.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/PerlIO/mmap/mmap.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/PerlIO/scalar/scalar.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/PerlIO/via/via.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/SDBM_File/SDBM_File.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Socket/Socket.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Storable/Storable.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Sys/Hostname/Hostname.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Sys/Syslog/Syslog.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Tie/Hash/NamedCapture/NamedCapture.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Time/HiRes/HiRes.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Time/Piece/Piece.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/Unicode/Collate/Collate.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/arybase/arybase.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/attributes/attributes.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/mro/mro.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/re/re.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/threads/shared/shared.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/auto/threads/threads.so
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/encoding.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/lib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/mro.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/ops.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/re.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/threads.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/$(P_ARCH)-solaris-thread-multi-64/threads/shared.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/AnyDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/App/Cpan.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/App/Prove.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/App/Prove/State.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/App/Prove/State/Result.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/App/Prove/State/Result/Test.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Archive/Tar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Archive/Tar/Constant.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Archive/Tar/File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Attribute/Handlers.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/AutoLoader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/AutoSplit.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/B/Debug.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/B/Deparse.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/B/Op_private.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Benchmark.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CORE.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/API/HOWTO.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Author.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Bundle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/CacheMgr.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Complete.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Debug.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/DeferredCode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Distribution.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Distroprefs.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Distrostatus.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Exception/RecursiveDependency.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Exception/blocked_urllist.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Exception/yaml_not_installed.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Exception/yaml_process_error.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/FTP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/FTP/netrc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/FirstTime.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/HTTP/Client.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/HTTP/Credentials.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/HandleConfig.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Index.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/InfoObj.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Kwalify.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Kwalify/distroprefs.dd
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Kwalify/distroprefs.yml
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/LWP/UserAgent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Converter.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Feature.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History/Meta_1_0.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History/Meta_1_1.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History/Meta_1_2.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History/Meta_1_3.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/History/Meta_1_4.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Merge.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Prereqs.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Requirements.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Spec.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/Validator.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Meta/YAML.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Mirrors.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Module.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Nox.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Plugin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Plugin/Specfile.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Prompt.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Queue.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Shell.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Tarzip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/URL.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/CPAN/Version.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Carp.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Carp/Heavy.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Class/Struct.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Compress/Zlib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Config/Extensions.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Config/Perl/V.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DB.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter/compress.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter/encode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter/int32.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter/null.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DBM_Filter/utf8.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Devel/SelfStubber.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Digest.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Digest/base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Digest/file.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/DirHandle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Dumpvalue.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/Changes.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/ConfigLocal_PM.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/Makefile_PL.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/PerlIO.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/README.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/Supported.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/_PM.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/_T.e2x
+file path=usr/perl5/$(PERL_VERSION)/lib/Encode/encode.h
+file path=usr/perl5/$(PERL_VERSION)/lib/English.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Env.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Exporter.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Exporter/Heavy.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/Unix.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/VMS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/Windows.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/aix.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/android.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/cygwin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/darwin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/CBuilder/Platform/os2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Command.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Command/MM.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Constant.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Constant/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Constant/ProxySubs.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Constant/Utils.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Constant/XS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Embed.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Install.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Installed.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Liblist.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Liblist/Kid.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MANIFEST.SKIP
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_AIX.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Any.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_BeOS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Cygwin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_DOS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Darwin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_MacOS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_NW5.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_OS2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_QNX.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_UWIN.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Unix.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_VMS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_VOS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Win32.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MM_Win95.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MY.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/Config.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/FAQ.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/Locale.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/Tutorial.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/version.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/version/regex.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/MakeMaker/version/vpp.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Manifest.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Miniperl.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Mkbootstrap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Mksymlists.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Packlist.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS/Constants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS/CountLines.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS/Eval.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/ParseXS/Utilities.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Typemaps.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Typemaps/Cmd.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Typemaps/InputMap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Typemaps/OutputMap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/Typemaps/Type.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/testlib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/typemap
+file path=usr/perl5/$(PERL_VERSION)/lib/ExtUtils/xsubpp
+file path=usr/perl5/$(PERL_VERSION)/lib/Fatal.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Basename.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Compare.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Copy.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Fetch.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Find.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/GlobMapper.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Path.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/Temp.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/File/stat.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/FileCache.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/FileHandle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Filter/Simple.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/FindBin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Getopt/Long.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Getopt/Std.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/HTTP/Tiny.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/I18N/Collate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/I18N/LangTags.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/I18N/LangTags/Detect.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/I18N/LangTags/List.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Adapter/Bzip2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Adapter/Deflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Adapter/Identity.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Base/Common.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Bzip2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Deflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/FAQ.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Gzip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Gzip/Constants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/RawDeflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Zip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Zip/Constants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Zlib/Constants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Compress/Zlib/Extra.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Socket/IP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Adapter/Bunzip2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Adapter/Identity.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Adapter/Inflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/AnyInflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/AnyUncompress.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Bunzip2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Gunzip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Inflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/RawInflate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Uncompress/Unzip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IO/Zlib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IPC/Cmd.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IPC/Open2.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/IPC/Open3.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/JSON/PP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/JSON/PP/Boolean.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/API.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Changes.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Constants.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Constants.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Country.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Country.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Country_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Country_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Currency.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Currency.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Currency_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Currency_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangExt.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangExt.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangExt_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangExt_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangFam.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangFam.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangFam_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangFam_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangVar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangVar.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangVar_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/LangVar_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Language.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Language.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Language_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Language_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Script.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Script.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Script_Codes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Codes/Script_Retired.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Country.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Country.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Currency.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Currency.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Language.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Language.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext/Cookbook.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext/Guts.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext/GutsLoader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext/Simple.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Maketext/TPJ13.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Script.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Locale/Script.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigFloat.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigFloat/Trace.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigInt.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigInt/Calc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigInt/CalcEmu.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigInt/Trace.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/BigRat.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/Complex.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Math/Trig.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/AnyDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/Expire.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/ExpireFile.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/ExpireTest.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/NDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/SDBM_File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Memoize/Storable.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/CoreList.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/CoreList.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/CoreList/TieHashDelta.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/CoreList/Utils.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/Load.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/Load/Conditional.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/Loaded.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Module/Metadata.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/NEXT.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Cmd.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Config.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Domain.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP/A.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP/E.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP/I.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP/L.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/FTP/dataconn.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/NNTP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Netrc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/POP3.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Ping.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/SMTP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/Time.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/hostent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/libnetFAQ.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/netent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/protoent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Net/servent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Params/Check.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Parse/CPAN/Meta.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Perl/OSType.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/PerlIO.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/PerlIO/via/QuotedPrint.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Checker.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Escapes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Find.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Functions.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Html.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/InputObjects.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Man.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/ParseLink.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/ParseUtils.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Parser.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/BaseTo.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/GetOptsOO.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToANSI.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToChecker.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToMan.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToNroff.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToPod.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToRtf.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToTerm.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToText.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToTk.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Perldoc/ToXml.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/PlainText.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Select.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/BlackBox.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Checker.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Debug.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/DumpAsText.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/DumpAsXML.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/HTML.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/HTMLBatch.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/HTMLLegacy.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/LinkSection.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Methody.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Progress.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/PullParser.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/PullParserEndToken.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/PullParserStartToken.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/PullParserTextToken.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/PullParserToken.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/RTF.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Search.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/SimpleTree.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Subclassing.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Text.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/TextContent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/TiedOutFH.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/Transcode.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/TranscodeDumb.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/TranscodeSmart.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/XHTML.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Simple/XMLOutStream.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Text.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Text/Color.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Text/Overstrike.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Text/Termcap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Pod/Usage.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Safe.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Search/Dict.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/SelectSaver.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/SelfLoader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Symbol.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Color.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Console.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Console/ParallelSession.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Console/Session.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/File/Session.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Formatter/Session.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Harness.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Harness/Beyond.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Harness/Env.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Object.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Aggregator.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Grammar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Iterator.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Iterator/Array.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Iterator/Process.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Iterator/Stream.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/IteratorFactory.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Multiplexer.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Bailout.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Comment.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Plan.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Pragma.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Test.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Unknown.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/Version.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Result/YAML.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/ResultFactory.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Scheduler.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Scheduler/Job.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Scheduler/Spinner.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/Source.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler/Executable.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler/File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler/Handle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler/Perl.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/SourceHandler/RawTAP.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/YAMLish/Reader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/TAP/Parser/YAMLish/Writer.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Term/ANSIColor.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Term/Cap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Term/Complete.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Term/ReadLine.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Builder.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Builder/IO/Scalar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Builder/Module.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Builder/Tester.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Builder/Tester/Color.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Harness.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/More.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Simple.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Tester.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Tester/Capture.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Tester/CaptureRunner.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Tester/Delegate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/Tutorial.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/Test/use/ok.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Text/Abbrev.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Text/Balanced.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Text/ParseWords.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Text/Tabs.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Text/Wrap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Thread.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Thread/Queue.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Thread/Semaphore.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/Array.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/File.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/Handle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/Hash.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/Memoize.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/RefHash.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/Scalar.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/StdHandle.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Tie/SubstrHash.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Time/Local.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Time/gmtime.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Time/localtime.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Time/tm.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/UNIVERSAL.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/Big5.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/GB2312.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/JISX0208.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/Korean.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/Pinyin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/Stroke.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/CJK/Zhuyin.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/af.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ar.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/as.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/az.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/be.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/bg.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/bn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ca.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/cs.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/cy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/da.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/de_phone.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ee.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/eo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/es.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/es_trad.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/et.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fa.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fi_phone.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fil.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/fr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/gu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ha.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/haw.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/hi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/hr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/hu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/hy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ig.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/is.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ja.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/kk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/kl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/kn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ko.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/kok.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ln.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/lt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/lv.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/mk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ml.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/mr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/mt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/nb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/nn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/nso.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/om.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/or.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/pa.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/pl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ro.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ru.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sa.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/se.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/si.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/si_dict.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sq.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sv.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/sv_refo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ta.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/te.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/th.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/tn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/to.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/tr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/uk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/ur.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/vi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/wae.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/wo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/yo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh_big5.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh_gb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh_pin.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh_strk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/Locale/zh_zhu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/allkeys.txt
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Collate/keys.txt
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/Normalize.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/Unicode/UCD.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/User/grent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/User/pwent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/XSLoader.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/_charnames.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/Scope/Guard.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/Scope/GuardStack.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/ScopeUtil.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/exception.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/exception/system.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/hints.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autodie/skip.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/autouse.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/base.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/bigint.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/bignum.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/bigrat.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/blib.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/bytes.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/bytes_heavy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/charnames.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/constant.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/deprecate.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/diagnostics.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/dumpvar.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/encoding/warnings.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/experimental.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/feature.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/fields.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/filetest.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/if.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/integer.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/less.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/locale.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/meta_notation.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/ok.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/open.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/overload.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/overload/numbers.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/overloading.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/parent.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/perl5db.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/perlfaq.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5004delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5005delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5100delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5101delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5120delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5121delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5122delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5123delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5124delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5125delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5140delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5141delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5142delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5143delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5144delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5160delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5161delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5162delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5163delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5180delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5181delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5182delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5184delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5200delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5201delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5202delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5203delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5220delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl5221delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl561delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl56delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl581delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl582delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl583delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl584delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl585delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl586delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl587delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl588delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl589delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perl58delta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlaix.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlamiga.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlandroid.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlapi.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlapio.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlartistic.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlbook.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlboot.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlbot.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlbs2000.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlcall.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlce.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlcheat.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlclib.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlcn.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlcommunity.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlcygwin.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldata.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldbmfilter.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldebguts.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldebtut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldebug.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldelta.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldiag.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldoc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldos.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldsc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perldtrace.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlebcdic.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlembed.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlexperiment.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq1.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq2.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq3.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq4.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq5.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq6.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq7.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq8.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfaq9.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfilter.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfork.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlform.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfreebsd.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlfunc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlgit.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlglossary.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlgpl.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlguts.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhack.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhacktips.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhacktut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhaiku.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhist.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhpux.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlhurd.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlintern.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlinterp.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlintro.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perliol.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlipc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlirix.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perljp.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlko.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perllexwarn.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perllinux.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perllocale.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perllol.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmacos.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmacosx.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmod.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmodinstall.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmodlib.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmodstyle.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlmroapi.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlnetware.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlnewmod.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlnumber.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlobj.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlootut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlop.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlopenbsd.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlopentut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlos2.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlos390.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlos400.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpacktut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlperf.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlplan9.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpod.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpodspec.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpodstyle.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpolicy.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlport.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlpragma.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlqnx.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlre.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlreapi.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlrebackslash.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlrecharclass.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlref.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlreftut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlreguts.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlrepository.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlrequick.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlreref.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlretut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlriscos.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlrun.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsec.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsolaris.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsource.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlstyle.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsub.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsymbian.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsyn.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlsynology.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlthrtut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltie.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltoc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltodo.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltooc.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltoot.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltrap.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltru64.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perltw.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlunicode.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlunicook.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlunifaq.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perluniintro.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perluniprops.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlunitut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlutil.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlvar.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlvms.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlvos.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlwin32.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlxs.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlxstut.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/pod/perlxstypemap.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/sigtrap.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/sort.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/strict.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/subs.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/Blocks.txt
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/CombiningClass.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/Decomposition.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/Heavy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/Name.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/Name.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/NamedSequences.txt
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/SpecialCasing.txt
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Age.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Bc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Bmg.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Bpb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Bpt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Cf.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Digit.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Ea.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Fold.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/GCB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Gc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Hst.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Isc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Jg.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Jt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Lb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Lc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Lower.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NFCQC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NFDQC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NFKCCF.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NFKCQC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NFKDQC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Na1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/NameAlia.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Nt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Nv.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/PerlDeci.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/SB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Sc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Scx.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Tc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Title.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Uc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/Upper.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/To/WB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/UCD.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/NA.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V11.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V20.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V30.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V31.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V32.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V40.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V41.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V50.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V51.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V52.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V60.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V61.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Age/V70.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Alpha/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/AL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/AN.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/B.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/BN.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/CS.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/EN.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/ES.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/ET.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/L.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/NSM.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/ON.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/R.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bc/WS.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/BidiC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/BidiM/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Blk/NB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bpt/C.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bpt/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Bpt/O.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CE/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CI/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWCF/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWCM/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWKCF/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWL/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWT/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CWU/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Cased/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/A.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/AR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/ATAR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/B.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/BR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/DB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/NK.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/NR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/OV.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ccc/VR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/CompEx/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/DI/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dash/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dep/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dia/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Com.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Enc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Fin.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Font.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Init.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Iso.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Med.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Nar.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Nb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/NonCanon.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Sqr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Sub.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Sup.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Dt/Vert.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ea/A.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ea/H.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ea/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ea/Na.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ea/W.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ext/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/CN.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/EX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/LV.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/LVT.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/SM.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GCB/XX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/C.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Cf.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Cn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/L.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/LC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Ll.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Lm.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Lo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Lu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/M.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Mc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Me.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Mn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Nd.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Nl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/No.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/P.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Pd.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Pe.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Pf.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Pi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Po.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Ps.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/S.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Sc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Sk.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Sm.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/So.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Z.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Gc/Zs.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/GrBase/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Hex/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Hst/NA.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Hyphen/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/IDC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/IDS/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Ideo/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/2_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/2_1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/3_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/3_1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/3_2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/4_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/4_1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/5_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/5_1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/5_2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/6_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/6_1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/6_2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/6_3.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/In/7_0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Ain.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Alef.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Beh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Dal.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/FarsiYeh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Feh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Gaf.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Hah.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Lam.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/NoJoinin.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Qaf.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Reh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Sad.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Seen.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Waw.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jg/Yeh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jt/C.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jt/D.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jt/R.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jt/T.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Jt/U.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/LOE/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/AI.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/AL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/BA.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/BB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/CJ.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/CL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/CM.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/EX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/GL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/ID.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/IS.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/NS.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/OP.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/PO.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/PR.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/QU.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/SA.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lb/XX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Lower/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Math/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NChar/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFCQC/M.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFCQC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFDQC/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFDQC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFKCQC/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFKCQC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFKDQC/N.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/NFKDQC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nt/Di.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nt/None.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nt/Nu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/0.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/10.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/100.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1000.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/10000.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/11.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/12.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/13.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/14.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/15.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/16.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/17.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/18.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/19.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1_2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1_3.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1_4.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/1_8.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/20.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/2_3.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/3.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/30.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/300.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/3_4.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/4.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/40.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/5.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/50.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/500.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/5000.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/50000.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/6.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/60.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/7.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/70.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/8.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/80.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/9.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/90.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Nv/900.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/PatSyn/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/PatWS/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Alnum.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Assigned.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Blank.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Graph.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/PerlWord.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/PosixPun.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Print.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/SpacePer.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Title.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/Word.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/XPosixPu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlAny.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlCh2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlCha.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlFol.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlIDC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlIDS.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlPr2.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlPro.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Perl/_PerlQuo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/QMark/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/AT.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/CL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/EX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/FO.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/LE.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/LO.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/NU.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/SC.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/ST.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/Sp.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/UP.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SB/XX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/SD/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/STerm/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Arab.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Armn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Beng.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Cham.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Cprt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Cyrl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Deva.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Dupl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Ethi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Geor.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Gran.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Grek.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Gujr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Guru.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Han.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Hang.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Hebr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Hira.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Hmng.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Kana.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Khar.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Khmr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Knda.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Lana.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Lao.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Latn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Limb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Linb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Mlym.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Mong.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Orya.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Sinh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Talu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Taml.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Telu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Tibt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Zinh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Zyyy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Sc/Zzzz.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Arab.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Armn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Beng.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Bopo.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Cakm.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Copt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Cprt.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Cyrl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Deva.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Dupl.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Geor.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Gran.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Grek.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Gujr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Guru.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Han.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Hang.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Hira.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Kana.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Knda.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Latn.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Limb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Linb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Mlym.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Mong.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Mymr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Orya.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Phlp.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Sind.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Sinh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Syrc.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Tagb.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Takr.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Taml.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Telu.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Thaa.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Tirh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Yi.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Zinh.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Scx/Zyyy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Term/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/UIdeo/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/Upper/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/EX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/FO.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/HL.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/KA.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/LE.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/MB.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/ML.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/MN.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/NU.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/WB/XX.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/XIDC/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/lib/XIDS/Y.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/unicore/version
+file path=usr/perl5/$(PERL_VERSION)/lib/utf8.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/utf8_heavy.pl
+file path=usr/perl5/$(PERL_VERSION)/lib/vars.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/version.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/version.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/version/Internals.pod
+file path=usr/perl5/$(PERL_VERSION)/lib/version/regex.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/version/vpp.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/vmsish.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/warnings.pm
+file path=usr/perl5/$(PERL_VERSION)/lib/warnings/register.pm
+file path=usr/perl5/$(PERL_VERSION)/man/man1/c2ph.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/corelist.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/cpan.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/enc2xs.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/encguess.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/h2ph.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/h2xs.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/instmodsh.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/json_pp.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/libnetcfg.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5004delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5005delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5100delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5101delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5120delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5121delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5122delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5123delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5124delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5125delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5140delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5141delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5142delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5143delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5144delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5160delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5161delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5162delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5163delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5180delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5181delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5182delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5184delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5200delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5201delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5202delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5203delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5220delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl5221delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl561delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl56delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl581delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl582delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl583delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl584delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl585delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl586delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl587delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl588delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl589delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perl58delta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlaix.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlamiga.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlandroid.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlapi.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlapio.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlartistic.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlbook.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlboot.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlbot.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlbs2000.1
+hardlink path=usr/perl5/$(PERL_VERSION)/man/man1/perlbug.1 target=perlthanks.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlcall.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlce.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlcheat.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlclib.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlcn.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlcommunity.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlcygwin.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldata.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldbmfilter.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldebguts.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldebtut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldebug.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldelta.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldiag.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldoc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldos.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldsc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perldtrace.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlebcdic.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlembed.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlexperiment.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq1.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq2.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq3.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq4.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq5.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq6.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq7.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq8.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfaq9.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfilter.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfork.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlform.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfreebsd.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlfunc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlgit.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlglossary.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlgpl.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlguts.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhack.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhacktips.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhacktut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhaiku.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhist.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhpux.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlhurd.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlintern.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlinterp.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlintro.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perliol.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlipc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlirix.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlivp.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perljp.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlko.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perllexwarn.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perllinux.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perllocale.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perllol.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmacos.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmacosx.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmod.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmodinstall.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmodlib.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmodstyle.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlmroapi.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlnetware.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlnewmod.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlnumber.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlobj.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlootut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlop.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlopenbsd.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlopentut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlos2.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlos390.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlos400.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpacktut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlperf.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlplan9.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpod.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpodspec.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpodstyle.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpolicy.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlport.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlpragma.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlqnx.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlre.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlreapi.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlrebackslash.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlrecharclass.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlref.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlreftut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlreguts.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlrepository.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlrequick.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlreref.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlretut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlriscos.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlrun.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsec.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsolaris.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsource.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlstyle.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsub.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsymbian.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsyn.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlsynology.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlthanks.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlthrtut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltie.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltoc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltodo.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltooc.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltoot.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltrap.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltru64.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perltw.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlunicode.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlunicook.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlunifaq.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perluniintro.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perluniprops.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlunitut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlutil.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlvar.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlvms.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlvos.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlwin32.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlxs.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlxstut.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/perlxstypemap.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/piconv.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/pl2pm.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/pod2html.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/pod2man.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/pod2text.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/pod2usage.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/podchecker.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/podselect.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/prove.1
+hardlink path=usr/perl5/$(PERL_VERSION)/man/man1/pstruct.1 target=c2ph.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/ptar.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/ptardiff.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/ptargrep.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/shasum.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/splain.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/xsubpp.1
+file path=usr/perl5/$(PERL_VERSION)/man/man1/zipdetails.1
+file path=usr/perl5/$(PERL_VERSION)/man/man3/AnyDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/App::Cpan.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/App::Prove.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/App::Prove::State.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/App::Prove::State::Result.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/App::Prove::State::Result::Test.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Archive::Tar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Archive::Tar::File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Attribute::Handlers.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/AutoLoader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/AutoSplit.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Concise.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Debug.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Deparse.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Op_private.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Showlex.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Terse.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/B::Xref.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Benchmark.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CORE.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::API::HOWTO.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Debug.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Distroprefs.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::FirstTime.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::HandleConfig.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Kwalify.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Converter.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Feature.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History::Meta_1_0.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History::Meta_1_1.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History::Meta_1_2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History::Meta_1_3.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::History::Meta_1_4.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Merge.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Prereqs.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Requirements.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Spec.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::Validator.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Meta::YAML.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Mirrors.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Nox.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Plugin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Plugin::Specfile.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Queue.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Tarzip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/CPAN::Version.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Carp.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Class::Struct.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Compress::Raw::Bzip2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Compress::Raw::Zlib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Compress::Zlib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Config.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Config::Extensions.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Config::Perl::V.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Cwd.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DB.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter::compress.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter::encode.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter::int32.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter::null.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DBM_Filter::utf8.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DB_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Data::Dumper.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Devel::PPPort.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Devel::Peek.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Devel::SelfStubber.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Digest.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Digest::MD5.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Digest::SHA.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Digest::base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Digest::file.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DirHandle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Dumpvalue.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/DynaLoader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Alias.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Byte.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::CJKConstants.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::CN.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::CN::HZ.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Config.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::EBCDIC.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Encoder.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Encoding.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::GSM0338.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Guess.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::JP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::JP::H2Z.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::JP::JIS7.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::KR.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::KR::2022_KR.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::MIME::Header.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::MIME::Name.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::PerlIO.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Supported.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Symbol.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::TW.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Unicode.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Encode::Unicode::UTF7.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/English.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Env.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Errno.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Exporter.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Exporter::Heavy.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::CBuilder.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::CBuilder::Platform::Windows.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Command.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Command::MM.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Constant.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Constant::Base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Constant::Utils.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Constant::XS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Embed.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Install.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Installed.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Liblist.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_AIX.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Any.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_BeOS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Cygwin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_DOS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Darwin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_MacOS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_NW5.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_OS2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_QNX.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_UWIN.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Unix.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_VMS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_VOS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Win32.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MM_Win95.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MY.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MakeMaker.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MakeMaker::Config.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MakeMaker::FAQ.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MakeMaker::Locale.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::MakeMaker::Tutorial.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Manifest.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Miniperl.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Mkbootstrap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Mksymlists.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Packlist.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::ParseXS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::ParseXS::Constants.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::ParseXS::Eval.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::ParseXS::Utilities.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Typemaps.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Typemaps::Cmd.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Typemaps::InputMap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Typemaps::OutputMap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::Typemaps::Type.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::XSSymSet.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ExtUtils::testlib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Fatal.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Fcntl.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Basename.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Compare.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Copy.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::DosGlob.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Fetch.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Find.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Glob.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::GlobMapper.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Path.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Cygwin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Epoc.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Functions.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Mac.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::OS2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Unix.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::VMS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Spec::Win32.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::Temp.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/File::stat.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/FileCache.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/FileHandle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Filter::Simple.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Filter::Util::Call.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/FindBin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/GDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Getopt::Long.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Getopt::Std.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/HTTP::Tiny.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Hash::Util.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Hash::Util::FieldHash.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/I18N::Collate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/I18N::LangTags.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/I18N::LangTags::Detect.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/I18N::LangTags::List.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/I18N::Langinfo.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::Base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::Bzip2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::Deflate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::FAQ.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::Gzip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::RawDeflate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Compress::Zip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Dir.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Handle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Pipe.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Poll.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Seekable.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Select.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Socket.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Socket::INET.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Socket::IP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Socket::UNIX.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::AnyInflate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::AnyUncompress.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::Base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::Bunzip2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::Gunzip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::Inflate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::RawInflate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Uncompress::Unzip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IO::Zlib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::Cmd.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::Msg.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::Open2.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::Open3.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::Semaphore.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::SharedMem.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/IPC::SysV.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/JSON::PP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/JSON::PP::Boolean.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/List::Util.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/List::Util::XS.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::API.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Changes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Constants.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Country.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Currency.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::LangExt.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::LangFam.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::LangFam_Retired.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::LangVar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Language.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Codes::Script.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Country.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Currency.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Language.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext::Cookbook.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext::Guts.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext::GutsLoader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext::Simple.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Maketext::TPJ13.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Locale::Script.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/MIME::Base64.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/MIME::QuotedPrint.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigFloat.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigInt.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigInt::Calc.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigInt::CalcEmu.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigInt::FastCalc.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::BigRat.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::Complex.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Math::Trig.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::AnyDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::Expire.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::ExpireFile.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::ExpireTest.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::NDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::SDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Memoize::Storable.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::CoreList.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::CoreList::Utils.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::Load.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::Load::Conditional.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::Loaded.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Module::Metadata.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/NDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/NEXT.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Cmd.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Config.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Domain.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::FTP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::NNTP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Netrc.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::POP3.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Ping.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::SMTP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::Time.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::hostent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::libnetFAQ.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::netent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::protoent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Net::servent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/O.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ODBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Opcode.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/POSIX.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Params::Check.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Parse::CPAN::Meta.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Perl::OSType.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO::encoding.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO::mmap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO::scalar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO::via.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/PerlIO::via::QuotedPrint.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Checker.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Escapes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Find.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Html.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::InputObjects.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Man.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::ParseLink.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::ParseUtils.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Parser.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::BaseTo.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::GetOptsOO.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToANSI.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToChecker.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToMan.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToNroff.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToPod.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToRtf.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToTerm.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToText.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToTk.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Perldoc::ToXml.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::PlainText.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Select.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Checker.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Debug.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::DumpAsText.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::DumpAsXML.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::HTML.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::HTMLBatch.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::LinkSection.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Methody.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::PullParser.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::PullParserEndToken.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::PullParserStartToken.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::PullParserTextToken.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::PullParserToken.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::RTF.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Search.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::SimpleTree.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Subclassing.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::Text.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::TextContent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::XHTML.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Simple::XMLOutStream.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Text.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Text::Color.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Text::Overstrike.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Text::Termcap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Pod::Usage.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/SDBM_File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Safe.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Scalar::Util.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Search::Dict.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/SelectSaver.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/SelfLoader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Socket.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Storable.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Sub::Util.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Symbol.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Sys::Hostname.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Sys::Syslog.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Color.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Console.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Console::ParallelSession.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Console::Session.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::File::Session.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Formatter::Session.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Harness.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Harness::Beyond.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Harness::Env.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Object.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Aggregator.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Grammar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Iterator.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Iterator::Array.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Iterator::Process.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Iterator::Stream.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::IteratorFactory.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Multiplexer.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Bailout.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Comment.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Plan.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Pragma.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Test.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Unknown.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::Version.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Result::YAML.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::ResultFactory.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Scheduler.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Scheduler::Job.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Scheduler::Spinner.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::Source.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler::Executable.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler::File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler::Handle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler::Perl.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::SourceHandler::RawTAP.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::YAMLish::Reader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/TAP::Parser::YAMLish::Writer.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Term::ANSIColor.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Term::Cap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Term::Complete.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Term::ReadLine.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Builder.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Builder::IO::Scalar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Builder::Module.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Builder::Tester.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Builder::Tester::Color.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Harness.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::More.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Simple.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Tester.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Tester::Capture.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Tester::CaptureRunner.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::Tutorial.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Test::use::ok.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Text::Abbrev.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Text::Balanced.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Text::ParseWords.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Text::Tabs.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Text::Wrap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Thread.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Thread::Queue.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Thread::Semaphore.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Array.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::File.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Handle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Hash.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Hash::NamedCapture.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Memoize.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::RefHash.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::Scalar.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::StdHandle.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Tie::SubstrHash.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::HiRes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::Local.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::Piece.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::Seconds.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::gmtime.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::localtime.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Time::tm.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/UNIVERSAL.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::Big5.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::GB2312.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::JISX0208.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::Korean.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::Pinyin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::Stroke.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::CJK::Zhuyin.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Collate::Locale.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::Normalize.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/Unicode::UCD.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/User::grent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/User::pwent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/XSLoader.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/arybase.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/attributes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::Scope::Guard.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::Scope::GuardStack.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::ScopeUtil.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::exception.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::exception::system.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::hints.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autodie::skip.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/autouse.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/base.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/bigint.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/bignum.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/bigrat.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/blib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/bytes.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/charnames.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/constant.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/deprecate.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/diagnostics.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/encoding.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/encoding::warnings.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/experimental.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/feature.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/fields.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/filetest.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/if.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/integer.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/less.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/lib.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/locale.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/mro.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ok.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/open.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/ops.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/overload.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/overloading.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/parent.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/re.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/sigtrap.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/sort.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/strict.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/subs.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/threads.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/threads::shared.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/utf8.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/vars.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/version.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/version::Internals.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/vmsish.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/warnings.3
+file path=usr/perl5/$(PERL_VERSION)/man/man3/warnings::register.3
+# These links are mediated so that customers may create their own IPS
+# packages and replace perl.
+link path=usr/perl5/bin target=$(PERL_VERSION)/bin mediator=perl \
+    mediator-version=$(PERL_VERSION)
+link path=usr/perl5/man target=$(PERL_VERSION)/man mediator=perl \
+    mediator-version=$(PERL_VERSION)
+link path=usr/perl5/pod target=$(PERL_VERSION)/lib/pod mediator=perl \
+    mediator-version=$(PERL_VERSION)
+#
+dir  path=usr/perl5/site_perl/$(PERL_VERSION)/$(P_ARCH)-solaris-thread-multi-64
+#
+license perl.license license=Artistic
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/perl.license	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,2661 @@
+Portions of this program use Perl 5.22, the open source version is made
+available by Larry Wall and others under the terms of the below version of the
+Artistic License.  As such, Oracle is required to provide the following notices.
+Note, however, that the Oracle program license that accompanied this program
+determines your right to use the Oracle program, including Perl, and the terms
+contained in the following notices do not change those rights.
+ 	
+Extensions to Perl have been made by Oracle to support current versions of
+Solaris and provide additional tools.  These changes are detailed in the
+https://java.net/projects/solaris-userland/sources/gate/show/components/perl/perl522/patches/
+subdirectory.
+ 
+The current open source version of Perl can be downloaded at:
+http://www.cpan.org/src/5.0/perl-5.22.1.tar.gz
+
+Oracle elects to license this file available under the Artistic License as
+expressly permitted by the Perl licensing terms.
+
+Perl is Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
+2013, 2014, 2015 by Larry Wall and others. All rights reserved.
+
+
+LICENSING
+=========
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of either:
+
+	a) the GNU General Public License as published by the Free
+	Software Foundation; either version 1, or (at your option) any
+	later version, or
+
+	b) the "Artistic License" which comes with this Kit.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
+the GNU General Public License or the Artistic License for more details.
+
+You should have received a copy of the Artistic License with this
+Kit, in the file named "Artistic". If not, I'll be glad to provide one.
+
+You should also have received a copy of the GNU General Public License
+along with this program in the file named "Copying". If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA or visit their web page on the internet at
+http://www.gnu.org/copyleft/gpl.html.
+
+For those of you that choose to use the GNU General Public License,
+my interpretation of the GNU General Public License is that no Perl
+script falls under the terms of the GPL unless you explicitly put
+said script under the terms of the GPL yourself. Furthermore, any
+object code linked with perl does not automatically fall under the
+terms of the GPL, provided such object code only adds definitions
+of subroutines and variables, and does not otherwise impair the
+resulting interpreter from executing any standard Perl script. I
+consider linking in C subroutines in this manner to be the moral
+equivalent of defining subroutines in the Perl language itself. You
+may sell such an object file as proprietary provided that you provide
+or offer to provide the Perl source, as specified by the GNU General
+Public License. (This is merely an alternate way of specifying input
+to the program.) You may also sell a binary produced by the dumping of
+a running Perl script that belongs to you, provided that you provide or
+offer to provide the Perl source as specified by the GPL. (The
+fact that a Perl interpreter and your code are in the same binary file
+is, in this case, a form of mere aggregation.) This is my interpretation
+of the GPL. If you still have concerns or difficulties understanding
+my intent, feel free to contact me. Of course, the Artistic License
+spells all this out for your protection, so you may prefer to use that.
+
+--------------------
+Artistic:
+
+
+
+			 The "Artistic License"
+
+				Preamble
+
+The intent of this document is to state the conditions under which a
+Package may be copied, such that the Copyright Holder maintains some
+semblance of artistic control over the development of the package,
+while giving the users of the package the right to use and distribute
+the Package in a more-or-less customary fashion, plus the right to make
+reasonable modifications.
+
+Definitions:
+
+	"Package" refers to the collection of files distributed by the
+	Copyright Holder, and derivatives of that collection of files
+	created through textual modification.
+
+	"Standard Version" refers to such a Package if it has not been
+	modified, or has been modified in accordance with the wishes
+	of the Copyright Holder as specified below.
+
+	"Copyright Holder" is whoever is named in the copyright or
+	copyrights for the package.
+
+	"You" is you, if you're thinking about copying or distributing
+	this Package.
+
+	"Reasonable copying fee" is whatever you can justify on the
+	basis of media cost, duplication charges, time of people involved,
+	and so on. (You will not be required to justify it to the
+	Copyright Holder, but only to the computing community at large
+	as a market that must bear the fee.)
+
+	"Freely Available" means that no fee is charged for the item
+	itself, though there may be fees involved in handling the item.
+	It also means that recipients of the item may redistribute it
+	under the same conditions they received it.
+
+1. You may make and give away verbatim copies of the source form of the
+Standard Version of this Package without restriction, provided that you
+duplicate all of the original copyright notices and associated disclaimers.
+
+2. You may apply bug fixes, portability fixes and other modifications
+derived from the Public Domain or from the Copyright Holder. A Package
+modified in such a way shall still be considered the Standard Version.
+
+3. You may otherwise modify your copy of this Package in any way, provided
+that you insert a prominent notice in each changed file stating how and
+when you changed that file, and provided that you do at least ONE of the
+following:
+
+a) place your modifications in the Public Domain or otherwise make them
+Freely Available, such as by posting said modifications to Usenet or
+an equivalent medium, or placing the modifications on a major archive
+site such as uunet.uu.net, or by allowing the Copyright Holder to include
+your modifications in the Standard Version of the Package.
+
+b) use the modified Package only within your corporation or organization.
+
+c) rename any non-standard executables so the names do not conflict
+with standard executables, which must also be provided, and provide
+a separate manual page for each non-standard executable that clearly
+documents how it differs from the Standard Version.
+
+d) make other distribution arrangements with the Copyright Holder.
+
+4. You may distribute the programs of this Package in object code or
+executable form, provided that you do at least ONE of the following:
+
+a) distribute a Standard Version of the executables and library files,
+together with instructions (in the manual page or equivalent) on where
+to get the Standard Version.
+
+b) accompany the distribution with the machine-readable source of
+the Package with your modifications.
+
+c) give non-standard executables non-standard names, and clearly
+document the differences in manual pages (or equivalent), together
+with instructions on where to get the Standard Version.
+
+d) make other distribution arrangements with the Copyright Holder.
+
+5. You may charge a reasonable copying fee for any distribution of this
+Package. You may charge any fee you choose for support of this
+Package. You may not charge a fee for this Package itself. However,
+you may distribute this Package in aggregate with other (possibly
+commercial) programs as part of a larger (possibly commercial) software
+distribution provided that you do not advertise this Package as a
+product of your own. You may embed this Package's interpreter within
+an executable of yours (by linking); this shall be construed as a mere
+form of aggregation, provided that the complete Standard Version of the
+interpreter is so embedded.
+
+6. The scripts and library files supplied as input to or produced as
+output from the programs of this Package do not automatically fall
+under the copyright of this Package, but belong to whoever generated
+them, and may be sold commercially, and may be aggregated with this
+Package. If such scripts or library files are aggregated with this
+Package via the so-called "undump" or "unexec" methods of producing a
+binary executable image, then distribution of such an image shall
+neither be construed as a distribution of this Package nor shall it
+fall under the restrictions of Paragraphs 3 and 4, provided that you do
+not represent such an executable image as a Standard Version of this
+Package.
+
+7. C subroutines (or comparably compiled subroutines in other
+languages) supplied by you and linked into this Package in order to
+emulate subroutines and variables of the language defined by this
+Package shall not be considered part of this Package, but are the
+equivalent of input as in Paragraph 6, provided these subroutines do
+not change the language in any way that would cause it to fail the
+regression tests for the language.
+
+8. Aggregation of this Package with a commercial distribution is always
+permitted provided that the use of this Package is embedded; that is,
+when no overt attempt is made to make this Package's interfaces visible
+to the end user of the commercial distribution. Such use shall not be
+construed as a distribution of this Package.
+
+9. The name of the Copyright Holder may not be used to endorse or promote
+products derived from this software without specific prior written permission.
+
+10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+				The End
+--------------------
+
+Copying:
+
+		 GNU GENERAL PUBLIC LICENSE
+		 Version 1, February 1989
+
+Copyright (C) 1989 Free Software Foundation, Inc.
+59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+			 Preamble
+
+The license agreements of most software companies try to keep users
+at the mercy of those companies. By contrast, our General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. The
+General Public License applies to the Free Software Foundation's
+software and to any other program whose authors commit to using it.
+You can use it for your programs, too.
+
+When we speak of free software, we are referring to freedom, not
+price. Specifically, the General Public License is designed to make
+sure that you have the freedom to give away or sell copies of free
+software, that you receive source code or can get it if you want it,
+that you can change the software or use pieces of it in new free
+programs; and that you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+For example, if you distribute copies of a such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must tell them their rights.
+
+We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+The precise terms and conditions for copying, distribution and
+modification follow.
+
+
+		 GNU GENERAL PUBLIC LICENSE
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License Agreement applies to any program or other work which
+contains a notice placed by the copyright holder saying it may be
+distributed under the terms of this General Public License. The
+"Program", below, refers to any such program or work, and a "work based
+on the Program" means either the Program or any work containing the
+Program or a portion of it, either verbatim or with modifications. Each
+licensee is addressed as "you".
+
+1. You may copy and distribute verbatim copies of the Program's source
+code as you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this
+General Public License and to the absence of any warranty; and give any
+other recipients of the Program a copy of this General Public License
+along with the Program. You may charge a fee for the physical act of
+transferring a copy.
+
+2. You may modify your copy or copies of the Program or any portion of
+it, and copy and distribute such modifications under the terms of Paragraph
+1 above, provided that you also do the following:
+
+a) cause the modified files to carry prominent notices stating that
+you changed the files and the date of any change; and
+
+b) cause the whole of any work that you distribute or publish, that
+in whole or in part contains the Program or any part thereof, either
+with or without modifications, to be licensed at no charge to all
+third parties under the terms of this General Public License (except
+that you may choose to grant warranty protection to some or all
+third parties, at your option).
+
+c) If the modified program normally reads commands interactively when
+run, you must cause it, when started running for such interactive use
+in the simplest and most usual way, to print or display an
+announcement including an appropriate copyright notice and a notice
+that there is no warranty (or else, saying that you provide a
+warranty) and that users may redistribute the program under these
+conditions, and telling the user how to view a copy of this General
+Public License.
+
+d) You may charge a fee for the physical act of transferring a
+copy, and you may at your option offer warranty protection in
+exchange for a fee.
+
+Mere aggregation of another independent work with the Program (or its
+derivative) on a volume of a storage or distribution medium does not bring
+the other work under the scope of these terms.
+
+
+3. You may copy and distribute the Program (or a portion or derivative of
+it, under Paragraph 2) in object code or executable form under the terms of
+Paragraphs 1 and 2 above provided that you also do one of the following:
+
+a) accompany it with the complete corresponding machine-readable
+source code, which must be distributed under the terms of
+Paragraphs 1 and 2 above; or,
+
+b) accompany it with a written offer, valid for at least three
+years, to give any third party free (except for a nominal charge
+for the cost of distribution) a complete machine-readable copy of the
+corresponding source code, to be distributed under the terms of
+Paragraphs 1 and 2 above; or,
+
+c) accompany it with the information you received as to where the
+corresponding source code may be obtained. (This alternative is
+allowed only for noncommercial distribution and only if you
+received the program in object code or executable form alone.)
+
+Source code for a work means the preferred form of the work for making
+modifications to it. For an executable file, complete source code means
+all the source code for all modules it contains; but, as a special
+exception, it need not include source code for modules which are standard
+libraries that accompany the operating system on which the executable
+file runs, or for standard header files or definitions files that
+accompany that operating system.
+
+4. You may not copy, modify, sublicense, distribute or transfer the
+Program except as expressly provided under this General Public License.
+Any attempt otherwise to copy, modify, sublicense, distribute or transfer
+the Program is void, and will automatically terminate your rights to use
+the Program under this License. However, parties who have received
+copies, or rights to use copies, from you under this General Public
+License will not have their licenses terminated so long as such parties
+remain in full compliance.
+
+5. By copying, distributing or modifying the Program (or any work based
+on the Program) you indicate your acceptance of this license to do so,
+and all its terms and conditions.
+
+6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the original
+licensor to copy, distribute or modify the Program subject to these
+terms and conditions. You may not impose any further restrictions on the
+recipients' exercise of the rights granted herein.
+
+
+7. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of the license which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+the license, you may choose any version ever published by the Free Software
+Foundation.
+
+8. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			 NO WARRANTY
+
+9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		 END OF TERMS AND CONDITIONS
+
+
+	Appendix: How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest
+possible use to humanity, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these
+terms.
+
+To do so, attach the following notices to the program. It is safest to
+attach them to the start of each source file to most effectively convey
+the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+
+Copyright (C) 19yy 
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 1, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software Foundation,
+Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+Gnomovision version 69, Copyright (C) 19xx name of author
+Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+This is free software, and you are welcome to redistribute it
+under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the
+appropriate parts of the General Public License. Of course, the
+commands you use may be called something other than `show w' and `show
+c'; they could even be mouse-clicks or menu items--whatever suits your
+program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here a sample; alter the names:
+
+Yoyodyne, Inc., hereby disclaims all copyright interest in the
+program `Gnomovision' (a program to direct compilers to make passes
+at assemblers) written by James Hacker.
+
+, 1 April 1989
+Ty Coon, President of Vice
+
+That's all there is to it!
+
+--------------------
+regcomp.c
+
+* pregcomp and pregexec -- regsub and regerror are not used in perl
+*
+* Copyright (c) 1986 by University of Toronto.
+* Written by Henry Spencer. Not derived from licensed software.
+*
+* Permission is granted to anyone to use this software for any
+* purpose on any computer system, and to redistribute it freely,
+* subject to the following restrictions:
+*
+* 1. The author is not responsible for the consequences of use of
+* this software, no matter how awful, even if they arise
+* from defects in it.
+*
+* 2. The origin of this software must not be misrepresented, either
+* by explicit claim or by omission.
+*
+* 3. Altered versions must be plainly marked as such, and must not
+* be misrepresented as being the original software.
+*
+*
+**** Alterations to Henry's code are...
+****
+**** Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+**** 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
+**** by Larry Wall and others
+****
+**** You may distribute under the terms of either the GNU General Public
+**** License or the Artistic License, as specified in the README file.
+
+--------------------
+time64.c
+
+Copyright (c) 2007-2008 Michael G Schwern
+
+This software originally derived from Paul Sheer's pivotal_gmtime_r.c.
+
+The MIT License:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions: 
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+--------------------
+cpan/Compress-Raw-Bzip2/bzip2-src/LICENSE
+
+This program, "bzip2", the associated library "libbzip2", and all
+documentation, are copyright (C) 1996-2010 Julian R Seward.  All
+rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+2. The origin of this software must not be misrepresented; you must
+   not claim that you wrote the original software.  If you use this
+   software in a product, an acknowledgment in the product
+   documentation would be appreciated but is not required.
+
+3. Altered source versions must be plainly marked as such, and must
+   not be misrepresented as being the original software.
+
+4. The name of the author may not be used to endorse or promote
+   products derived from this software without specific prior written
+   permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Julian Seward, [email protected]
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/adler32.c
+
+ * Copyright (C) 1995-2011 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/compress.c
+
+ * Copyright (C) 1995-2005 Jean-loup Gailly.
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/crc32.c
+
+ * Copyright (C) 1995-2006, 2010, 2011, 2012 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/deflate.c
+
+ * Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/deflate.h
+
+ * Copyright (C) 1995-2012 Jean-loup Gailly
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/inffast.h
+
+ * Copyright (C) 1995-2003, 2010 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+
+--------------------
+cpan/Compress-Raw-Zlib/zlib-src/zlib.h
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+  version 1.2.8, April 28th, 2013
+
+  Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
+
+  This software is provided 'as-is', without any express or implied
+  warranty.  In no event will the authors be held liable for any damages
+  arising from the use of this software.
+
+  Permission is granted to anyone to use this software for any purpose,
+  including commercial applications, and to alter it and redistribute it
+  freely, subject to the following restrictions:
+
+  1. The origin of this software must not be misrepresented; you must not
+     claim that you wrote the original software. If you use this software
+     in a product, an acknowledgment in the product documentation would be
+     appreciated but is not required.
+  2. Altered source versions must be plainly marked as such, and must not be
+     misrepresented as being the original software.
+  3. This notice may not be removed or altered from any source distribution.
+
+  Jean-loup Gailly        Mark Adler
+  [email protected]          [email protected]
+
+
+  The data format used by the zlib library is described by RFCs (Request for
+  Comments) 1950 to 1952 in the files http://tools.ietf.org/html/rfc1950
+  (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
+*/
+
+--------------------
+cpan/Digest-MD5/MD5.pm
+
+=head1 COPYRIGHT
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+ Copyright 1998-2003 Gisle Aas.
+ Copyright 1995-1996 Neil Winton.
+ Copyright 1991-1992 RSA Data Security, Inc.
+
+The MD5 algorithm is defined in RFC 1321. This implementation is
+derived from the reference C code in RFC 1321 which is covered by
+the following copyright statement:
+
+=over 4
+
+=item
+
+Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
+rights reserved.
+
+License to copy and use this software is granted provided that it
+is identified as the "RSA Data Security, Inc. MD5 Message-Digest
+Algorithm" in all material mentioning or referencing this software
+or this function.
+
+License is also granted to make and use derivative works provided
+that such works are identified as "derived from the RSA Data
+Security, Inc. MD5 Message-Digest Algorithm" in all material
+mentioning or referencing the derived work.
+
+RSA Data Security, Inc. makes no representations concerning either
+the merchantability of this software or the suitability of this
+software for any particular purpose. It is provided "as is"
+without express or implied warranty of any kind.
+
+These notices must be retained in any copies of any part of this
+documentation and/or software.
+
+=back
+
+This copyright does not prohibit distribution of any version of Perl
+containing this extension under the terms of the GNU or Artistic
+licenses.
+
+=head1 AUTHORS
+
+The original C<MD5> interface was written by Neil Winton
+(C<[email protected]>).
+
+The C<Digest::MD5> module is written by Gisle Aas <[email protected]>.
+
+--------------------
+cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm
+
+Copyright 2003, 2004, 2005, 2006 by Audrey Tang [email protected].
+
+This software is released under the MIT license cited below. Additionally,
+when this software is distributed with B, you may also
+redistribute it and/or modify it under the same terms as Perl itself.
+
+=head2 The "MIT" License
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
+
+--------------------
+cpan/Sys-Syslog/fallback/syslog.h
+
+/*
+* Copyright (c) 1982, 1986, 1988, 1993
+* The Regents of the University of California. All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+* notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+* notice, this list of conditions and the following disclaimer in the
+* documentation and/or other materials provided with the distribution.
+* 4. Neither the name of the University nor the names of its contributors
+* may be used to endorse or promote products derived from this software
+* without specific prior written permission.
+*
+* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+* SUCH DAMAGE. 
+* 
+* @(#)syslog.h 8.1 (Berkeley) 6/2/93
+*/
+
+--------------------
+cpan/Text-Tabs/lib/Text/Tabs.pm
+
+Copyright (C) 1996-2002,2005,2006 David Muir Sharnoff.
+Copyright (C) 2005 Aristotle Pagaltzis
+Copyright (C) 2012-2013 Google, Inc.
+This module may be modified, used, copied, and redistributed at your own risk.
+Although allowed by the preceding license, please do not publicly
+redistribute modified versions of this code with the name "Text::Tabs"
+unless it passes the unmodified Text::Tabs test suite.
+
+--------------------
+cpan/Text-Tabs/lib/Text/Wrap.pm
+
+Copyright (C) 1996-2009 David Muir Sharnoff.
+Copyright (C) 2012-2013 Google, Inc.
+This module may be modified, used, copied, and redistributed at your own risk.
+Although allowed by the preceding license, please do not publicly
+redistribute modified versions of this code with the name "Text::Wrap"
+unless it passes the unmodified Text::Wrap test suite.
+
+--------------------
+ext/File-Glob/bsd_glob.c
+
+* Copyright (c) 1989, 1993
+* The Regents of the University of California. All rights reserved.
+*
+* This code is derived from software contributed to Berkeley by
+* Guido van Rossum.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+* 1. Redistributions of source code must retain the above copyright
+* notice, this list of conditions and the following disclaimer.
+* 2. Redistributions in binary form must reproduce the above copyright
+* notice, this list of conditions and the following disclaimer in the
+* documentation and/or other materials provided with the distribution.
+* 3. Neither the name of the University nor the names of its contributors
+* may be used to endorse or promote products derived from this software
+* without specific prior written permission.
+*
+* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+* SUCH DAMAGE.
+
+--------------------
+ext/File-Glob/Glob.pm
+
+The Perl interface was written by Nathan Torkington [email protected],
+and is released under the artistic license. Further modifications were
+made by Greg Bacon [email protected], Gurusamy Sarathy
[email protected], and Thomas Wegner
[email protected]. The C glob code has the
+following copyright:
+
+Copyright (c) 1989, 1993 The Regents of the University of California.
+All rights reserved.
+
+This code is derived from software contributed to Berkeley by
+Guido van Rossum.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer in the
+documentation and/or other materials provided with the distribution.
+3. Neither the name of the University nor the names of its contributors
+may be used to endorse or promote products derived from this software
+without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
+
+--------------------
+lib/B/Op_private.pm
+
+#    Copyright (C) 2014 by Larry Wall and others
+#
+#    You may distribute under the terms of either the GNU General Public
+#    License or the Artistic License, as specified in the README file.
+--------------------
+lib/File/Copy.pm
+
+# File/Copy.pm. Written in 1994 by Aaron Sherman <[email protected]>. This
+# source code has been placed in the public domain by the author.
+# Please be kind and preserve the documentation.
+#
+# Additions copyright 1996 by Charles Bailey.  Permission is granted
+# to distribute the revised code under the same terms as Perl itself.
+
+--------------------
+
+
+COPYRIGHTS AND ATTRIBUTION TEXT FOUND IN SOURCE FILES
+=====================================================
+
+--------------------
+av.c
+
+* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
+*
+* You may distribute under the terms of either the GNU General Public
+* License or the Artistic License, as specified in the README file.
+--------------------
+doop.c
+
+* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+* 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
+*
+* You may distribute under the terms of either the GNU General Public
+* License or the Artistic License, as specified in the README file.
+--------------------
+caretx.c
+
+* Copyright (C) 2013
+* by Larry Wall and others
+*
+* You may distribute under the terms of either the GNU General Public
+* License or the Artistic License, as specified in the README file.
+--------------------
+inline_invlist.c
+
+* Copyright (C) 2012 by Larry Wall and others
+*
+* You may distribute under the terms of either the GNU General Public
+* License or the Artistic License, as specified in the README file.
+--------------------
+malloc.c
+
+* malloc.c (Caltech) 2/21/82
+* Chris Kingsley, kingsley@cit-20.
+
+* Modifications Copyright Ilya Zakharevich 1996-99.
+--------------------
+mro_core.c
+
+*    Copyright (c) 2007 Brandon L Black
+*    Copyright (c) 2007, 2008, 2009, 2010, 2011 Larry Wall and others
+*
+*    You may distribute under the terms of either the GNU General Public
+*    License or the Artistic License, as specified in the README file.
+--------------------
+perl.c
+
+ *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+ *    2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
+ *     by Larry Wall and others
+ *
+ *    You may distribute under the terms of either the GNU General Public
+ *    License or the Artistic License, as specified in the README file.
+--------------------
+perlio.c
+
+ * Copyright (c) 1996-2006, Nick Ing-Simmons
+ * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Larry Wall and others
+ *
+ * You may distribute under the terms of either the GNU General Public License
+ * or the Artistic License, as specified in the README file.
+
+--------------------
+perly.c
+
+ *    Copyright (c) 2004, 2005, 2006, 2007, 2008,
+ *    2009, 2010, 2011 by Larry Wall and others
+ *
+ *    You may distribute under the terms of either the GNU General Public
+ *    License or the Artistic License, as specified in the README file.
+ *
+ *    Note that this file was originally generated as an output from
+ *    GNU bison version 1.875, but now the code is statically maintained
+ *    and edited; the bits that are dependent on perly.y are now
+ *    #included from the files perly.tab and perly.act.
+ *
+ *    Here is an important copyright statement from the original, generated
+ *    file:
+ *
+ *      As a special exception, when this file is copied by Bison into a
+ *      Bison output file, you may use that output file without
+ *      restriction.  This special exception was added by the Free
+ *      Software Foundation in version 1.24 of Bison.
+--------------------
+pp_sort.c
+
+* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
+* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
+*
+* You may distribute under the terms of either the GNU General Public
+* License or the Artistic License, as specified in the README file.
+
+/*
+* The quicksort implementation was derived from source code contributed
+* by Tom Horsley.
+*
+* NOTE: this code was derived from Tom Horsley's qsort replacement
+* and should not be confused with the original code.
+*/
+
+/* Copyright (C) Tom Horsley, 1997. All rights reserved.
+
+Permission granted to distribute under the same terms as perl which are
+(briefly):
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of either:
+
+a) the GNU General Public License as published by the Free
+Software Foundation; either version 1, or (at your option) any
+later version, or
+
+b) the "Artistic License" which comes with this Kit.
+
+Details on the perl license can be found in the perl source code which
+may be located via the www.perl.com web page.
+
+This is the most wonderfulest possible qsort I can come up with (and
+still be mostly portable) My (limited) tests indicate it consistently
+does about 20% fewer calls to compare than does the qsort in the Visual
+C++ library, other vendors may vary.
+
+Some of the ideas in here can be found in "Algorithms" by Sedgewick,
+others I invented myself (or more likely re-invented since they seemed
+pretty obvious once I watched the algorithm operate for a while).
+--------------------
+perly.h
+
+/* A Bison parser, made by GNU Bison 2.3. */
+
+/* Skeleton interface for Bison's Yacc-like parsers in C
+
+Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+Free Software Foundation, Inc.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA. */
+
+/* As a special exception, you may create a larger work that contains
+part or all of the Bison parser skeleton and distribute that work
+under terms of your choice, so long as that work isn't itself a
+parser generator using the skeleton or a modified version thereof
+as a parser skeleton. Alternatively, if you modify or redistribute
+the parser skeleton itself, you may (at your option) remove this
+special exception, which will cause the skeleton and the resulting
+Bison output files to be licensed under the GNU General Public
+License without this special exception.
+
+This special exception was added by the Free Software Foundation in
+version 2.2 of Bison. */
+--------------------
+utfebcdic.h
+
+ *    Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2009,
+ *    2010, 2011 by Larry Wall, Nick Ing-Simmons, and others
+ *
+ *    You may distribute under the terms of either the GNU General Public
+ *    License or the Artistic License, as specified in the README file.
+--------------------
+cpan/DB_File/version.c
+
+version.c -- Perl 5 interface to Berkeley DB
+
+written by Paul Marquess 
+last modified 2nd Jan 2002
+version 1.802
+
+All comments/suggestions/problems are welcome
+
+Copyright (c) 1995-2002 Paul Marquess. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Devel-PPPort/module2.c
+
+*  Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
+*  Version 2.x, Copyright (C) 2001, Paul Marquess.
+*  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
+*
+*  This program is free software; you can redistribute it and/or
+*  modify it under the same terms as Perl itself.
+--------------------
+dist/IO/poll.c
+
+* Copyright (c) 1997-8 Graham Barr . All rights reserved.
+* This program is free software; you can redistribute it and/or
+* modify it under the same terms as Perl itself.
+--------------------
+cpan/Digest-SHA/src/sha.c
+
+ * Copyright (C) 2003-2015 Mark Shelor, All Rights Reserved
+--------------------
+cpan/Digest-SHA/src/sha.h
+
+ * Copyright (C) 2003-2015 Mark Shelor, All Rights Reserved
+--------------------
+cpan/Digest-SHA/src/sha64bit.c
+
+ * Copyright (C) 2003-2015 Mark Shelor, All Rights Reserved
+--------------------
+cpan/Digest-SHA/src/sha64bit.h
+
+ * Copyright (C) 2003-2015 Mark Shelor, All Rights Reserved
+--------------------
+Porting/checkansi.pl
+
+Copyright 2007 by Marcus Holland-Moritz .
+
+This program is free software; you may redistribute it
+and/or modify it under the same terms as Perl itself.
+--------------------
+Porting/config_h.pl
+
+# Copyright (C) 2005-2012 by H.Merijn Brand (m)'12 [22-09-2012]
+#
+# You may distribute under the terms of either the GNU General Public
+# License or the Artistic License, as specified in the README file.
+--------------------
+Porting/valgrindpp.pl
+
+Copyright 2003 by Marcus Holland-Moritz .
+
+This program is free software; you may redistribute it
+and/or modify it under the same terms as Perl itself.
+--------------------
+lib/deprecate.pm
+
+Copyright (C) 2009, 2011
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.10.0 or,
+at your option, any later version of Perl 5 you may have available.
+--------------------
+cpan/B-Debug/Debug.pm
+
+=head1 AUTHOR
+
+Malcolm Beattie, C<[email protected]>
+Reini Urban C<[email protected]>
+
+=head1 LICENSE
+
+Copyright (c) 1996, 1997 Malcolm Beattie
+Copyright (c) 2008, 2010, 2013, 2014 Reini Urban
+
+        This program is free software; you can redistribute it and/or modify
+        it under the terms of either:
+
+        a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+
+        b) the "Artistic License" which comes with this kit.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
+    the GNU General Public License or the Artistic License for more details.
+
+    You should have received a copy of the Artistic License with this kit,
+    in the file named "Artistic".  If not, you can get one from the Perl
+    distribution. You should also have received a copy of the GNU General
+    Public License, in the file named "Copying". If not, you can get one
+    from the Perl distribution or else write to the Free Software Foundation,
+    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+--------------------
+cpan/DB_File/DB_File.pm
+
+# Written by Paul Marquess ([email protected])
+#
+#     Copyright (c) 1995-2014 Paul Marquess. All rights reserved.
+#     This program is free software; you can redistribute it and/or
+#     modify it under the same terms as Perl itself.
+
+=head1 COPYRIGHT
+
+Copyright (c) 1995-2012 Paul Marquess. All rights reserved. This program
+is free software; you can redistribute it and/or modify it under the
+same terms as Perl itself.
+
+Although B<DB_File> is covered by the Perl license, the library it
+makes use of, namely Berkeley DB, is not. Berkeley DB has its own
+copyright and its own license. Please take the time to read it.
+
+Here are a few words taken from the Berkeley DB FAQ (at
+F<http://www.oracle.com/technology/products/berkeley-db/db/index.html>) regarding the license:
+
+    Do I have to license DB to use it in Perl scripts?
+
+    No. The Berkeley DB license requires that software that uses
+    Berkeley DB be freely redistributable. In the case of Perl, that
+    software is Perl, and not your scripts. Any Perl scripts that you
+    write are your property, including scripts that make use of
+    Berkeley DB. Neither the Perl license nor the Berkeley DB license
+    place any restriction on what you may do with them.
+
+If you are in any doubt about the license situation, contact either the
+Berkeley DB authors or the author of DB_File. See L<"AUTHOR"> for details.
+--------------------
+cpan/Digest-MD5/MD5.pm
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+Copyright 1998-2003 Gisle Aas.
+Copyright 1995-1996 Neil Winton.
+Copyright 1991-1992 RSA Data Security, Inc.
+
+The MD5 algorithm is defined in RFC 1321. This implementation is
+derived from the reference C code in RFC 1321 which is covered by
+the following copyright statement:
+
+=over 4
+
+=item
+
+Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
+rights reserved.
+
+License to copy and use this software is granted provided that it
+is identified as the "RSA Data Security, Inc. MD5 Message-Digest
+Algorithm" in all material mentioning or referencing this software
+or this function.
+
+License is also granted to make and use derivative works provided
+that such works are identified as "derived from the RSA Data
+Security, Inc. MD5 Message-Digest Algorithm" in all material
+mentioning or referencing the derived work.
+
+RSA Data Security, Inc. makes no representations concerning either
+the merchantability of this software or the suitability of this
+software for any particular purpose. It is provided "as is"
+without express or implied warranty of any kind.
+
+These notices must be retained in any copies of any part of this
+documentation and/or software.
+
+=back
+
+This copyright does not prohibit distribution of any version of Perl
+containing this extension under the terms of the GNU or Artistic
+licenses.
+--------------------
+cpan/Digest/Digest.pm
+
+Gisle Aas <[email protected]>
+
+The C<Digest::> interface is based on the interface originally
+developed by Neil Winton for his C<MD5> module.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+    Copyright 1998-2006 Gisle Aas.
+    Copyright 1995,1996 Neil Winton.
+--------------------
+cpan/Encode/bin/encguess
+
+LICENSE AND COPYRIGHT
+
+Copyright 2015 Michael LaGrasta and Dan Kogai.
+
+This program is free software; you can redistribute it and/or modify it
+under the terms of the the Artistic License (2.0). You may obtain a
+copy of the full license at:
+
+<http://www.perlfoundation.org/artistic_license_2_0>
+--------------------
+cpan/Encode/Encode.pm
+
+This project was originated by the late Nick Ing-Simmons and later
+maintained by Dan Kogai I<< <[email protected]> >>.  See AUTHORS
+for a full list of people involved.  For any questions, send mail to
+I<< <[email protected]> >> so that we can all share.
+
+While Dan Kogai retains the copyright as a maintainer, credit
+should go to all those involved.  See AUTHORS for a list of those
+who submitted code to the project.
+
+=head1 COPYRIGHT
+
+Copyright 2002-2014 Dan Kogai I<< <[email protected]> >>.
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/File-Temp/lib/File/Temp.pm
+
+Tim Jenness [email protected]
+
+This software is copyright (c) 2013 by Tim Jenness and the UK Particle Physics and Astronomy Research Council.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/Filter-Util-Call/Call.pm
+
+Copyright (c) 1995-2011 Paul Marquess. All rights reserved.
+Copyright (c) 2011-2014 Reini Urban. All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/IO-Zlib/Zlib.pm
+
+# Copyright (c) 1998-2004 Tom Hughes .
+# All rights reserved. This program is free software; you can redistribute
+# it and/or modify it under the same terms as Perl itself.
+--------------------
+cpan/Memoize/Memoize.pm
+
+# Copyright 1998, 1999, 2000, 2001, 2012 M. J. Dominus.
+# You may copy and distribute this program under the
+# same terms as Perl itself.  If in doubt,
+# write to [email protected] for a license.
+
+Copyright 1998, 1999, 2000, 2001, 2012  by Mark Jason Dominus
+
+This library is free software; you may redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/MIME-Base64/Base64.pm
+
+Copyright 1995-1999, 2001-2004 Gisle Aas.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+Distantly based on LWP::Base64 written by Martijn Koster
+and Joerg Reichelt and
+code posted to comp.lang.perl by Hans
+Mulder 
+
+The XS implementation uses code from metamail. Copyright 1991 Bell
+Communications Research, Inc. (Bellcore)
+--------------------
+cpan/MIME-Base64/QuotedPrint.pm
+
+Copyright 1995-1997,2002-2004 Gisle Aas.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Sys-Syslog/Syslog.pm
+
+Copyright (C) 1990-2012 by Larry Wall and others.
+
+=head1 LICENSE
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/Term-ANSIColor/lib/Term/ANSIColor.pm
+
+# Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, 2010,
+#     2011, 2012, 2013, 2014 Russ Allbery <[email protected]>
+# Copyright 1996 Zenin
+# Copyright 2012 Kurt Starsinic <[email protected]>
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+#
+# PUSH/POP support submitted 2007 by openmethods.com voice solutions
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright 1996 Zenin.  Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005,
+2006, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Russ Allbery
+<[email protected]>.  Copyright 2012 Kurt Starsinic <[email protected]>.
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/Time-HiRes/HiRes.pm
+
+Copyright (c) 1996-2002 Douglas E. Wegscheid.  All rights reserved.
+
+Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Jarkko Hietaniemi.
+All rights reserved.
+
+Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <[email protected]>
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/Unicode-Collate/Collate.pm
+
+The Unicode::Collate module for perl was written by SADAHIRO Tomoyuki,
+<[email protected]>. This module is Copyright(C) 2001-2014,
+SADAHIRO Tomoyuki. Japan. All rights reserved.
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+The file Unicode/Collate/allkeys.txt was copied verbatim
+from L<http://www.unicode.org/Public/UCA/6.3.0/allkeys.txt>.
+For this file, Copyright (c) 2001-2012 Unicode, Inc.
+Distributed under the Terms of Use in L<http://www.unicode.org/copyright.html>.
+--------------------
+cpan/Unicode-Normalize/Normalize.pm
+
+Copyright(C) 2001-2012, SADAHIRO Tomoyuki. Japan. All rights reserved.
+
+This module is free software; you can redistribute it
+and/or modify it under the same terms as Perl itself.
+--------------------
+dist/Data-Dumper/Dumper.pm
+
+Gurusamy Sarathy        [email protected]
+
+Copyright (c) 1996-2014 Gurusamy Sarathy. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+dist/Storable/Storable.pm
+
+#  Copyright (c) 1995-2001, Raphael Manfredi
+#  Copyright (c) 2002-2014 by the Perl 5 Porters
+#
+#  You may redistribute only under the same terms as Perl 5, as specified
+#  in the README file that comes with the distribution.
+--------------------
+ext/B/B.pm
+
+# Copyright (c) 1996, 1997, 1998 Malcolm Beattie
+#
+# You may distribute under the terms of either the GNU General Public
+# License or the Artistic License, as specified in the README file.
+--------------------
+ext/Devel-Peek/Peek.pm
+
+Ilya Zakharevich [email protected]
+
+Copyright (c) 1995-98 Ilya Zakharevich. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+Author of this software makes no claim whatsoever about suitability,
+reliability, edability, editability or usability of this product, and
+should not be kept liable for any damage resulting from the use of
+it. If you can use it, you are in luck, if not, I should not be kept
+responsible. Keep a handy copy of your backup tape at hand.
+--------------------
+ext/I18N-Langinfo/Langinfo.pm
+
+Copyright 2001 by Jarkko Hietaniemi
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+ext/mro/mro.pm
+
+# Copyright (c) 2007 Brandon L Black
+# Copyright (c) 2008,2009 Larry Wall and others
+#
+# You may distribute under the terms of either the GNU General Public
+# License or the Artistic License, as specified in the README file.
+--------------------
+ext/XS-APItest/APItest.pm
+
+Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden.
+All Rights Reserved.
+
+Copyright (C) 2009 Andrew Main (Zefram) <[email protected]>
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+ext/XS-Typemap/Typemap.pm
+
+Tim Jenness [email protected]
+
+Copyright (C) 2001 Tim Jenness All Rights Reserved. This program is
+free software; you can redistribute it and/or modify it under the same
+terms as Perl itself.
+--------------------
+cpan/autodie/lib/autodie.pm
+
+Copyright 2008-2009, Paul Fenwick [email protected]
+
+=head1 LICENSE
+
+This module is free software. You may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/autodie/lib/Fatal.pm
+
+Original module by Lionel Cons (CERN).
+
+Prototype updates by Ilya Zakharevich .
+
+L support, bugfixes, extended diagnostics, C
+support, and major overhauling by Paul Fenwick 
+
+=head1 LICENSE
+
+This module is free software, you may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/AutoLoader/lib/AutoLoader.pm
+
+This package has been part of the perl core since the first release
+of perl5. It has been released separately to CPAN so older installations
+can benefit from bug fixes.
+
+This package has the same copyright and license as the perl core:
+
+             Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+        2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+        2011, 2012, 2013
+        by Larry Wall and others
+
+                            All rights reserved.
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of either:
+
+        a) the GNU General Public License as published by the Free
+        Software Foundation; either version 1, or (at your option) any
+        later version, or
+
+        b) the "Artistic License" which comes with this Kit.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
+    the GNU General Public License or the Artistic License for more details.
+
+    You should have received a copy of the Artistic License with this
+    Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
+
+    You should also have received a copy of the GNU General Public License
+    along with this program in the file named "Copying". If not, write to the
+    Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+    MA 02110-1301, USA or visit their web page on the internet at
+    http://www.gnu.org/copyleft/gpl.html.
+
+    For those of you that choose to use the GNU General Public License,
+    my interpretation of the GNU General Public License is that no Perl
+    script falls under the terms of the GPL unless you explicitly put
+    said script under the terms of the GPL yourself.  Furthermore, any
+    object code linked with perl does not automatically fall under the
+    terms of the GPL, provided such object code only adds definitions
+    of subroutines and variables, and does not otherwise impair the
+    resulting interpreter from executing any standard Perl script.  I
+    consider linking in C subroutines in this manner to be the moral
+    equivalent of defining subroutines in the Perl language itself.  You
+    may sell such an object file as proprietary provided that you provide
+    or offer to provide the Perl source, as specified by the GNU General
+    Public License.  (This is merely an alternate way of specifying input
+    to the program.)  You may also sell a binary produced by the dumping of
+    a running Perl script that belongs to you, provided that you provide or
+    offer to provide the Perl source as specified by the GPL.  (The
+    fact that a Perl interpreter and your code are in the same binary file
+    is, in this case, a form of mere aggregation.)  This is my interpretation
+    of the GPL.  If you still have concerns or difficulties understanding
+    my intent, feel free to contact me.  Of course, the Artistic License
+    spells all this out for your protection, so you may prefer to use that.
+--------------------
+cpan/Devel-PPPort/devel/buildperl.pl
+
+#  Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
+#  Version 2.x, Copyright (C) 2001, Paul Marquess.
+#  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the same terms as Perl itself.
+
+Copyright (c) 2004-2013, Marcus Holland-Moritz.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/libnet/Makefile.PL
+
+# COPYRIGHT
+#   Copyright (C) 2014 Steve Hay.  All rights reserved.
+#
+# LICENCE
+#   You may distribute under the terms of either the GNU General Public License
+#   or the Artistic License, as specified in the LICENCE file.
+--------------------
+cpan/libnet/lib/Net/Cmd.pm
+
+# Versions up to 2.29_1 Copyright (c) 1995-2006 Graham Barr <[email protected]>.
+# All rights reserved.
+# Changes in Version 2.29_2 onwards Copyright (C) 2013-2014 Steve Hay.  All
+# rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Versions up to 2.29_1 Copyright (c) 1995-2006 Graham Barr. All rights reserved.
+Changes in Version 2.29_2 onwards Copyright (C) 2013-2014 Steve Hay.  All rights
+reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/libnet/lib/Net/Config.pm
+
+# Versions up to 1.11 Copyright (c) 2000 Graham Barr <[email protected]>.
+# All rights reserved.
+# Changes in Version 1.11_01 onwards Copyright (C) 2013-2014 Steve Hay.  All
+# rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+--------------------
+cpan/libnet/Net/Domain.pm
+
+# Versions up to 2.21 Copyright (c) 1995-1998 Graham Barr <[email protected]>.
+# All rights reserved.
+# Changes in Version 2.22 onwards Copyright (C) 2013-2014 Steve Hay.  All rights
+# reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Versions up to 2.21 Copyright (c) 1995-1998 Graham Barr. All rights reserved.
+Changes in Version 2.22 onwards Copyright (C) 2013-2014 Steve Hay.  All rights
+reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/NEXT/lib/NEXT.pm
+
+Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
+This module is free software. It may be used, redistributed
+and/or modified under the same terms as Perl itself.
+--------------------
+cpan/parent/lib/parent.pm
+
+Copyright (c) 2007-10 Max Maischein C<< <[email protected]> >>
+Based on the idea of C<base.pm>, which was introduced with Perl 5.004_04.
+
+=head1 LICENSE
+
+This module is released under the same terms as Perl itself.
+--------------------
+cpan/Test/lib/Test.pm
+
+Copyright (c) 1998-2000 Joshua Nathaniel Pritikin.
+
+Copyright (c) 2001-2002 Michael G. Schwern.
+
+Copyright (c) 2002-2004 Sean M. Burke.
+
+Current maintainer: Jesse Vincent. [email protected]
+
+This package is free software and is provided "as is" without express
+or implied warranty. It may be used, redistributed and/or modified
+under the same terms as Perl itself.
+--------------------
+dist/constant/lib/constant.pm
+
+Copyright (C) 1997, 1999 Tom Phoenix
+
+This module is free software; you can redistribute it or modify it
+under the same terms as Perl itself.
+--------------------
+dist/SelfLoader/lib/SelfLoader.pm
+
+This package has been part of the perl core since the first release
+of perl5. It has been released separately to CPAN so older installations
+can benefit from bug fixes.
+
+This package has the same copyright and license as the perl core:
+
+Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
+
+All rights reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of either:
+
+a) the GNU General Public License as published by the Free
+Software Foundation; either version 1, or (at your option) any
+later version, or
+
+b) the "Artistic License" which comes with this Kit.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
+the GNU General Public License or the Artistic License for more details.
+
+You should have received a copy of the Artistic License with this
+Kit, in the file named "Artistic". If not, I'll be glad to provide one.
+
+You should also have received a copy of the GNU General Public License
+along with this program in the file named "Copying". If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307, USA or visit their web page on the internet at
+http://www.gnu.org/copyleft/gpl.html.
+
+For those of you that choose to use the GNU General Public License,
+my interpretation of the GNU General Public License is that no Perl
+script falls under the terms of the GPL unless you explicitly put
+said script under the terms of the GPL yourself. Furthermore, any
+object code linked with perl does not automatically fall under the
+terms of the GPL, provided such object code only adds definitions
+of subroutines and variables, and does not otherwise impair the
+resulting interpreter from executing any standard Perl script. I
+consider linking in C subroutines in this manner to be the moral
+equivalent of defining subroutines in the Perl language itself. You
+may sell such an object file as proprietary provided that you provide
+or offer to provide the Perl source, as specified by the GNU General
+Public License. (This is merely an alternate way of specifying input
+to the program.) You may also sell a binary produced by the dumping of
+a running Perl script that belongs to you, provided that you provide or
+offer to provide the Perl source as specified by the GPL. (The
+fact that a Perl interpreter and your code are in the same binary file
+is, in this case, a form of mere aggregation.) This is my interpretation
+of the GPL. If you still have concerns or difficulties understanding
+my intent, feel free to contact me. Of course, the Artistic License
+spells all this out for your protection, so you may prefer to use that.
+--------------------
+ext/B/B/Concise.pm
+
+# Copyright (C) 2000-2003 Stephen McCamant. All rights reserved.
+# This program is free software; you can redistribute and/or modify it
+# under the same terms as Perl itself.
+--------------------
+cpan/Archive-Tar/lib/Archive/Tar.pm
+
+This module is copyright (c) 2002 - 2009 Jos Boumans
[email protected]. All rights reserved.
+
+This library is free software; you may redistribute and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/autodie/lib/autodie/exception.pm
+
+Copyright (C)2008 Paul Fenwick
+
+This is free software. You may modify and/or redistribute this
+code under the same terms as Perl 5.10 itself, or, at your option,
+any later version of Perl 5.
+--------------------
+cpan/autodie/lib/autodie/hints.pm
+
+Copyright 2009, Paul Fenwick [email protected]
+
+=head1 LICENSE
+
+This module is free software. You may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/Config-Perl-V/V.pm
+
+Copyright (C) 2009-2015 H.Merijn Brand
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+-------------------
+cpan/CPAN/lib/App/Cpan.pm
+
+Copyright (c) 2001-2014, brian d foy, All Rights Reserved.
+
+You may redistribute this under the same terms as Perl itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/Merge.pm
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/History.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/Prereqs.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/Feature.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/Spec.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta/lib/CPAN/Meta/Converter.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta-Requirements/lib/CPAN/Meta/Requirements.pm
+
+This software is copyright (c) 2010 by David Golden and Ricardo Signes.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/CPAN-Meta-YAML/lib/CPAN/Meta/YAML.pm
+
+This software is copyright (c) 2010 by Adam Kennedy.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/Digest-SHA/lib/Digest/SHA.pm
+
+Copyright (C) 2003-2015 Mark Shelor
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/encoding-warnings/lib/encoding/warnings.pm
+
+Copyright 2004, 2005, 2006, 2007 by Audrey Tang [email protected].
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+See L<http://www.perl.com/perl/misc/Artistic.html>
+--------------------
+cpan/ExtUtils-Install/lib/ExtUtils/Install.pm
+
+=head1 LICENSE
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+See L<http://www.perl.com/perl/misc/Artistic.html>
+--------------------
+cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 1996- by Andreas Koenig.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/experimental/lib/experimental.pm
+
+This software is copyright (c) 2013 by Leon Timmermans.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/File-Path/lib/File/Path.pm
+
+This module is copyright (C) Charles Bailey, Tim Bunce and
+David Landgren 1995-2013. All rights reserved.
+
+=head1 LICENSE
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/Getopt-Long/lib/Getopt/Long.pm
+
+This program is Copyright 1990,2015 by Johan Vromans.
+This program is free software; you can redistribute it and/or
+modify it under the terms of the Perl Artistic License or the
+GNU General Public License as published by the Free Software
+Foundation; either version 2 of the License, or (at your option) any
+later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+If you do not have a copy of the GNU General Public License write to
+the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
+MA 02139, USA.
+--------------------
+cpan/HTTP-Tiny/lib/HTTP/Tiny.pm
+
+This software is copyright (c) 2015 by Christian Hansen.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/IO-Compress/lib/Compress/Zlib.pm
+
+Copyright (c) 1995-2014 Paul Marquess. All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/IO-Compress/lib/File/GlobMapper.pm
+
+Copyright (c) 2005 Paul Marquess. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/IPC-SysV/lib/IPC/Msg.pm
+
+#  Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <[email protected]>.
+#  Version 1.x, Copyright (C) 1997, Graham Barr <[email protected]>.
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the same terms as Perl itself.
+
+Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz.
+
+Version 1.x, Copyright (c) 1997, Graham Barr.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/JSON-PP/bin/json_pp
+
+Copyright 2010 by Makamaka Hannyaharamitu
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/JSON-PP/lib/JSON/PP.pm
+
+Copyright 2007-2014 by Makamaka Hannyaharamitu
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+--------------------
+cpan/Module-Metadata/lib/Module/Metadata.pm
+
+Original code Copyright (c) 2001-2011 Ken Williams.
+Additional code Copyright (c) 2010-2011 Matt Trout and David Golden.
+All rights reserved.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Params-Check/lib/Params/Check.pm
+
+This library is free software; you may redistribute and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/Pod-Escapes/lib/Pod/Escapes.pm
+
+Copyright (c) 2001-2004 Sean M. Burke. All rights reserved.
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+
+Portions of the data tables in this module are derived from the
+entity declarations in the W3C XHTML specification.
+
+Currently (October 2001), that's these three:
+
+http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent
+http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent
+http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent
+--------------------
+cpan/Pod-Parser/lib/Pod/Find.pm
+
+# Copyright (C) 1999-2000 by Marek Rouchal (and borrowing code
+# from Nick Ing-Simmon's PodToHtml). All rights reserved.
+# This file is part of "PodParser". Pod::Find is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Pod-Parser/lib/Pod/Parser.pm
+
+# Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+
+Pod-Parser is free software; you can redistribute it and/or modify it
+under the terms of the Artistic License distributed with Perl version
+5.000 or (at your option) any later version. Please refer to the
+Artistic License that came with your Perl distribution for more
+details. If your version of Perl was not distributed under the
+terms of the Artistic License, than you may distribute PodParser
+under the same terms as Perl itself.
+--------------------
+cpan/Pod-Parser/lib/Pod/ParseUtils.pm
+
+# Copyright (C) 1999-2000 by Marek Rouchal. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Perl-OSType/lib/Perl/OSType.pm
+
+This software is copyright (c) 2015 by David Golden.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/Pod-Checker/lib/Pod/Checker.pm
+
+# Copyright (C) 1994-2000 by Bradford Appleton. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Pod-Checker/scripts/podchecker.PL
+
+# Copyright (c) 1998-2000 by Bradford Appleton. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Pod-Parser/lib/Pod/PlainText.pm
+
+# Copyright 1999-2000 by Russ Allbery 
+# 
+# This program is free software; you can redistribute it and/or modify it
+# under the same terms as Perl itself.
+--------------------
+cpan/Pod-Perldoc/lib/Pod/Perldoc.pm
+
+Copyright (c) 2002-2007 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/podlators/lib/Pod/Man.pm
+
+# Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+#     2010, 2012, 2013 Russ Allbery <[email protected]>
+# Substantial contributions by Sean Burke <[email protected]>
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+
+Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+2009, 2010, 2012, 2013 Russ Allbery <[email protected]>.
+
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/podlators/lib/Pod/ParseLink.pm
+
+# Copyright 2001, 2008, 2009 by Russ Allbery 
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+
+Copyright 2001, 2008, 2009 Russ Allbery <[email protected]>.
+
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/Pod-Usage/scripts/pod2usage.PL
+
+# Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Pod-Usage/lib/Pod/Usage.pm
+
+# Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.
+# This file is part of "PodParser". PodParser is free software;
+# you can redistribute it and/or modify it under the same terms
+# as Perl itself.
+--------------------
+cpan/Test-Harness/lib/TAP/Parser.pm
+
+Copyright 2006-2008 Curtis "Ovid" Poe, all rights reserved.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+--------------------
+cpan/Test-Harness/lib/Test/Harness.pm
+
+Copyright (c) 2007-2011, Andy Armstrong C<< <[email protected]> >>. All rights reserved.
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself. See L<perlartistic>.
+--------------------
+cpan/Test-Simple/lib/Test/Builder.pm
+
+Copyright 2002-2008 by chromatic [email protected] and
+Michael G Schwern [email protected].
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+See F<http://www.perl.com/perl/misc/Artistic.html>
+--------------------
+cpan/Test-Simple/lib/Test/Builder/IO/Scalar.pm
+
+=head1 COPYRIGHT and LICENSE
+
+This file came from the "IO-stringy" Perl5 toolkit.
+
+Copyright (c) 1996 by Eryq.  All rights reserved.
+Copyright (c) 1999,2001 by ZeeGee Software Inc.  All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Test-Simple/lib/Test/More.pm
+
+Copyright 2001-2008 by Michael G Schwern [email protected].
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+See F<http://www.perl.com/perl/misc/Artistic.html>
+--------------------
+cpan/Test-Simple/lib/Test/Tester.pm
+
+This module is copyright 2005 Fergal Daly <[email protected]>, some parts
+are based on other people's work.
+
+Plan handling lifted from Test::More. written by Michael G Schwern
+<[email protected]>.
+
+Test::Tester::Capture is a cut down and hacked up version of Test::Builder.
+Test::Builder was written by chromatic <[email protected]> and Michael G
+Schwern <[email protected]>.
+
+=head1 LICENSE
+
+Under the same license as Perl itself
+
+See http://www.perl.com/perl/misc/Artistic.html
+--------------------
+cpan/Test-Simple/lib/Test/Tester/Capture.pm
+
+=head1 LICENSE
+
+Under the same license as Perl itself
+
+See http://www.perl.com/perl/misc/Artistic.html
+--------------------
+cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm
+
+Copyright 2003 by Fergal Daly <[email protected]>.
+
+=head1 LICENSE
+
+Under the same license as Perl itself
+
+See http://www.perl.com/perl/misc/Artistic.html
+--------------------
+cpan/Text-Balanced/lib/Text/Balanced.pm
+
+Copyright 1997 - 2001 Damian Conway. All Rights Reserved.
+
+Some (minor) parts copyright 2009 Adam Kennedy.
+
+This module is free software. It may be used, redistributed
+and/or modified under the same terms as Perl itself.
+--------------------
+dist/Attribute-Handlers/lib/Attribute/Handlers.pm
+
+         Copyright (c) 2001-2014, Damian Conway. All Rights Reserved.
+       This module is free software. It may be used, redistributed
+           and/or modified under the same terms as Perl itself.
+--------------------
+dist/Filter-Simple/lib/Filter/Simple.pm
+
+    Copyright (c) 2000-2014, Damian Conway. All Rights Reserved.
+    This module is free software. It may be used, redistributed
+    and/or modified under the same terms as Perl itself.
+--------------------
+dist/I18N-LangTags/lib/I18N/LangTags.pm
+
+Copyright (c) 1998+ Sean M. Burke. All rights reserved.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+The programs and documentation in this dist are distributed in
+the hope that they will be useful, but without any warranty; without
+even the implied warranty of merchantability or fitness for a
+particular purpose.
+--------------------
+dist/IO/lib/IO/Dir.pm
+
+# Copyright (c) 1997-8 Graham Barr . All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Copyright (c) 1997-2003 Graham Barr <[email protected]>. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+dist/IO/lib/IO/Pipe.pm
+
+# Copyright (c) 1996-8 Graham Barr . All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Copyright (c) 1996-8 Graham Barr <[email protected]>. All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+dist/IO/lib/IO/Socket.pm
+
+# Copyright (c) 1997-8 Graham Barr <[email protected]>. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Copyright (c) 1997-8 Graham Barr . All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+The atmark() implementation: Copyright 2001, Lincoln Stein .
+This module is distributed under the same terms as Perl itself.
+Feel free to use, modify and redistribute it as long as you retain
+the correct attribution.
+--------------------
+dist/Net-Ping/lib/Net/Ping.pm
+
+Copyright (c) 2002-2003, Rob Brown. All rights reserved.
+
+Copyright (c) 2001, Colin McMillen. All rights reserved.
+
+This program is free software; you may redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+ext/Hash-Util/lib/Hash/Util.pm
+
+hv_store() is from Array::RefElem, Copyright 2000 Gisle Aas.
+--------------------
+cpan/autodie/lib/autodie/exception/system.pm
+
+Copyright (C)2008 Paul Fenwick
+
+This is free software. You may modify and/or redistribute this
+code under the same terms as Perl 5.10 itself, or, at your option,
+any later version of Perl 5.
+--------------------
+cpan/autodie/lib/autodie/Scope/Guard.pm
+
+=head1 AUTHOR
+
+Copyright 2008-2009, Paul Fenwick E<lt>[email protected]<gt>
+
+=head1 LICENSE
+
+This module is free software.  You may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/autodie/lib/autodie/Scope/GuardStack.pm
+
+=head1 AUTHOR
+
+Copyright 2013, Niels Thykier E<lt>[email protected]<gt>
+
+=head1 LICENSE
+
+This module is free software.  You may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/autodie/lib/autodie/ScopeUtil.pm
+
+=head1 AUTHOR
+
+Copyright 2013, Niels Thykier E<lt>[email protected]<gt>
+
+=head1 LICENSE
+
+This module is free software.  You may distribute it under the
+same terms as Perl itself.
+--------------------
+cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm
+
+Copyright (c) 2005-2014 Paul Marquess. All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/IO-Compress/lib/IO/Compress/Base.pm
+
+Copyright (c) 2005-2014 Paul Marquess. All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/IO-Compress/lib/IO/Compress/Bzip2.pm
+
+Copyright (c) 2005-2014 Paul Marquess. All rights reserved.
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm
+
+This software is copyright (c) 2014 by Adam Kennedy and Contributors.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+--------------------
+cpan/PerlIO-via-QuotedPrint/lib/PerlIO/via/QuotedPrint.pm
+
+Copyright (c) 2002, 2003, 2004, 2012 Elizabeth Mattijsen.  All rights reserved.
+This library is free software; you can redistribute it and/or modify it under
+the same terms as Perl itself.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple/Checker.pm
+
+Copyright (c) 2002 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple/HTML.pm
+
+Copyright (c) 2002-2004 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm
+
+Copyright (c) 2004 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple/XHTML.pm
+
+Copyright (c) 2003-2005 Allison Randal.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/podlators/lib/Pod/Text/Color.pm
+
+# Copyright 1999, 2001, 2004, 2006, 2008, 2009 Russ Allbery <[email protected]>
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+
+Copyright 1999, 2001, 2004, 2006, 2008, 2009 Russ Allbery .
+
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/podlators/lib/Pod/Text/Overstrike.pm
+
+# Copyright 2000 Joe Smith <[email protected]>.
+# Copyright 2001, 2004, 2008 Russ Allbery <[email protected]>.
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+
+Copyright 2000 by Joe Smith <[email protected]>.
+Copyright 2001, 2004, 2008 by Russ Allbery <[email protected]>.
+
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/podlators/lib/Pod/Text/Termcap.pm
+
+# Copyright 1999, 2001, 2002, 2004, 2006, 2008, 2009
+#     Russ Allbery <[email protected]>
+#
+# This program is free software; you may redistribute it and/or modify it
+# under the same terms as Perl itself.
+
+Copyright 1999, 2001, 2002, 2004, 2006, 2008, 2009 Russ Allbery
+<[email protected]>.
+
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+--------------------
+cpan/Test-Simple/lib/Test/Builder/Tester.pm
+
+Copyright Mark Fowler E<lt>[email protected]<gt> 2002, 2004.
+
+Some code taken from L<Test::More> and L<Test::Catch>, written by
+Michael G Schwern E<lt>[email protected]<gt>.  Hence, those parts
+Copyright Micheal G Schwern 2001.  Used and distributed with
+permission.
+
+This program is free software; you can redistribute it
+and/or modify it under the same terms as Perl itself.
+--------------------
+dist/I18N-LangTags/lib/I18N/LangTags/Detect.pm
+
+Copyright (c) 1998-2004 Sean M. Burke. All rights reserved.
+
+This library is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+The programs and documentation in this dist are distributed in
+the hope that they will be useful, but without any warranty; without
+even the implied warranty of merchantability or fitness for a
+particular purpose.
+--------------------
+dist/I18N-LangTags/lib/I18N/LangTags/List.pm
+
+Copyright (c) 2001+ Sean M. Burke. All rights reserved.
+
+You can redistribute and/or
+modify this document under the same terms as Perl itself.
+
+This document is provided in the hope that it will be
+useful, but without any warranty;
+without even the implied warranty of accuracy, authoritativeness,
+completeness, merchantability, or fitness for a particular purpose.
+--------------------
+dist/IO/lib/IO/Socket/INET.pm
+
+# Copyright (c) 1997-8 Graham Barr <[email protected]>. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the same terms as Perl itself.
+
+Copyright (c) 1996-8 Graham Barr . All rights reserved.
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+ext/Hash-Util-FieldHash/lib/Hash/Util/FieldHash.pm
+
+Copyright (C) 2006-2007 by (Anno Siegel)
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.7 or,
+at your option, any later version of Perl 5 you may have available.
+--------------------
+cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm
+
+Copyright 2007-2011 Andy Armstrong.
+
+Portions copyright 2006-2008 Adam Kennedy.
+
+This program is free software; you can redistribute
+it and/or modify it under the same terms as Perl itself.
+
+The full text of the license can be found in the
+LICENSE file included with this module.
+--------------------
+cpan/Test-Harness/lib/TAP/Parser/YAMLish/Writer.pm
+
+Copyright 2007-2011 Andy Armstrong.
+
+This program is free software; you can redistribute
+it and/or modify it under the same terms as Perl itself.
+
+The full text of the license can be found in the
+LICENSE file included with this module.
+--------------------
+cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm
+
+Copyright Mark Fowler E<lt>[email protected]<gt> 2002.
+
+This program is free software; you can redistribute it
+and/or modify it under the same terms as Perl itself.
+--------------------
+Following are copyrights and attribution text found in documentation files.
+--------------------
+pod/perl5005delta.pod
+
+Perl has a new Social Contract for contributors.  See F<Porting/Contract>.
+
+The license included in much of the Perl documentation has changed.
+Most of the Perl documentation was previously under the implicit GNU
+General Public License or the Artistic License (at the user's choice).
+Now much of the documentation unambiguously states the terms under which
+it may be distributed. Those terms are in general much less restrictive
+than the GNU GPL. See L and the individual perl manpages listed
+therein.
+--------------------
+pod/perl561delta.pod
+
+Getopt::Long licensing has changed to allow the Perl Artistic License
+as well as the GPL. It used to be GPL only, which got in the way of
+non-GPL applications that wanted to use Getopt::Long.
+--------------------
+pod/perldebtut.pod
+
+Richard Foley <[email protected]> Copyright (c) 2000
+--------------------
+pod/perlembed.pod
+
+Copyright (C) 1995, 1996, 1997, 1998 Doug MacEachern and Jon Orwant.  All
+Rights Reserved.
+
+This document may be distributed under the same terms as Perl itself.
+--------------------
+pod/perlfilter.pod
+
+Paul Marquess E<lt>[email protected]<gt>
+
+=head1 Copyrights
+
+This article originally appeared in The Perl Journal #11, and is
+copyright 1998 The Perl Journal. It appears courtesy of Jon Orwant and
+The Perl Journal. This document may be distributed under the same terms
+as Perl itself.
+--------------------
+pod/perlmodinstall.pod
+
+Copyright (C) 1998, 2002, 2003 Jon Orwant.  All Rights Reserved.
+
+This document may be distributed under the same terms as Perl itself.
+--------------------
+pod/perlopentut.pod
+
+Copyright 2013 Tom Christiansen.
+
+This documentation is free; you can redistribute it and/or modify it under
+the same terms as Perl itself.
+--------------------
+pod/perlperf.pod
+
+Richard Foley <[email protected]> Copyright (c) 2008
+--------------------
+pod/perlreapi.pod
+
+Copyright 2006 Yves Orton and 2007 E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason.
+
+This program is free software; you can redistribute it and/or modify it under
+the same terms as Perl itself.
+--------------------
+pod/perlreftut.pod
+
+Copyright 1998 The Perl Journal.
+
+This documentation is free; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Irrespective of its distribution, all code examples in these files are
+hereby placed into the public domain. You are permitted and
+encouraged to use this code in your own programs for fun or for profit
+as you see fit. A simple comment in the code giving credit would be
+courteous but is not required.
+--------------------
+pod/perlrequick.pod
+
+Copyright (c) 2000 Mark Kvale
+All rights reserved.
+
+This document may be distributed under the same terms as Perl itself.
+--------------------
+pod/perlthrtut.pod
+
+The original version of this article originally appeared in The Perl
+Journal #10, and is copyright 1998 The Perl Journal. It appears courtesy
+of Jon Orwant and The Perl Journal. This document may be distributed
+under the same terms as Perl itself.
+--------------------
+pod/perluniintro.pod
+
+Copyright 2001-2011 Jarkko Hietaniemi E<lt>[email protected]<gt>.
+Now maintained by Perl 5 Porters.
+
+This document may be distributed under the same terms as Perl itself.
+--------------------
+cpan/Locale-Codes/lib/Locale/Country.pod
+
+   Copyright (c) 1997-2001 Canon Research Centre Europe (CRE).
+   Copyright (c) 2001-2010 Neil Bowers
+   Copyright (c) 2010-2015 Sullivan Beck
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Locale-Codes/lib/Locale/Currency.pod
+
+   Copyright (c) 1997-2001 Canon Research Centre Europe (CRE).
+   Copyright (c) 2001      Michael Hennecke
+   Copyright (c) 2001-2010 Neil Bowers
+   Copyright (c) 2010-2015 Sullivan Beck
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Locale-Codes/lib/Locale/Language.pod
+
+   Copyright (c) 1997-2001 Canon Research Centre Europe (CRE).
+   Copyright (c) 2001-2010 Neil Bowers
+   Copyright (c) 2010-2015 Sullivan Beck
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Locale-Codes/lib/Locale/Script.pod
+
+   Copyright (c) 1997-2001 Canon Research Centre Europe (CRE).
+   Copyright (c) 2001-2010 Neil Bowers
+   Copyright (c) 2010-2015 Sullivan Beck
+
+This module is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple.pod
+
+Copyright (c) 2002 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/Test-Simple/lib/Test/Tutorial.pod
+
+Copyright 2001 by Michael G Schwern E<lt>[email protected]<gt>.
+
+This documentation is free; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Irrespective of its distribution, all code examples in these files
+are hereby placed into the public domain. You are permitted and
+encouraged to use this code in your own programs for fun
+or for profit as you see fit. A simple comment in the code giving
+credit would be courteous but is not required.
+--------------------
+dist/Locale-Maketext/lib/Locale/Maketext.pod
+
+Copyright (c) 1999-2004 Sean M. Burke. All rights reserved.
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+cpan/Pod-Simple/lib/Pod/Simple/Subclassing.pod
+
+Copyright (c) 2002 Sean M. Burke.
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+This program is distributed in the hope that it will be useful, but
+without any warranty; without even the implied warranty of
+merchantability or fitness for a particular purpose.
+--------------------
+dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod
+
+The following article by Sean M. Burke and Jordan Lachler
+first appeared in I<The Perl Journal> #13
+and is copyright 1999 The Perl Journal. It appears
+courtesy of Jon Orwant and The Perl Journal.  This document may be
+distributed under the same terms as Perl itself.
+--------------------
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/test/results-i386.master	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,2401 @@
+t/base/cond ................................................... ok
+t/base/if ..................................................... ok
+t/base/lex .................................................... ok
+t/base/num .................................................... ok
+t/base/pat .................................................... ok
+t/base/rs ..................................................... ok
+t/base/term ................................................... ok
+t/base/translate .............................................. ok
+t/base/while .................................................. ok
+t/comp/bproto ................................................. ok
+t/comp/cmdopt ................................................. ok
+t/comp/colon .................................................. ok
+t/comp/decl ................................................... ok
+t/comp/final_line_num ......................................... ok
+t/comp/fold ................................................... ok
+t/comp/form_scope ............................................. ok
+t/comp/hints .................................................. ok
+t/comp/line_debug ............................................. ok
+t/comp/multiline .............................................. ok
+t/comp/opsubs ................................................. ok
+t/comp/our .................................................... ok
+t/comp/package ................................................ ok
+t/comp/package_block .......................................... ok
+t/comp/parser ................................................. ok
+t/comp/proto .................................................. ok
+t/comp/redef .................................................. ok
+t/comp/require ................................................ ok
+t/comp/retainedlines .......................................... ok
+t/comp/term ................................................... ok
+t/comp/uproto ................................................. ok
+t/comp/use .................................................... ok
+t/comp/utf .................................................... ok
+t/run/cloexec ................................................. ok
+t/run/dtrace .................................................. skipped
+t/run/exit .................................................... ok
+t/run/fresh_perl .............................................. ok
+t/run/locale .................................................. ok
+t/run/noswitch ................................................ ok
+t/run/runenv .................................................. ok
+t/run/script .................................................. ok
+t/run/switch0 ................................................. ok
+t/run/switchC ................................................. ok
+t/run/switchF ................................................. ok
+t/run/switchF1 ................................................ ok
+t/run/switchF2 ................................................ ok
+t/run/switchI ................................................. ok
+t/run/switchM ................................................. ok
+t/run/switcha ................................................. ok
+t/run/switchd-78586 ........................................... ok
+t/run/switchd ................................................. ok
+t/run/switches ................................................ ok
+t/run/switchn ................................................. ok
+t/run/switchp ................................................. ok
+t/run/switcht ................................................. ok
+t/run/switchx ................................................. ok
+t/cmd/elsif ................................................... ok
+t/cmd/for ..................................................... ok
+t/cmd/mod ..................................................... ok
+t/cmd/subval .................................................. ok
+t/cmd/switch .................................................. ok
+t/io/argv ..................................................... ok
+t/io/binmode .................................................. ok
+t/io/bom ...................................................... ok
+t/io/closepid ................................................. ok
+t/io/crlf ..................................................... ok
+t/io/crlf_through ............................................. ok
+t/io/data ..................................................... ok
+t/io/defout ................................................... ok
+t/io/dup ...................................................... ok
+t/io/eintr .................................................... skipped
+t/io/eintr_print .............................................. skipped
+t/io/errno .................................................... ok
+t/io/errnosig ................................................. ok
+t/io/fflush ................................................... ok
+t/io/fs ....................................................... ok
+t/io/inplace .................................................. ok
+t/io/iofile ................................................... ok
+t/io/iprefix .................................................. ok
+t/io/layers ................................................... ok
+t/io/nargv .................................................... ok
+t/io/open ..................................................... ok
+t/io/openpid .................................................. ok
+t/io/perlio ................................................... ok
+t/io/perlio_fail .............................................. ok
+t/io/perlio_leaks ............................................. ok
+t/io/perlio_open .............................................. ok
+t/io/pipe ..................................................... ok
+t/io/print .................................................... ok
+t/io/pvbm ..................................................... ok
+t/io/read ..................................................... ok
+t/io/say ...................................................... ok
+t/io/sem ...................................................... ok
+t/io/semctl ................................................... ok
+t/io/shm ...................................................... ok
+t/io/socket ................................................... ok
+t/io/tell ..................................................... ok
+t/io/through .................................................. ok
+t/io/utf8 ..................................................... ok
+t/re/charset .................................................. ok
+t/re/fold_grind ............................................... ok
+t/re/no_utf8_pm ............................................... ok
+t/re/overload ................................................. ok
+t/re/pat ...................................................... ok
+t/re/pat_advanced ............................................. ok
+t/re/pat_advanced_thr ......................................... ok
+t/re/pat_psycho ............................................... ok
+t/re/pat_psycho_thr ........................................... ok
+t/re/pat_re_eval .............................................. ok
+t/re/pat_re_eval_thr .......................................... ok
+t/re/pat_rt_report ............................................ ok
+t/re/pat_rt_report_thr ........................................ ok
+t/re/pat_special_cc ........................................... ok
+t/re/pat_special_cc_thr ....................................... ok
+t/re/pat_thr .................................................. ok
+t/re/pos ...................................................... ok
+t/re/qr-72922 ................................................. ok
+t/re/qr ....................................................... ok
+t/re/qr_gc .................................................... ok
+t/re/qrstack .................................................. ok
+t/re/recompile ................................................ ok
+t/re/reg_60508 ................................................ ok
+t/re/reg_email ................................................ ok
+t/re/reg_email_thr ............................................ ok
+t/re/reg_eval ................................................. ok
+t/re/reg_eval_scope ........................................... ok
+t/re/reg_fold ................................................. ok
+t/re/reg_mesg ................................................. ok
+t/re/reg_namedcapture ......................................... ok
+t/re/reg_nc_tie ............................................... ok
+t/re/reg_nocapture ............................................ ok
+t/re/reg_pmod ................................................. ok
+t/re/reg_posixcc .............................................. ok
+t/re/regex_sets ............................................... ok
+t/re/regex_sets_compat ........................................ ok
+t/re/regexp ................................................... ok
+t/re/regexp_noamp ............................................. ok
+t/re/regexp_notrie ............................................ ok
+t/re/regexp_qr ................................................ ok
+t/re/regexp_qr_embed .......................................... ok
+t/re/regexp_qr_embed_thr ...................................... ok
+t/re/regexp_trielist .......................................... ok
+t/re/regexp_unicode_prop ...................................... ok
+t/re/regexp_unicode_prop_thr .................................. ok
+t/re/rt122747 ................................................. ok
+t/re/rxcode ................................................... ok
+t/re/speed .................................................... ok
+t/re/speed_thr ................................................ ok
+t/re/subst .................................................... ok
+t/re/substT ................................................... ok
+t/re/subst_amp ................................................ ok
+t/re/subst_wamp ............................................... ok
+t/re/uniprops ................................................. ok
+t/opbasic/arith ............................................... ok
+t/opbasic/cmp ................................................. ok
+t/opbasic/concat .............................................. ok
+t/opbasic/magic_phase ......................................... ok
+t/opbasic/qq .................................................. ok
+t/op/64bitint ................................................. ok
+t/op/alarm .................................................... ok
+t/op/anonconst ................................................ ok
+t/op/anonsub .................................................. ok
+t/op/append ................................................... ok
+t/op/args ..................................................... ok
+t/op/array .................................................... ok
+t/op/array_base ............................................... ok
+t/op/assignwarn ............................................... ok
+t/op/attrhand ................................................. ok
+t/op/attrproto ................................................ ok
+t/op/attrs .................................................... ok
+t/op/auto ..................................................... ok
+t/op/avhv ..................................................... ok
+t/op/bless .................................................... ok
+t/op/blocks ................................................... ok
+t/op/bop ...................................................... ok
+t/op/caller ................................................... ok
+t/op/chars .................................................... ok
+t/op/chdir .................................................... ok
+t/op/chop ..................................................... ok
+t/op/chr ...................................................... ok
+t/op/closure .................................................. ok
+t/op/concat2 .................................................. ok
+t/op/cond ..................................................... ok
+t/op/const-optree ............................................. ok
+t/op/context .................................................. ok
+t/op/coreamp .................................................. ok
+t/op/coresubs ................................................. ok
+t/op/cproto ................................................... ok
+t/op/crypt .................................................... ok
+t/op/current_sub .............................................. ok
+t/op/dbm ...................................................... ok
+t/op/defined .................................................. ok
+t/op/defins ................................................... ok
+t/op/delete ................................................... ok
+t/op/die ...................................................... ok
+t/op/die_except ............................................... ok
+t/op/die_exit ................................................. ok
+t/op/die_keeperr .............................................. ok
+t/op/die_unwind ............................................... ok
+t/op/do ....................................................... ok
+t/op/dor ...................................................... ok
+t/op/dump ..................................................... skipped
+t/op/each ..................................................... ok
+t/op/each_array ............................................... ok
+t/op/eval ..................................................... ok
+t/op/evalbytes ................................................ ok
+t/op/exec ..................................................... ok
+t/op/exists_sub ............................................... ok
+t/op/exp ...................................................... ok
+t/op/fh ....................................................... ok
+t/op/filehandle ............................................... ok
+t/op/filetest ................................................. ok
+t/op/filetest_stack_ok ........................................ ok
+t/op/filetest_t ............................................... ok
+t/op/flip ..................................................... ok
+t/op/for ...................................................... ok
+t/op/fork ..................................................... ok
+t/op/fresh_perl_utf8 .......................................... ok
+t/op/getpid ................................................... ok
+t/op/getppid .................................................. ok
+t/op/glob ..................................................... ok
+t/op/gmagic ................................................... ok
+t/op/goto ..................................................... ok
+t/op/goto_xs .................................................. ok
+t/op/grent .................................................... ok
+t/op/grep ..................................................... ok
+t/op/groups ................................................... ok
+t/op/gv ....................................................... ok
+t/op/hash-rt85026 ............................................. ok
+t/op/hash ..................................................... ok
+t/op/hashassign ............................................... ok
+t/op/hashwarn ................................................. ok
+t/op/heredoc .................................................. ok
+t/op/hexfp .................................................... ok
+t/op/inc ...................................................... ok
+t/op/inccode-tie .............................................. ok
+t/op/inccode .................................................. ok
+t/op/incfilter ................................................ ok
+t/op/index .................................................... ok
+t/op/index_thr ................................................ ok
+t/op/infnan ................................................... ok
+t/op/int ...................................................... ok
+t/op/join ..................................................... ok
+t/op/kill0 .................................................... ok
+t/op/kvaslice ................................................. ok
+t/op/kvhslice ................................................. ok
+t/op/lc ....................................................... ok
+t/op/leaky-magic .............................................. ok
+t/op/length ................................................... ok
+t/op/lex ...................................................... ok
+t/op/lex_assign ............................................... ok
+t/op/lexsub ................................................... ok
+t/op/lfs ...................................................... ok
+t/op/list ..................................................... ok
+t/op/local .................................................... ok
+t/op/localref ................................................. ok
+t/op/lock ..................................................... ok
+t/op/loopctl .................................................. ok
+t/op/lop ...................................................... ok
+t/op/lvref .................................................... ok
+t/op/magic-27839 .............................................. ok
+t/op/magic .................................................... ok
+t/op/method ................................................... ok
+t/op/mkdir .................................................... ok
+t/op/multideref ............................................... ok
+t/op/my ....................................................... ok
+t/op/my_stash ................................................. ok
+t/op/mydef .................................................... ok
+t/op/negate ................................................... ok
+t/op/not ...................................................... ok
+t/op/numconvert ............................................... ok
+t/op/oct ...................................................... ok
+t/op/or ....................................................... ok
+t/op/ord ...................................................... ok
+t/op/overload_integer ......................................... ok
+t/op/override ................................................. ok
+t/op/pack ..................................................... ok
+t/op/packagev ................................................. ok
+t/op/pos ...................................................... ok
+t/op/postfixderef ............................................. ok
+t/op/pow ...................................................... ok
+t/op/print .................................................... ok
+t/op/protowarn ................................................ ok
+t/op/push ..................................................... ok
+t/op/pwent .................................................... ok
+t/op/qr ....................................................... ok
+t/op/quotemeta ................................................ ok
+t/op/rand ..................................................... ok
+t/op/range .................................................... ok
+t/op/read ..................................................... ok
+t/op/readdir .................................................. ok
+t/op/readline ................................................. ok
+t/op/recurse .................................................. ok
+t/op/ref ...................................................... ok
+t/op/repeat ................................................... ok
+t/op/require_37033 ............................................ ok
+t/op/require_errors ........................................... ok
+t/op/require_override ......................................... ok
+t/op/reset .................................................... ok
+t/op/reverse .................................................. ok
+t/op/rt119311 ................................................. ok
+t/op/runlevel ................................................. ok
+t/op/select ................................................... ok
+t/op/setpgrpstack ............................................. ok
+t/op/sigdispatch .............................................. ok
+t/op/signatures ............................................... ok
+t/op/sigsystem ................................................ ok
+t/op/sleep .................................................... ok
+t/op/smartkve ................................................. ok
+t/op/smartmatch ............................................... ok
+t/op/sort ..................................................... ok
+t/op/splice ................................................... ok
+t/op/split .................................................... ok
+t/op/split_unicode ............................................ ok
+t/op/sprintf .................................................. ok
+t/op/sprintf2 ................................................. ok
+t/op/srand .................................................... ok
+t/op/sselect .................................................. ok
+t/op/stash .................................................... ok
+t/op/stat ..................................................... ok
+t/op/state .................................................... ok
+t/op/study .................................................... ok
+t/op/studytied ................................................ ok
+t/op/sub ...................................................... ok
+t/op/sub_lval ................................................. ok
+t/op/substr ................................................... ok
+t/op/substr_thr ............................................... ok
+t/op/svleak ................................................... ok
+t/op/switch ................................................... ok
+t/op/symbolcache .............................................. ok
+t/op/sysio .................................................... ok
+t/op/taint .................................................... ok
+t/op/threads-dirh ............................................. ok
+t/op/threads .................................................. ok
+t/op/tie ...................................................... ok
+t/op/tie_fetch_count .......................................... ok
+t/op/tiearray ................................................. ok
+t/op/tiehandle ................................................ ok
+t/op/time ..................................................... ok
+t/op/time_loop ................................................ ok
+t/op/tr ....................................................... ok
+t/op/undef .................................................... ok
+t/op/universal ................................................ ok
+t/op/unlink ................................................... ok
+t/op/unshift .................................................. ok
+t/op/upgrade .................................................. ok
+t/op/utf8cache ................................................ ok
+t/op/utf8decode ............................................... ok
+t/op/utf8magic ................................................ ok
+t/op/utfhash .................................................. ok
+t/op/utftaint ................................................. ok
+t/op/vec ...................................................... ok
+t/op/ver ...................................................... ok
+t/op/waitpid .................................................. ok
+t/op/wantarray ................................................ ok
+t/op/warn ..................................................... ok
+t/op/while .................................................... ok
+t/op/write .................................................... ok
+t/op/yadayada ................................................. ok
+t/uni/attrs ................................................... ok
+t/uni/bless ................................................... ok
+t/uni/cache ................................................... ok
+t/uni/caller .................................................. ok
+t/uni/chomp ................................................... ok
+t/uni/chr ..................................................... ok
+t/uni/class ................................................... ok
+t/uni/eval .................................................... ok
+t/uni/fold .................................................... ok
+t/uni/goto .................................................... ok
+t/uni/greek ................................................... ok
+t/uni/gv ...................................................... ok
+t/uni/labels .................................................. ok
+t/uni/latin2 .................................................. ok
+t/uni/lex_utf8 ................................................ ok
+t/uni/lower ................................................... ok
+t/uni/method .................................................. ok
+t/uni/opcroak ................................................. ok
+t/uni/overload ................................................ ok
+t/uni/package ................................................. ok
+t/uni/parser .................................................. ok
+t/uni/readline ................................................ ok
+t/uni/select .................................................. ok
+t/uni/sprintf ................................................. ok
+t/uni/stash ................................................... ok
+t/uni/tie ..................................................... ok
+t/uni/title ................................................... ok
+t/uni/tr_7jis ................................................. ok
+t/uni/tr_eucjp ................................................ ok
+t/uni/tr_sjis ................................................. ok
+t/uni/tr_utf8 ................................................. ok
+t/uni/universal ............................................... ok
+t/uni/upper ................................................... ok
+t/uni/variables ............................................... ok
+t/uni/write ................................................... ok
+t/mro/basic ................................................... ok
+t/mro/basic_01_c3 ............................................. ok
+t/mro/basic_01_c3_utf8 ........................................ ok
+t/mro/basic_01_dfs ............................................ ok
+t/mro/basic_01_dfs_utf8 ....................................... ok
+t/mro/basic_02_c3 ............................................. ok
+t/mro/basic_02_c3_utf8 ........................................ ok
+t/mro/basic_02_dfs ............................................ ok
+t/mro/basic_02_dfs_utf8 ....................................... ok
+t/mro/basic_03_c3 ............................................. ok
+t/mro/basic_03_c3_utf8 ........................................ ok
+t/mro/basic_03_dfs ............................................ ok
+t/mro/basic_03_dfs_utf8 ....................................... ok
+t/mro/basic_04_c3 ............................................. ok
+t/mro/basic_04_c3_utf8 ........................................ ok
+t/mro/basic_04_dfs ............................................ ok
+t/mro/basic_04_dfs_utf8 ....................................... ok
+t/mro/basic_05_c3 ............................................. ok
+t/mro/basic_05_c3_utf8 ........................................ ok
+t/mro/basic_05_dfs ............................................ ok
+t/mro/basic_05_dfs_utf8 ....................................... ok
+t/mro/basic_utf8 .............................................. ok
+t/mro/c3_with_overload ........................................ ok
+t/mro/c3_with_overload_utf8 ................................... ok
+t/mro/complex_c3 .............................................. ok
+t/mro/complex_c3_utf8 ......................................... ok
+t/mro/complex_dfs ............................................. ok
+t/mro/complex_dfs_utf8 ........................................ ok
+t/mro/dbic_c3 ................................................. ok
+t/mro/dbic_c3_utf8 ............................................ ok
+t/mro/dbic_dfs ................................................ ok
+t/mro/dbic_dfs_utf8 ........................................... ok
+t/mro/inconsistent_c3 ......................................... ok
+t/mro/inconsistent_c3_utf8 .................................... ok
+t/mro/isa_aliases ............................................. ok
+t/mro/isa_aliases_utf8 ........................................ ok
+t/mro/isa_c3 .................................................. ok
+t/mro/isa_c3_utf8 ............................................. ok
+t/mro/isa_dfs ................................................. ok
+t/mro/isa_dfs_utf8 ............................................ ok
+t/mro/isarev .................................................. ok
+t/mro/isarev_utf8 ............................................. ok
+t/mro/method_caching .......................................... ok
+t/mro/method_caching_utf8 ..................................... ok
+t/mro/next_NEXT ............................................... ok
+t/mro/next_NEXT_utf8 .......................................... ok
+t/mro/next_edgecases .......................................... ok
+t/mro/next_edgecases_utf8 ..................................... ok
+t/mro/next_goto ............................................... ok
+t/mro/next_goto_utf8 .......................................... ok
+t/mro/next_inanon ............................................. ok
+t/mro/next_inanon_utf8 ........................................ ok
+t/mro/next_ineval ............................................. ok
+t/mro/next_ineval_utf8 ........................................ ok
+t/mro/next_method ............................................. ok
+t/mro/next_method_utf8 ........................................ ok
+t/mro/next_skip ............................................... ok
+t/mro/next_skip_utf8 .......................................... ok
+t/mro/overload_c3 ............................................. ok
+t/mro/overload_c3_utf8 ........................................ ok
+t/mro/overload_dfs ............................................ ok
+t/mro/package_aliases ......................................... ok
+t/mro/package_aliases_utf8 .................................... ok
+t/mro/pkg_gen ................................................. ok
+t/mro/pkg_gen_utf8 ............................................ ok
+t/mro/recursion_c3 ............................................ ok
+t/mro/recursion_c3_utf8 ....................................... ok
+t/mro/recursion_dfs ........................................... ok
+t/mro/recursion_dfs_utf8 ...................................... ok
+t/mro/vulcan_c3 ............................................... ok
+t/mro/vulcan_c3_utf8 .......................................... ok
+t/mro/vulcan_dfs .............................................. ok
+t/mro/vulcan_dfs_utf8 ......................................... ok
+t/perf/benchmarks ............................................. ok
+t/perf/opcount ................................................ ok
+t/perf/optree ................................................. ok
+t/perf/speed .................................................. ok
+t/perf/taint .................................................. ok
+t/porting/FindExt ............................................. ok
+t/porting/args_assert ......................................... ok
+t/porting/authors ............................................. skipped
+t/porting/bench ............................................... skipped
+t/porting/bincompat ........................................... ok
+t/porting/checkcase ........................................... ok
+t/porting/checkcfgvar ......................................... ok
+t/porting/cmp_version ......................................... skipped
+t/porting/copyright ........................................... ok
+t/porting/corelist ............................................ ok
+t/porting/customized .......................................... ok
+t/porting/diag ................................................ ok
+t/porting/dual-life ........................................... ok
+t/porting/exec-bit ............................................ ok
+t/porting/extrefs ............................................. ok
+t/porting/filenames ........................................... ok
+t/porting/globvar ............................................. skipped
+t/porting/libperl ............................................. skipped
+t/porting/maintainers ......................................... ok
+t/porting/manifest ............................................ ok
+t/porting/pending-author ...................................... skipped
+t/porting/perlfunc ............................................ ok
+t/porting/pod_rules ........................................... ok
+t/porting/podcheck ............................................ ok
+t/porting/re_context .......................................... ok
+t/porting/readme .............................................. ok
+t/porting/regen ............................................... ok
+t/porting/ss_dup .............................................. ok
+t/porting/test_bootstrap ...................................... ok
+t/porting/utils ............................................... skipped
+t/lib/commonsense ............................................. ok
+t/lib/croak ................................................... ok
+t/lib/cygwin .................................................. skipped
+t/lib/deprecate ............................................... ok
+t/lib/mypragma ................................................ ok
+t/lib/no_load ................................................. ok
+t/lib/overload_fallback ....................................... ok
+t/lib/overload_nomethod ....................................... ok
+t/lib/proxy_constant_subs ..................................... ok
+t/lib/universal ............................................... ok
+cpan/Archive-Tar/t/01_use ..................................... ok
+cpan/Archive-Tar/t/02_methods ................................. ok
+cpan/Archive-Tar/t/03_file .................................... ok
+cpan/Archive-Tar/t/04_resolved_issues ......................... ok
+cpan/Archive-Tar/t/05_iter .................................... ok
+cpan/Archive-Tar/t/06_error ................................... ok
+cpan/Archive-Tar/t/08_ptargrep ................................ ok
+cpan/Archive-Tar/t/90_symlink ................................. skipped
+cpan/Archive-Tar/t/99_pod ..................................... skipped
+cpan/autodie/t/00-load ........................................ ok
+cpan/autodie/t/args ........................................... ok
+cpan/autodie/t/autodie ........................................ ok
+cpan/autodie/t/backcompat ..................................... ok
+cpan/autodie/t/basic_exceptions ............................... ok
+cpan/autodie/t/binmode ........................................ ok
+cpan/autodie/t/blog_hints ..................................... ok
+cpan/autodie/t/caller ......................................... ok
+cpan/autodie/t/chmod .......................................... ok
+cpan/autodie/t/chown .......................................... ok
+cpan/autodie/t/context_lexical ................................ ok
+cpan/autodie/t/context ........................................ ok
+cpan/autodie/t/core-trampoline-slurp .......................... ok
+cpan/autodie/t/crickey ........................................ ok
+cpan/autodie/t/dbmopen ........................................ ok
+cpan/autodie/t/eval_error ..................................... ok
+cpan/autodie/t/exception_class ................................ ok
+cpan/autodie/t/exceptions ..................................... ok
+cpan/autodie/t/exec ........................................... ok
+cpan/autodie/t/Fatal .......................................... ok
+cpan/autodie/t/filehandles .................................... ok
+cpan/autodie/t/fileno ......................................... ok
+cpan/autodie/t/flock .......................................... skipped
+cpan/autodie/t/format-clobber ................................. ok
+cpan/autodie/t/hints_insist ................................... ok
+cpan/autodie/t/hints_pod_examples ............................. ok
+cpan/autodie/t/hints_provider_does ............................ ok
+cpan/autodie/t/hints_provider_easy_does_it .................... ok
+cpan/autodie/t/hints_provider_isa ............................. ok
+cpan/autodie/t/hints .......................................... ok
+cpan/autodie/t/import-into .................................... skipped
+cpan/autodie/t/internal-backcompat ............................ ok
+cpan/autodie/t/internal ....................................... ok
+cpan/autodie/t/kill ........................................... ok
+cpan/autodie/t/lethal ......................................... ok
+cpan/autodie/t/mkdir .......................................... ok
+cpan/autodie/t/no_carp ........................................ ok
+cpan/autodie/t/open ........................................... ok
+cpan/autodie/t/read ........................................... ok
+cpan/autodie/t/recv ........................................... ok
+cpan/autodie/t/repeat ......................................... ok
+cpan/autodie/t/rt-74246 ....................................... ok
+cpan/autodie/t/scope_leak ..................................... ok
+cpan/autodie/t/skip ........................................... ok
+cpan/autodie/t/string-eval-basic .............................. ok
+cpan/autodie/t/string-eval-leak ............................... ok
+cpan/autodie/t/sysopen ........................................ ok
+cpan/autodie/t/truncate ....................................... ok
+cpan/autodie/t/unlink ......................................... ok
+cpan/autodie/t/user-context ................................... ok
+cpan/autodie/t/usersub ........................................ ok
+cpan/autodie/t/utf8_open ...................................... ok
+cpan/autodie/t/utime .......................................... ok
+cpan/autodie/t/version ........................................ skipped
+cpan/autodie/t/version_tag .................................... ok
+cpan/AutoLoader/t/01AutoLoader ................................ ok
+cpan/AutoLoader/t/02AutoSplit ................................. ok
+cpan/B-Debug/t/debug .......................................... ok
+cpan/Compress-Raw-Bzip2/t/000prereq ........................... ok
+cpan/Compress-Raw-Bzip2/t/01bzip2 ............................. ok
+cpan/Compress-Raw-Bzip2/t/09limitoutput ....................... ok
+cpan/Compress-Raw-Bzip2/t/19nonpv ............................. ok
+cpan/Compress-Raw-Bzip2/t/99pod ............................... skipped
+cpan/Compress-Raw-Zlib/t/01version ............................ ok
+cpan/Compress-Raw-Zlib/t/02zlib ............................... ok
+cpan/Compress-Raw-Zlib/t/07bufsize ............................ skipped
+cpan/Compress-Raw-Zlib/t/09limitoutput ........................ ok
+cpan/Compress-Raw-Zlib/t/18lvalue ............................. ok
+cpan/Compress-Raw-Zlib/t/19nonpv .............................. ok
+cpan/Config-Perl-V/t/10_base .................................. ok
+cpan/Config-Perl-V/t/20_plv56 ................................. ok
+cpan/Config-Perl-V/t/21_plv58 ................................. ok
+cpan/Config-Perl-V/t/22_plv510 ................................ ok
+cpan/Config-Perl-V/t/23_plv512 ................................ ok
+cpan/Config-Perl-V/t/24_plv514 ................................ ok
+cpan/Config-Perl-V/t/25_plv5162 ............................... ok
+cpan/Config-Perl-V/t/25_plv516 ................................ ok
+cpan/Config-Perl-V/t/26_plv5182 ............................... ok
+cpan/Config-Perl-V/t/26_plv518 ................................ ok
+cpan/Config-Perl-V/t/27_plv5200 ............................... ok
+cpan/CPAN-Meta-Requirements/t/accepts ......................... ok
+cpan/CPAN-Meta-Requirements/t/bad_version_hook ................ ok
+cpan/CPAN-Meta-Requirements/t/basic ........................... ok
+cpan/CPAN-Meta-Requirements/t/finalize ........................ ok
+cpan/CPAN-Meta-Requirements/t/from-hash ....................... ok
+cpan/CPAN-Meta-Requirements/t/merge ........................... ok
+cpan/CPAN-Meta-Requirements/t/strings ......................... ok
+cpan/CPAN-Meta/t/converter-bad ................................ ok
+cpan/CPAN-Meta/t/converter-fail ............................... ok
+cpan/CPAN-Meta/t/converter-fragments .......................... ok
+cpan/CPAN-Meta/t/converter .................................... ok
+cpan/CPAN-Meta/t/load-bad ..................................... ok
+cpan/CPAN-Meta/t/merge ........................................ ok
+cpan/CPAN-Meta/t/meta-obj ..................................... ok
+cpan/CPAN-Meta/t/no-index ..................................... ok
+cpan/CPAN-Meta/t/optional_feature-merge ....................... ok
+cpan/CPAN-Meta/t/prereqs-finalize ............................. ok
+cpan/CPAN-Meta/t/prereqs-merge ................................ ok
+cpan/CPAN-Meta/t/prereqs ...................................... ok
+cpan/CPAN-Meta/t/repository ................................... ok
+cpan/CPAN-Meta/t/save-load .................................... ok
+cpan/CPAN-Meta/t/validator .................................... ok
+cpan/CPAN-Meta-YAML/t/01_api .................................. ok
+cpan/CPAN-Meta-YAML/t/01_compile .............................. ok
+cpan/CPAN-Meta-YAML/t/10_read ................................. ok
+cpan/CPAN-Meta-YAML/t/11_read_string .......................... ok
+cpan/CPAN-Meta-YAML/t/12_write ................................ ok
+cpan/CPAN-Meta-YAML/t/13_write_string ......................... ok
+cpan/CPAN-Meta-YAML/t/20_subclass ............................. ok
+cpan/CPAN-Meta-YAML/t/21_yamlpm_compat ........................ ok
+cpan/CPAN-Meta-YAML/t/30_yaml_spec_tml ........................ ok
+cpan/CPAN-Meta-YAML/t/31_local_tml ............................ ok
+cpan/CPAN-Meta-YAML/t/32_world_tml ............................ ok
+cpan/CPAN/t/01loadme .......................................... ok
+cpan/CPAN/t/02nox ............................................. ok
+cpan/CPAN/t/03pkgs ............................................ ok
+cpan/CPAN/t/10version ......................................... ok
+cpan/CPAN/t/11mirroredby ...................................... ok
+cpan/DB_File/t/db-btree ....................................... ok
+cpan/DB_File/t/db-hash ........................................ ok
+cpan/DB_File/t/db-recno ....................................... ok
+cpan/Devel-PPPort/t/call ...................................... ok
+cpan/Devel-PPPort/t/cop ....................................... ok
+cpan/Devel-PPPort/t/exception ................................. ok
+cpan/Devel-PPPort/t/format .................................... ok
+cpan/Devel-PPPort/t/grok ...................................... ok
+cpan/Devel-PPPort/t/gv ........................................ ok
+cpan/Devel-PPPort/t/HvNAME .................................... ok
+cpan/Devel-PPPort/t/limits .................................... ok
+cpan/Devel-PPPort/t/magic ..................................... ok
+cpan/Devel-PPPort/t/memory .................................... ok
+cpan/Devel-PPPort/t/misc ...................................... ok
+cpan/Devel-PPPort/t/mPUSH ..................................... ok
+cpan/Devel-PPPort/t/MY_CXT .................................... ok
+cpan/Devel-PPPort/t/newCONSTSUB ............................... ok
+cpan/Devel-PPPort/t/newRV ..................................... ok
+cpan/Devel-PPPort/t/newSVpv ................................... ok
+cpan/Devel-PPPort/t/newSV_type ................................ ok
+cpan/Devel-PPPort/t/podtest ................................... ok
+cpan/Devel-PPPort/t/ppphtest .................................. ok
+cpan/Devel-PPPort/t/pvs ....................................... ok
+cpan/Devel-PPPort/t/pv_tools .................................. ok
+cpan/Devel-PPPort/t/shared_pv ................................. ok
+cpan/Devel-PPPort/t/snprintf .................................. ok
+cpan/Devel-PPPort/t/sprintf ................................... ok
+cpan/Devel-PPPort/t/strlfuncs ................................. ok
+cpan/Devel-PPPort/t/SvPV ...................................... ok
+cpan/Devel-PPPort/t/SvREFCNT .................................. ok
+cpan/Devel-PPPort/t/Sv_set .................................... ok
+cpan/Devel-PPPort/t/sv_xpvf ................................... ok
+cpan/Devel-PPPort/t/threads ................................... ok
+cpan/Devel-PPPort/t/uv ........................................ ok
+cpan/Devel-PPPort/t/variables ................................. ok
+cpan/Devel-PPPort/t/warn ...................................... ok
+cpan/Digest-MD5/t/align ....................................... ok
+cpan/Digest-MD5/t/badfile ..................................... ok
+cpan/Digest-MD5/t/bits ........................................ ok
+cpan/Digest-MD5/t/clone ....................................... ok
+cpan/Digest-MD5/t/files ....................................... ok
+cpan/Digest-MD5/t/md5-aaa ..................................... ok
+cpan/Digest-MD5/t/threads ..................................... ok
+cpan/Digest-MD5/t/utf8 ........................................ ok
+cpan/Digest-SHA/t/allfcns ..................................... ok
+cpan/Digest-SHA/t/base64 ...................................... ok
+cpan/Digest-SHA/t/bitbuf ...................................... ok
+cpan/Digest-SHA/t/bitorder .................................... ok
+cpan/Digest-SHA/t/fips180-4 ................................... ok
+cpan/Digest-SHA/t/fips198 ..................................... ok
+cpan/Digest-SHA/t/gglong ...................................... ok
+cpan/Digest-SHA/t/gg .......................................... ok
+cpan/Digest-SHA/t/hmacsha ..................................... ok
+cpan/Digest-SHA/t/inheritance ................................. ok
+cpan/Digest-SHA/t/ireland ..................................... ok
+cpan/Digest-SHA/t/methods ..................................... ok
+cpan/Digest-SHA/t/nistbit ..................................... ok
+cpan/Digest-SHA/t/nistbyte .................................... ok
+cpan/Digest-SHA/t/rfc2202 ..................................... ok
+cpan/Digest-SHA/t/sha1 ........................................ ok
+cpan/Digest-SHA/t/sha224 ...................................... ok
+cpan/Digest-SHA/t/sha256 ...................................... ok
+cpan/Digest-SHA/t/sha384 ...................................... ok
+cpan/Digest-SHA/t/sha512 ...................................... ok
+cpan/Digest-SHA/t/state ....................................... ok
+cpan/Digest-SHA/t/unicode ..................................... ok
+cpan/Digest-SHA/t/woodbury .................................... ok
+cpan/Digest/t/base ............................................ ok
+cpan/Digest/t/digest .......................................... ok
+cpan/Digest/t/file ............................................ ok
+cpan/Digest/t/security ........................................ ok
+cpan/Encode/t/Aliases ......................................... ok
+cpan/Encode/t/at-cn ........................................... ok
+cpan/Encode/t/at-tw ........................................... ok
+cpan/Encode/t/CJKT ............................................ ok
+cpan/Encode/t/cow ............................................. ok
+cpan/Encode/t/decode .......................................... ok
+cpan/Encode/t/enc_data ........................................ ok
+cpan/Encode/t/enc_eucjp ....................................... ok
+cpan/Encode/t/enc_module ...................................... ok
+cpan/Encode/t/Encoder ......................................... ok
+cpan/Encode/t/Encode .......................................... ok
+cpan/Encode/t/encoding ........................................ ok
+cpan/Encode/t/enc_utf8 ........................................ ok
+cpan/Encode/t/fallback ........................................ ok
+cpan/Encode/t/from_to ......................................... ok
+cpan/Encode/t/grow ............................................ ok
+cpan/Encode/t/gsm0338 ......................................... ok
+cpan/Encode/t/guess ........................................... ok
+cpan/Encode/t/jis7-fallback ................................... ok
+cpan/Encode/t/jperl ........................................... ok
+cpan/Encode/t/mime_header_iso2022jp ........................... ok
+cpan/Encode/t/mime-header ..................................... ok
+cpan/Encode/t/mime-name ....................................... ok
+cpan/Encode/t/perlio .......................................... ok
+cpan/Encode/t/piconv .......................................... skipped
+cpan/Encode/t/taint ........................................... ok
+cpan/Encode/t/Unicode ......................................... ok
+cpan/Encode/t/utf8ref ......................................... ok
+cpan/Encode/t/utf8strict ...................................... ok
+cpan/Encode/t/utf8warnings .................................... ok
+cpan/encoding-warnings/t/1-warning ............................ Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/2-fatal .............................. Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/3-normal ............................. Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/4-lexical ............................ Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/experimental/t/basic ..................................... ok
+cpan/ExtUtils-Command/t/cp .................................... ok
+cpan/ExtUtils-Command/t/eu_command ............................ ok
+cpan/ExtUtils-Constant/t/Constant ............................. ok
+cpan/ExtUtils-Install/t/can_write_dir ......................... ok
+cpan/ExtUtils-Install/t/Installapi2 ........................... ok
+cpan/ExtUtils-Install/t/Installed ............................. ok
+cpan/ExtUtils-Install/t/Install ............................... ok
+cpan/ExtUtils-Install/t/InstallWithMM ......................... ok
+cpan/ExtUtils-Install/t/Packlist .............................. ok
+cpan/ExtUtils-MakeMaker/t/00compile ........................... skipped
+cpan/ExtUtils-MakeMaker/t/01perl_bugs ......................... ok
+cpan/ExtUtils-MakeMaker/t/arch_check .......................... ok
+cpan/ExtUtils-MakeMaker/t/backwards ........................... ok
+cpan/ExtUtils-MakeMaker/t/basic ............................... ok
+cpan/ExtUtils-MakeMaker/t/build_man ........................... ok
+cpan/ExtUtils-MakeMaker/t/cd .................................. ok
+cpan/ExtUtils-MakeMaker/t/config .............................. ok
+cpan/ExtUtils-MakeMaker/t/dir_target .......................... ok
+cpan/ExtUtils-MakeMaker/t/echo ................................ ok
+cpan/ExtUtils-MakeMaker/t/FIRST_MAKEFILE ...................... ok
+cpan/ExtUtils-MakeMaker/t/fixin ............................... ok
+cpan/ExtUtils-MakeMaker/t/fix_libs ............................ ok
+cpan/ExtUtils-MakeMaker/t/hints ............................... ok
+cpan/ExtUtils-MakeMaker/t/INSTALL_BASE ........................ ok
+cpan/ExtUtils-MakeMaker/t/installed_file ...................... ok
+cpan/ExtUtils-MakeMaker/t/INST_PREFIX ......................... ok
+cpan/ExtUtils-MakeMaker/t/INST ................................ ok
+cpan/ExtUtils-MakeMaker/t/is_of_type .......................... ok
+cpan/ExtUtils-MakeMaker/t/Liblist ............................. ok
+cpan/ExtUtils-MakeMaker/t/MakeMaker_Parameters ................ ok
+cpan/ExtUtils-MakeMaker/t/make ................................ ok
+cpan/ExtUtils-MakeMaker/t/maketext_filter ..................... ok
+cpan/ExtUtils-MakeMaker/t/meta_convert ........................ ok
+cpan/ExtUtils-MakeMaker/t/metafile_data ....................... ok
+cpan/ExtUtils-MakeMaker/t/metafile_file ....................... ok
+cpan/ExtUtils-MakeMaker/t/miniperl ............................ ok
+cpan/ExtUtils-MakeMaker/t/min_perl_version .................... ok
+cpan/ExtUtils-MakeMaker/t/Mkbootstrap ......................... ok
+cpan/ExtUtils-MakeMaker/t/MM_Any .............................. ok
+cpan/ExtUtils-MakeMaker/t/MM_BeOS ............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Cygwin ........................... skipped
+cpan/ExtUtils-MakeMaker/t/MM_NW5 .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_OS2 .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Unix ............................. ok
+cpan/ExtUtils-MakeMaker/t/MM_VMS .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Win32 ............................ skipped
+cpan/ExtUtils-MakeMaker/t/oneliner ............................ ok
+cpan/ExtUtils-MakeMaker/t/parse_abstract ...................... ok
+cpan/ExtUtils-MakeMaker/t/parse_version ....................... ok
+cpan/ExtUtils-MakeMaker/t/PL_FILES ............................ ok
+cpan/ExtUtils-MakeMaker/t/pm .................................. ok
+cpan/ExtUtils-MakeMaker/t/pm_to_blib .......................... ok
+cpan/ExtUtils-MakeMaker/t/pod2man ............................. ok
+cpan/ExtUtils-MakeMaker/t/postamble ........................... ok
+cpan/ExtUtils-MakeMaker/t/prefixify ........................... ok
+cpan/ExtUtils-MakeMaker/t/prereq_print ........................ ok
+cpan/ExtUtils-MakeMaker/t/prereq .............................. ok
+cpan/ExtUtils-MakeMaker/t/problems ............................ ok
+cpan/ExtUtils-MakeMaker/t/prompt .............................. ok
+cpan/ExtUtils-MakeMaker/t/recurs .............................. ok
+cpan/ExtUtils-MakeMaker/t/revision ............................ ok
+cpan/ExtUtils-MakeMaker/t/several_authors ..................... ok
+cpan/ExtUtils-MakeMaker/t/split_command ....................... ok
+cpan/ExtUtils-MakeMaker/t/test_boilerplate .................... ok
+cpan/ExtUtils-MakeMaker/t/testlib ............................. ok
+cpan/ExtUtils-MakeMaker/t/unicode ............................. ok
+cpan/ExtUtils-MakeMaker/t/VERSION_FROM ........................ ok
+cpan/ExtUtils-MakeMaker/t/vstrings ............................ ok
+cpan/ExtUtils-MakeMaker/t/WriteEmptyMakefile .................. ok
+cpan/ExtUtils-MakeMaker/t/writemakefile_args .................. ok
+cpan/ExtUtils-MakeMaker/t/xs .................................. ok
+cpan/ExtUtils-Manifest/t/Manifest ............................. ok
+cpan/File-Fetch/t/01_File-Fetch ............................... ok
+cpan/File-Fetch/t/null_subclass ............................... ok
+cpan/File-Path/t/Path ......................................... ok
+cpan/File-Path/t/taint ........................................ ok
+cpan/File-Temp/t/cmp .......................................... ok
+cpan/File-Temp/t/fork ......................................... ok
+cpan/File-Temp/t/lock ......................................... skipped
+cpan/File-Temp/t/mktemp ....................................... ok
+cpan/File-Temp/t/object ....................................... ok
+cpan/File-Temp/t/posix ........................................ ok
+cpan/File-Temp/t/rmtree ....................................... ok
+cpan/File-Temp/t/security ..................................... ok
+cpan/File-Temp/t/seekable ..................................... ok
+cpan/File-Temp/t/tempfile ..................................... ok
+cpan/Filter-Util-Call/t/call .................................. ok
+cpan/Filter-Util-Call/t/rt_54452-rebless ...................... ok
+cpan/Getopt-Long/t/gol-basic .................................. ok
+cpan/Getopt-Long/t/gol-linkage ................................ ok
+cpan/Getopt-Long/t/gol-oo ..................................... ok
+cpan/Getopt-Long/t/gol-xargv .................................. ok
+cpan/Getopt-Long/t/gol-xstring ................................ ok
+cpan/HTTP-Tiny/t/000_load ..................................... ok
+cpan/HTTP-Tiny/t/001_api ...................................... ok
+cpan/HTTP-Tiny/t/002_croakage ................................. ok
+cpan/HTTP-Tiny/t/003_agent .................................... ok
+cpan/HTTP-Tiny/t/010_url ...................................... ok
+cpan/HTTP-Tiny/t/020_headers .................................. ok
+cpan/HTTP-Tiny/t/030_response ................................. ok
+cpan/HTTP-Tiny/t/040_content .................................. ok
+cpan/HTTP-Tiny/t/050_chunked_body ............................. ok
+cpan/HTTP-Tiny/t/060_http_date ................................ ok
+cpan/HTTP-Tiny/t/070_cookie_jar ............................... ok
+cpan/HTTP-Tiny/t/100_get ...................................... ok
+cpan/HTTP-Tiny/t/101_head ..................................... ok
+cpan/HTTP-Tiny/t/102_put ...................................... ok
+cpan/HTTP-Tiny/t/103_delete ................................... ok
+cpan/HTTP-Tiny/t/104_post ..................................... ok
+cpan/HTTP-Tiny/t/110_mirror ................................... ok
+cpan/HTTP-Tiny/t/130_redirect ................................. ok
+cpan/HTTP-Tiny/t/140_proxy .................................... ok
+cpan/HTTP-Tiny/t/141_no_proxy ................................. ok
+cpan/HTTP-Tiny/t/150_post_form ................................ ok
+cpan/HTTP-Tiny/t/160_cookies .................................. ok
+cpan/HTTP-Tiny/t/161_basic_auth ............................... ok
+cpan/HTTP-Tiny/t/162_proxy_auth ............................... ok
+cpan/HTTP-Tiny/t/170_keepalive ................................ ok
+cpan/IO-Compress/t/000prereq .................................. ok
+cpan/IO-Compress/t/001bzip2 ................................... ok
+cpan/IO-Compress/t/001zlib-generic-deflate .................... ok
+cpan/IO-Compress/t/001zlib-generic-gzip ....................... ok
+cpan/IO-Compress/t/001zlib-generic-rawdeflate ................. ok
+cpan/IO-Compress/t/001zlib-generic-zip ........................ ok
+cpan/IO-Compress/t/002any-deflate ............................. ok
+cpan/IO-Compress/t/002any-gzip ................................ ok
+cpan/IO-Compress/t/002any-rawdeflate .......................... ok
+cpan/IO-Compress/t/002any-transparent ......................... ok
+cpan/IO-Compress/t/002any-zip ................................. ok
+cpan/IO-Compress/t/004gziphdr ................................. ok
+cpan/IO-Compress/t/005defhdr .................................. ok
+cpan/IO-Compress/t/006zip ..................................... ok
+cpan/IO-Compress/t/01misc ..................................... ok
+cpan/IO-Compress/t/020isize ................................... skipped
+cpan/IO-Compress/t/050interop-gzip ............................ ok
+cpan/IO-Compress/t/100generic-bzip2 ........................... ok
+cpan/IO-Compress/t/100generic-deflate ......................... ok
+cpan/IO-Compress/t/100generic-gzip ............................ ok
+cpan/IO-Compress/t/100generic-rawdeflate ...................... ok
+cpan/IO-Compress/t/100generic-zip ............................. ok
+cpan/IO-Compress/t/101truncate-bzip2 .......................... skipped
+cpan/IO-Compress/t/101truncate-deflate ........................ skipped
+cpan/IO-Compress/t/101truncate-gzip ........................... skipped
+cpan/IO-Compress/t/101truncate-rawdeflate ..................... skipped
+cpan/IO-Compress/t/101truncate-zip ............................ skipped
+cpan/IO-Compress/t/102tied-bzip2 .............................. ok
+cpan/IO-Compress/t/102tied-deflate ............................ ok
+cpan/IO-Compress/t/102tied-gzip ............................... ok
+cpan/IO-Compress/t/102tied-rawdeflate ......................... ok
+cpan/IO-Compress/t/102tied-zip ................................ ok
+cpan/IO-Compress/t/103newtied-bzip2 ........................... ok
+cpan/IO-Compress/t/103newtied-deflate ......................... ok
+cpan/IO-Compress/t/103newtied-gzip ............................ ok
+cpan/IO-Compress/t/103newtied-rawdeflate ...................... ok
+cpan/IO-Compress/t/103newtied-zip ............................. ok
+cpan/IO-Compress/t/104destroy-bzip2 ........................... ok
+cpan/IO-Compress/t/104destroy-deflate ......................... ok
+cpan/IO-Compress/t/104destroy-gzip ............................ ok
+cpan/IO-Compress/t/104destroy-rawdeflate ...................... ok
+cpan/IO-Compress/t/104destroy-zip ............................. ok
+cpan/IO-Compress/t/105oneshot-bzip2 ........................... ok
+cpan/IO-Compress/t/105oneshot-deflate ......................... ok
+cpan/IO-Compress/t/105oneshot-gzip-only ....................... ok
+cpan/IO-Compress/t/105oneshot-gzip ............................ ok
+cpan/IO-Compress/t/105oneshot-rawdeflate ...................... ok
+cpan/IO-Compress/t/105oneshot-zip-bzip2-only .................. ok
+cpan/IO-Compress/t/105oneshot-zip-only ........................ ok
+cpan/IO-Compress/t/105oneshot-zip-store-only .................. skipped
+cpan/IO-Compress/t/105oneshot-zip ............................. ok
+cpan/IO-Compress/t/106prime-bzip2 ............................. skipped
+cpan/IO-Compress/t/106prime-deflate ........................... skipped
+cpan/IO-Compress/t/106prime-gzip .............................. skipped
+cpan/IO-Compress/t/106prime-rawdeflate ........................ skipped
+cpan/IO-Compress/t/106prime-zip ............................... skipped
+cpan/IO-Compress/t/107multi-bzip2 ............................. ok
+cpan/IO-Compress/t/107multi-deflate ........................... ok
+cpan/IO-Compress/t/107multi-gzip .............................. ok
+cpan/IO-Compress/t/107multi-rawdeflate ........................ ok
+cpan/IO-Compress/t/107multi-zip ............................... ok
+cpan/IO-Compress/t/108anyunc-bzip2 ............................ ok
+cpan/IO-Compress/t/108anyunc-deflate .......................... ok
+cpan/IO-Compress/t/108anyunc-gzip ............................. ok
+cpan/IO-Compress/t/108anyunc-rawdeflate ....................... ok
+cpan/IO-Compress/t/108anyunc-transparent ...................... ok
+cpan/IO-Compress/t/108anyunc-zip .............................. ok
+cpan/IO-Compress/t/109merge-deflate ........................... ok
+cpan/IO-Compress/t/109merge-gzip .............................. ok
+cpan/IO-Compress/t/109merge-rawdeflate ........................ ok
+cpan/IO-Compress/t/109merge-zip ............................... skipped
+cpan/IO-Compress/t/110encode-bzip2 ............................ ok
+cpan/IO-Compress/t/110encode-deflate .......................... ok
+cpan/IO-Compress/t/110encode-gzip ............................. ok
+cpan/IO-Compress/t/110encode-rawdeflate ....................... ok
+cpan/IO-Compress/t/110encode-zip .............................. ok
+cpan/IO-Compress/t/111const-deflate ........................... ok
+cpan/IO-Compress/t/999pod ..................................... skipped
+cpan/IO-Compress/t/cz-01version ............................... ok
+cpan/IO-Compress/t/cz-03zlib-v1 ............................... ok
+cpan/IO-Compress/t/cz-06gzsetp ................................ ok
+cpan/IO-Compress/t/cz-08encoding .............................. ok
+cpan/IO-Compress/t/cz-14gzopen ................................ ok
+cpan/IO-Compress/t/globmapper ................................. ok
+cpan/IO-Socket-IP/t/00use ..................................... ok
+cpan/IO-Socket-IP/t/01local-client-v4 ......................... ok
+cpan/IO-Socket-IP/t/02local-server-v4 ......................... ok
+cpan/IO-Socket-IP/t/03local-cross-v4 .......................... ok
+cpan/IO-Socket-IP/t/04local-client-v6 ......................... ok
+cpan/IO-Socket-IP/t/05local-server-v6 ......................... ok
+cpan/IO-Socket-IP/t/06local-cross-v6 .......................... ok
+cpan/IO-Socket-IP/t/10args .................................... ok
+cpan/IO-Socket-IP/t/11sockopts ................................ ok
+cpan/IO-Socket-IP/t/12port-fallback ........................... ok
+cpan/IO-Socket-IP/t/13addrinfo ................................ ok
+cpan/IO-Socket-IP/t/14fileno .................................. ok
+cpan/IO-Socket-IP/t/15io-socket ............................... ok
+cpan/IO-Socket-IP/t/16v6only .................................. ok
+cpan/IO-Socket-IP/t/17gai-flags ............................... ok
+cpan/IO-Socket-IP/t/18fdopen .................................. ok
+cpan/IO-Socket-IP/t/19no-addrs ................................ ok
+cpan/IO-Socket-IP/t/20subclass ................................ ok
+cpan/IO-Socket-IP/t/21as-inet ................................. ok
+cpan/IO-Socket-IP/t/22timeout ................................. ok
+cpan/IO-Socket-IP/t/30nonblocking-connect ..................... ok
+cpan/IO-Socket-IP/t/31nonblocking-connect-internet ............ ok
+cpan/IO-Socket-IP/t/99pod ..................................... skipped
+cpan/IO-Zlib/t/basic .......................................... ok
+cpan/IO-Zlib/t/external ....................................... ok
+cpan/IO-Zlib/t/getc ........................................... ok
+cpan/IO-Zlib/t/getline ........................................ ok
+cpan/IO-Zlib/t/import ......................................... ok
+cpan/IO-Zlib/t/large .......................................... ok
+cpan/IO-Zlib/t/tied ........................................... ok
+cpan/IO-Zlib/t/uncomp1 ........................................ ok
+cpan/IO-Zlib/t/uncomp2 ........................................ ok
+cpan/IPC-Cmd/t/01_IPC-Cmd ..................................... ok
+cpan/IPC-Cmd/t/02_Interactive ................................. skipped
+cpan/IPC-Cmd/t/03_run-forked .................................. ok
+cpan/IPC-SysV/t/ipcsysv ....................................... ok
+cpan/IPC-SysV/t/msg ........................................... ok
+cpan/IPC-SysV/t/podcov ........................................ skipped
+cpan/IPC-SysV/t/pod ........................................... skipped
+cpan/IPC-SysV/t/sem ........................................... ok
+cpan/IPC-SysV/t/shm ........................................... ok
+cpan/JSON-PP/t/000_load ....................................... ok
+cpan/JSON-PP/t/001_utf8 ....................................... ok
+cpan/JSON-PP/t/002_error ...................................... ok
+cpan/JSON-PP/t/003_types ...................................... ok
+cpan/JSON-PP/t/006_pc_pretty .................................. ok
+cpan/JSON-PP/t/007_pc_esc ..................................... ok
+cpan/JSON-PP/t/008_pc_base .................................... ok
+cpan/JSON-PP/t/009_pc_extra_number ............................ ok
+cpan/JSON-PP/t/010_pc_keysort ................................. ok
+cpan/JSON-PP/t/011_pc_expo .................................... ok
+cpan/JSON-PP/t/012_blessed .................................... ok
+cpan/JSON-PP/t/013_limit ...................................... ok
+cpan/JSON-PP/t/014_latin1 ..................................... ok
+cpan/JSON-PP/t/015_prefix ..................................... ok
+cpan/JSON-PP/t/016_tied ....................................... ok
+cpan/JSON-PP/t/017_relaxed .................................... ok
+cpan/JSON-PP/t/018_json_checker ............................... ok
+cpan/JSON-PP/t/019_incr ....................................... ok
+cpan/JSON-PP/t/020_unknown .................................... ok
+cpan/JSON-PP/t/021_evans_bugrep ............................... ok
+cpan/JSON-PP/t/022_comment_at_eof ............................. ok
+cpan/JSON-PP/t/099_binary ..................................... ok
+cpan/JSON-PP/t/104_sortby ..................................... ok
+cpan/JSON-PP/t/105_esc_slash .................................. ok
+cpan/JSON-PP/t/106_allow_barekey .............................. ok
+cpan/JSON-PP/t/107_allow_singlequote .......................... ok
+cpan/JSON-PP/t/108_decode ..................................... ok
+cpan/JSON-PP/t/109_encode ..................................... ok
+cpan/JSON-PP/t/110_bignum ..................................... ok
+cpan/JSON-PP/t/112_upgrade .................................... ok
+cpan/JSON-PP/t/113_overloaded_eq .............................. ok
+cpan/JSON-PP/t/114_decode_prefix .............................. ok
+cpan/JSON-PP/t/115_tie_ixhash ................................. ok
+cpan/JSON-PP/t/116_incr_parse_fixed ........................... ok
+cpan/JSON-PP/t/zero-mojibake .................................. ok
+cpan/libnet/t/config .......................................... ok
+cpan/libnet/t/datasend ........................................ ok
+cpan/libnet/t/ftp ............................................. skipped
+cpan/libnet/t/hostname ........................................ ok
+cpan/libnet/t/netrc ........................................... ok
+cpan/libnet/t/nntp_ipv6 ....................................... ok
+cpan/libnet/t/nntp_ssl ........................................ skipped
+cpan/libnet/t/nntp ............................................ skipped
+cpan/libnet/t/pop3_ipv6 ....................................... ok
+cpan/libnet/t/pop3_ssl ........................................ skipped
+cpan/libnet/t/require ......................................... ok
+cpan/libnet/t/smtp_ipv6 ....................................... ok
+cpan/libnet/t/smtp_ssl ........................................ skipped
+cpan/libnet/t/smtp ............................................ skipped
+cpan/libnet/t/time ............................................ ok
+cpan/Locale-Codes/t/alias_code_old ............................ ok
+cpan/Locale-Codes/t/alias_code ................................ ok
+cpan/Locale-Codes/t/code2country_old .......................... ok
+cpan/Locale-Codes/t/code2country .............................. ok
+cpan/Locale-Codes/t/code2currency ............................. ok
+cpan/Locale-Codes/t/code2langext .............................. ok
+cpan/Locale-Codes/t/code2langfam .............................. ok
+cpan/Locale-Codes/t/code2language ............................. ok
+cpan/Locale-Codes/t/code2langvar .............................. ok
+cpan/Locale-Codes/t/code2script ............................... ok
+cpan/Locale-Codes/t/country2code_old .......................... ok
+cpan/Locale-Codes/t/country2code .............................. ok
+cpan/Locale-Codes/t/country_code2code_old ..................... ok
+cpan/Locale-Codes/t/country_code2code ......................... ok
+cpan/Locale-Codes/t/country_old ............................... ok
+cpan/Locale-Codes/t/country ................................... ok
+cpan/Locale-Codes/t/currency2code_old ......................... ok
+cpan/Locale-Codes/t/currency2code ............................. ok
+cpan/Locale-Codes/t/langext2code .............................. ok
+cpan/Locale-Codes/t/langfam2code .............................. ok
+cpan/Locale-Codes/t/language2code ............................. ok
+cpan/Locale-Codes/t/language_old .............................. ok
+cpan/Locale-Codes/t/language .................................. ok
+cpan/Locale-Codes/t/langvar2code .............................. ok
+cpan/Locale-Codes/t/script2code_old ........................... ok
+cpan/Locale-Codes/t/script2code ............................... ok
+cpan/Locale-Maketext-Simple/t/0-signature ..................... ok
+cpan/Locale-Maketext-Simple/t/1-basic ......................... ok
+cpan/Locale-Maketext-Simple/t/2-load_po_without_i_default ..... skipped
+cpan/Locale-Maketext-Simple/t/3-load_po_with_i_default ........ skipped
+cpan/Math-Complex/t/Complex ................................... ok
+cpan/Math-Complex/t/Trig ...................................... ok
+cpan/Math-Complex/t/underbar .................................. ok
+cpan/Memoize/t/array_confusion ................................ ok
+cpan/Memoize/t/array .......................................... ok
+cpan/Memoize/t/correctness .................................... ok
+cpan/Memoize/t/errors ......................................... ok
+cpan/Memoize/t/expfile ........................................ ok
+cpan/Memoize/t/expire ......................................... ok
+cpan/Memoize/t/expmod_n ....................................... ok
+cpan/Memoize/t/expmod_t ....................................... ok
+cpan/Memoize/t/flush .......................................... ok
+cpan/Memoize/t/normalize ...................................... ok
+cpan/Memoize/t/prototype ...................................... ok
+cpan/Memoize/t/speed .......................................... ok
+cpan/Memoize/t/tiefeatures .................................... ok
+cpan/Memoize/t/tie_gdbm ....................................... ok
+cpan/Memoize/t/tie_ndbm ....................................... ok
+cpan/Memoize/t/tie_sdbm ....................................... ok
+cpan/Memoize/t/tie_storable ................................... ok
+cpan/Memoize/t/tie ............................................ ok
+cpan/Memoize/t/unmemoize ...................................... ok
+cpan/MIME-Base64/t/base64 ..................................... ok
+cpan/MIME-Base64/t/length ..................................... ok
+cpan/MIME-Base64/t/quoted-print ............................... ok
+cpan/MIME-Base64/t/unicode .................................... ok
+cpan/Module-Load-Conditional/t/01_Module_Load_Conditional ..... ok
+cpan/Module-Loaded/t/01_Module-Loaded ......................... ok
+cpan/Module-Load/t/01_Module-Load ............................. ok
+cpan/Module-Load/t/02_Module-Load ............................. ok
+cpan/Module-Metadata/t/contains_pod ........................... ok
+cpan/Module-Metadata/t/encoding ............................... ok
+cpan/Module-Metadata/t/endpod ................................. ok
+cpan/Module-Metadata/t/metadata ............................... ok
+cpan/Module-Metadata/t/taint .................................. ok
+cpan/Module-Metadata/t/version ................................ ok
+cpan/NEXT/t/actual ............................................ ok
+cpan/NEXT/t/actuns ............................................ ok
+cpan/NEXT/t/dynamically_scoped_regex_vars ..................... ok
+cpan/NEXT/t/next .............................................. ok
+cpan/NEXT/t/stringify ......................................... ok
+cpan/NEXT/t/unseen ............................................ ok
+cpan/Params-Check/t/01_Params-Check ........................... ok
+cpan/parent/t/compile-time-file ............................... ok
+cpan/parent/t/compile-time .................................... ok
+cpan/parent/t/parent-classfromclassfile ....................... ok
+cpan/parent/t/parent-classfromfile ............................ ok
+cpan/parent/t/parent-pmc ...................................... ok
+cpan/parent/t/parent-returns-false ............................ ok
+cpan/parent/t/parent .......................................... ok
+cpan/Parse-CPAN-Meta/t/02_api ................................. ok
+cpan/Parse-CPAN-Meta/t/03_functions ........................... ok
+cpan/Parse-CPAN-Meta/t/04_export .............................. ok
+cpan/Parse-CPAN-Meta/t/05_errors .............................. ok
+cpan/PerlIO-via-QuotedPrint/t/QuotedPrint ..................... ok
+cpan/Perl-OSType/t/OSType ..................................... ok
+cpan/Pod-Checker/t/pod/podchkenc .............................. ok
+cpan/Pod-Checker/t/pod/poderrs ................................ ok
+cpan/Pod-Checker/t/pod/selfcheck .............................. ok
+cpan/Pod-Escapes/t/01_about_verbose ........................... ok
+cpan/Pod-Escapes/t/10_main .................................... ok
+cpan/Pod-Escapes/t/15_name2charnum ............................ ok
+cpan/podlators/t/basic ........................................ ok
+cpan/podlators/t/color ........................................ ok
+cpan/podlators/t/devise-date .................................. ok
+cpan/podlators/t/filehandle ................................... ok
+cpan/podlators/t/man-empty .................................... ok
+cpan/podlators/t/man-heading .................................. ok
+cpan/podlators/t/man-options .................................. ok
+cpan/podlators/t/man-perlio ................................... ok
+cpan/podlators/t/man .......................................... ok
+cpan/podlators/t/man-utf8 ..................................... ok
+cpan/podlators/t/overstrike ................................... ok
+cpan/podlators/t/parselink .................................... ok
+cpan/podlators/t/pod-parser ................................... ok
+cpan/podlators/t/pod-spelling ................................. skipped
+cpan/podlators/t/pod .......................................... skipped
+cpan/podlators/t/termcap ...................................... ok
+cpan/podlators/t/text-empty ................................... ok
+cpan/podlators/t/text-encoding ................................ ok
+cpan/podlators/t/text-options ................................. ok
+cpan/podlators/t/text-perlio .................................. ok
+cpan/podlators/t/text ......................................... ok
+cpan/podlators/t/text-utf8 .................................... ok
+cpan/Pod-Parser/t/pod/contains_pod ............................ ok
+cpan/Pod-Parser/t/pod/emptycmd ................................ ok
+cpan/Pod-Parser/t/pod/find .................................... ok
+cpan/Pod-Parser/t/pod/for ..................................... ok
+cpan/Pod-Parser/t/pod/headings ................................ ok
+cpan/Pod-Parser/t/pod/included ................................ ok
+cpan/Pod-Parser/t/pod/include ................................. ok
+cpan/Pod-Parser/t/pod/lref .................................... ok
+cpan/Pod-Parser/t/pod/multiline_items ......................... ok
+cpan/Pod-Parser/t/pod/nested_items ............................ ok
+cpan/Pod-Parser/t/pod/nested_seqs ............................. ok
+cpan/Pod-Parser/t/pod/oneline_cmds ............................ ok
+cpan/Pod-Parser/t/pod/podselect ............................... ok
+cpan/Pod-Parser/t/pod/selfcheck ............................... ok
+cpan/Pod-Parser/t/pod/special_seqs ............................ ok
+cpan/Pod-Parser/t/pod/twice ................................... ok
+cpan/Pod-Perldoc/t/load ....................................... ok
+cpan/Pod-Perldoc/t/man/_get_columns ........................... ok
+cpan/Pod-Perldoc/t/pod ........................................ skipped
+cpan/Pod-Simple/t/00about ..................................... ok
+cpan/Pod-Simple/t/20_skip ..................................... ok
+cpan/Pod-Simple/t/accept01 .................................... ok
+cpan/Pod-Simple/t/accept05 .................................... ok
+cpan/Pod-Simple/t/ac_d ........................................ ok
+cpan/Pod-Simple/t/basic ....................................... ok
+cpan/Pod-Simple/t/begin ....................................... ok
+cpan/Pod-Simple/t/cbacks ...................................... ok
+cpan/Pod-Simple/t/chunking .................................... ok
+cpan/Pod-Simple/t/closeys ..................................... ok
+cpan/Pod-Simple/t/corpus ...................................... ok
+cpan/Pod-Simple/t/emptylists .................................. ok
+cpan/Pod-Simple/t/enc-chars ................................... ok
+cpan/Pod-Simple/t/encod01 ..................................... ok
+cpan/Pod-Simple/t/encod02 ..................................... ok
+cpan/Pod-Simple/t/encod03 ..................................... ok
+cpan/Pod-Simple/t/encod04 ..................................... ok
+cpan/Pod-Simple/t/end_over .................................... ok
+cpan/Pod-Simple/t/eol2 ........................................ ok
+cpan/Pod-Simple/t/eol ......................................... ok
+cpan/Pod-Simple/t/fake-closers ................................ ok
+cpan/Pod-Simple/t/fcodes_e .................................... ok
+cpan/Pod-Simple/t/fcodes_l .................................... ok
+cpan/Pod-Simple/t/fcodes_s .................................... ok
+cpan/Pod-Simple/t/fcodes ...................................... ok
+cpan/Pod-Simple/t/fornot ...................................... ok
+cpan/Pod-Simple/t/for ......................................... ok
+cpan/Pod-Simple/t/heads ....................................... ok
+cpan/Pod-Simple/t/html01 ...................................... ok
+cpan/Pod-Simple/t/html02 ...................................... ok
+cpan/Pod-Simple/t/html03 ...................................... ok
+cpan/Pod-Simple/t/htmlbat ..................................... ok
+cpan/Pod-Simple/t/items02 ..................................... ok
+cpan/Pod-Simple/t/items ....................................... ok
+cpan/Pod-Simple/t/itemstar .................................... ok
+cpan/Pod-Simple/t/linkclas .................................... ok
+cpan/Pod-Simple/t/output ...................................... ok
+cpan/Pod-Simple/t/puller ...................................... ok
+cpan/Pod-Simple/t/pulltitl .................................... ok
+cpan/Pod-Simple/t/reinit ...................................... ok
+cpan/Pod-Simple/t/render ...................................... ok
+cpan/Pod-Simple/t/search05 .................................... ok
+cpan/Pod-Simple/t/search10 .................................... ok
+cpan/Pod-Simple/t/search12 .................................... ok
+cpan/Pod-Simple/t/search20 .................................... ok
+cpan/Pod-Simple/t/search22 .................................... ok
+cpan/Pod-Simple/t/search25 .................................... ok
+cpan/Pod-Simple/t/search26 .................................... ok
+cpan/Pod-Simple/t/search27 .................................... ok
+cpan/Pod-Simple/t/search28 .................................... ok
+cpan/Pod-Simple/t/search29 .................................... ok
+cpan/Pod-Simple/t/search50 .................................... ok
+cpan/Pod-Simple/t/stree ....................................... ok
+cpan/Pod-Simple/t/strpvbtm .................................... ok
+cpan/Pod-Simple/t/tiedfh ...................................... ok
+cpan/Pod-Simple/t/verbatim .................................... ok
+cpan/Pod-Simple/t/verb_fmt .................................... ok
+cpan/Pod-Simple/t/whine ....................................... ok
+cpan/Pod-Simple/t/xhtml01 ..................................... ok
+cpan/Pod-Simple/t/xhtml05 ..................................... ok
+cpan/Pod-Simple/t/xhtml10 ..................................... ok
+cpan/Pod-Simple/t/xhtml15 ..................................... ok
+cpan/Pod-Simple/t/xhtml20 ..................................... ok
+cpan/Pod-Simple/t/xhtml-bkb ................................... ok
+cpan/Pod-Simple/t/x_nixer ..................................... ok
+cpan/Pod-Usage/t/pod/pod2usage2 ............................... ok
+cpan/Pod-Usage/t/pod/pod2usage ................................ ok
+cpan/Scalar-List-Utils/t/00version ............................ ok
+cpan/Scalar-List-Utils/t/any-all .............................. ok
+cpan/Scalar-List-Utils/t/blessed .............................. ok
+cpan/Scalar-List-Utils/t/dualvar .............................. ok
+cpan/Scalar-List-Utils/t/first ................................ ok
+cpan/Scalar-List-Utils/t/getmagic-once ........................ ok
+cpan/Scalar-List-Utils/t/isvstring ............................ ok
+cpan/Scalar-List-Utils/t/lln .................................. ok
+cpan/Scalar-List-Utils/t/maxstr ............................... ok
+cpan/Scalar-List-Utils/t/max .................................. ok
+cpan/Scalar-List-Utils/t/minstr ............................... ok
+cpan/Scalar-List-Utils/t/min .................................. ok
+cpan/Scalar-List-Utils/t/openhan .............................. ok
+cpan/Scalar-List-Utils/t/pair ................................. ok
+cpan/Scalar-List-Utils/t/product .............................. ok
+cpan/Scalar-List-Utils/t/prototype ............................ ok
+cpan/Scalar-List-Utils/t/readonly ............................. ok
+cpan/Scalar-List-Utils/t/reduce ............................... ok
+cpan/Scalar-List-Utils/t/refaddr .............................. ok
+cpan/Scalar-List-Utils/t/reftype .............................. ok
+cpan/Scalar-List-Utils/t/scalarutil-proto ..................... ok
+cpan/Scalar-List-Utils/t/shuffle .............................. ok
+cpan/Scalar-List-Utils/t/stack-corruption ..................... ok
+cpan/Scalar-List-Utils/t/subname .............................. ok
+cpan/Scalar-List-Utils/t/sum0 ................................. ok
+cpan/Scalar-List-Utils/t/sum .................................. ok
+cpan/Scalar-List-Utils/t/tainted .............................. ok
+cpan/Scalar-List-Utils/t/weak ................................. ok
+cpan/Socket/t/getaddrinfo ..................................... ok
+cpan/Socket/t/getnameinfo ..................................... ok
+cpan/Socket/t/ip_mreq ......................................... ok
+cpan/Socket/t/ipv6_mreq ....................................... ok
+cpan/Socket/t/sockaddr ........................................ ok
+cpan/Socket/t/socketpair ...................................... ok
+cpan/Socket/t/Socket .......................................... ok
+cpan/Sys-Syslog/t/00-load ..................................... ok
+cpan/Sys-Syslog/t/constants ................................... ok
+cpan/Sys-Syslog/t/facilities-routing .......................... skipped
+cpan/Sys-Syslog/t/syslog ...................................... ok
+cpan/Term-ANSIColor/t/module/aliases-func ..................... ok
+cpan/Term-ANSIColor/t/module/basic256 ......................... ok
+cpan/Term-ANSIColor/t/module/basic ............................ ok
+cpan/Term-ANSIColor/t/module/eval ............................. ok
+cpan/Term-ANSIColor/t/module/stringify ........................ ok
+cpan/Term-ANSIColor/t/taint/basic ............................. ok
+cpan/Term-Cap/test ............................................ ok
+cpan/Test-Harness/t/aggregator ................................ ok
+cpan/Test-Harness/t/bailout ................................... ok
+cpan/Test-Harness/t/base ...................................... ok
+cpan/Test-Harness/t/callbacks ................................. ok
+cpan/Test-Harness/t/compat/env_opts ........................... ok
+cpan/Test-Harness/t/compat/env ................................ ok
+cpan/Test-Harness/t/compat/failure ............................ ok
+cpan/Test-Harness/t/compat/inc-propagation .................... ok
+cpan/Test-Harness/t/compat/inc_taint .......................... ok
+cpan/Test-Harness/t/compat/nonumbers .......................... skipped
+cpan/Test-Harness/t/compat/regression ......................... ok
+cpan/Test-Harness/t/compat/subclass ........................... ok
+cpan/Test-Harness/t/compat/switches ........................... ok
+cpan/Test-Harness/t/compat/test-harness-compat ................ ok
+cpan/Test-Harness/t/compat/version ............................ ok
+cpan/Test-Harness/t/console ................................... ok
+cpan/Test-Harness/t/errors .................................... ok
+cpan/Test-Harness/t/file ...................................... ok
+cpan/Test-Harness/t/glob-to-regexp ............................ ok
+cpan/Test-Harness/t/grammar ................................... ok
+cpan/Test-Harness/t/harness-bailout ........................... ok
+cpan/Test-Harness/t/harness-subclass .......................... ok
+cpan/Test-Harness/t/harness ................................... ok
+cpan/Test-Harness/t/iterator_factory .......................... ok
+cpan/Test-Harness/t/iterators ................................. ok
+cpan/Test-Harness/t/multiplexer ............................... ok
+cpan/Test-Harness/t/nested .................................... ok
+cpan/Test-Harness/t/nofork-mux ................................ ok
+cpan/Test-Harness/t/nofork .................................... ok
+cpan/Test-Harness/t/object .................................... ok
+cpan/Test-Harness/t/parser-config ............................. ok
+cpan/Test-Harness/t/parser-subclass ........................... ok
+cpan/Test-Harness/t/parse ..................................... ok
+cpan/Test-Harness/t/perl5lib .................................. ok
+cpan/Test-Harness/t/premature-bailout ......................... ok
+cpan/Test-Harness/t/process ................................... ok
+cpan/Test-Harness/t/proverc ................................... ok
+cpan/Test-Harness/t/proverun .................................. ok
+cpan/Test-Harness/t/prove ..................................... ok
+cpan/Test-Harness/t/proveversion .............................. ok
+cpan/Test-Harness/t/regression ................................ ok
+cpan/Test-Harness/t/results ................................... ok
+cpan/Test-Harness/t/scheduler ................................. ok
+cpan/Test-Harness/t/source_handler ............................ ok
+cpan/Test-Harness/t/source .................................... ok
+cpan/Test-Harness/t/source_tests/source ....................... ok
+cpan/Test-Harness/t/spool ..................................... ok
+cpan/Test-Harness/t/state_results ............................. ok
+cpan/Test-Harness/t/state ..................................... ok
+cpan/Test-Harness/t/streams ................................... ok
+cpan/Test-Harness/t/taint ..................................... ok
+cpan/Test-Harness/t/testargs .................................. ok
+cpan/Test-Harness/t/unicode ................................... ok
+cpan/Test-Harness/t/yamlish-output ............................ ok
+cpan/Test-Harness/t/yamlish ................................... ok
+cpan/Test-Harness/t/yamlish-writer ............................ ok
+cpan/Test-Simple/t/00test_harness_check ....................... ok
+cpan/Test-Simple/t/01-basic ................................... ok
+cpan/Test-Simple/t/478-cmp_ok_hash ............................ ok
+cpan/Test-Simple/t/auto ....................................... ok
+cpan/Test-Simple/t/bad_plan ................................... ok
+cpan/Test-Simple/t/bail_out ................................... ok
+cpan/Test-Simple/t/BEGIN_require_ok ........................... ok
+cpan/Test-Simple/t/BEGIN_use_ok ............................... ok
+cpan/Test-Simple/t/buffer ..................................... ok
+cpan/Test-Simple/t/Builder/Builder ............................ ok
+cpan/Test-Simple/t/Builder/carp ............................... ok
+cpan/Test-Simple/t/Builder/create ............................. ok
+cpan/Test-Simple/t/Builder/current_test ....................... ok
+cpan/Test-Simple/t/Builder/current_test_without_plan .......... ok
+cpan/Test-Simple/t/Builder/details ............................ ok
+cpan/Test-Simple/t/Builder/done_testing_double ................ ok
+cpan/Test-Simple/t/Builder/done_testing_plan_mismatch ......... ok
+cpan/Test-Simple/t/Builder/done_testing ....................... ok
+cpan/Test-Simple/t/Builder/done_testing_with_no_plan .......... ok
+cpan/Test-Simple/t/Builder/done_testing_with_number ........... ok
+cpan/Test-Simple/t/Builder/done_testing_with_plan ............. ok
+cpan/Test-Simple/t/Builder/fork_with_new_stdout ............... ok
+cpan/Test-Simple/t/Builder/has_plan2 .......................... ok
+cpan/Test-Simple/t/Builder/has_plan ........................... ok
+cpan/Test-Simple/t/Builder/is_fh .............................. ok
+cpan/Test-Simple/t/Builder/is_passing ......................... ok
+cpan/Test-Simple/t/Builder/maybe_regex ........................ ok
+cpan/Test-Simple/t/Builder/no_diag ............................ ok
+cpan/Test-Simple/t/Builder/no_ending .......................... ok
+cpan/Test-Simple/t/Builder/no_header .......................... ok
+cpan/Test-Simple/t/Builder/no_plan_at_all ..................... ok
+cpan/Test-Simple/t/Builder/ok_obj ............................. ok
+cpan/Test-Simple/t/Builder/output ............................. ok
+cpan/Test-Simple/t/Builder/reset_outputs ...................... ok
+cpan/Test-Simple/t/Builder/reset .............................. ok
+cpan/Test-Simple/t/Builder/try ................................ ok
+cpan/Test-Simple/t/capture .................................... ok
+cpan/Test-Simple/t/c_flag ..................................... ok
+cpan/Test-Simple/t/check_tests ................................ ok
+cpan/Test-Simple/t/circular_data .............................. ok
+cpan/Test-Simple/t/cmp_ok ..................................... ok
+cpan/Test-Simple/t/dependents ................................. skipped
+cpan/Test-Simple/t/depth ...................................... ok
+cpan/Test-Simple/t/diag ....................................... ok
+cpan/Test-Simple/t/died ....................................... ok
+cpan/Test-Simple/t/dont_overwrite_die_handler ................. ok
+cpan/Test-Simple/t/eq_set ..................................... ok
+cpan/Test-Simple/t/exit ....................................... ok
+cpan/Test-Simple/t/explain .................................... ok
+cpan/Test-Simple/t/extra_one .................................. ok
+cpan/Test-Simple/t/extra ...................................... ok
+cpan/Test-Simple/t/fail-like .................................. ok
+cpan/Test-Simple/t/fail-more .................................. ok
+cpan/Test-Simple/t/fail_one ................................... ok
+cpan/Test-Simple/t/fail ....................................... ok
+cpan/Test-Simple/t/filehandles ................................ ok
+cpan/Test-Simple/t/fork ....................................... ok
+cpan/Test-Simple/t/harness_active ............................. ok
+cpan/Test-Simple/t/import ..................................... ok
+cpan/Test-Simple/t/is_deeply_dne_bug .......................... ok
+cpan/Test-Simple/t/is_deeply_fail ............................. ok
+cpan/Test-Simple/t/is_deeply_with_threads ..................... skipped
+cpan/Test-Simple/t/missing .................................... ok
+cpan/Test-Simple/t/More ....................................... ok
+cpan/Test-Simple/t/new_ok ..................................... ok
+cpan/Test-Simple/t/no_plan .................................... ok
+cpan/Test-Simple/t/no_tests ................................... ok
+cpan/Test-Simple/t/note ....................................... ok
+cpan/Test-Simple/t/overload ................................... ok
+cpan/Test-Simple/t/overload_threads ........................... ok
+cpan/Test-Simple/t/plan_bad ................................... ok
+cpan/Test-Simple/t/plan_is_noplan ............................. ok
+cpan/Test-Simple/t/plan_no_plan ............................... ok
+cpan/Test-Simple/t/plan_shouldnt_import ....................... ok
+cpan/Test-Simple/t/plan_skip_all .............................. skipped
+cpan/Test-Simple/t/plan ....................................... ok
+cpan/Test-Simple/t/require_ok ................................. ok
+cpan/Test-Simple/t/run_test ................................... ok
+cpan/Test-Simple/t/Simple/load ................................ ok
+cpan/Test-Simple/t/simple ..................................... ok
+cpan/Test-Simple/t/skipall .................................... ok
+cpan/Test-Simple/t/skip ....................................... ok
+cpan/Test-Simple/t/subtest/args ............................... ok
+cpan/Test-Simple/t/subtest/bail_out ........................... ok
+cpan/Test-Simple/t/subtest/basic .............................. ok
+cpan/Test-Simple/t/subtest/die ................................ ok
+cpan/Test-Simple/t/subtest/do ................................. ok
+cpan/Test-Simple/t/subtest/exceptions ......................... ok
+cpan/Test-Simple/t/subtest/fork ............................... ok
+cpan/Test-Simple/t/subtest/implicit_done ...................... ok
+cpan/Test-Simple/t/subtest/line_numbers ....................... ok
+cpan/Test-Simple/t/subtest/plan ............................... ok
+cpan/Test-Simple/t/subtest/predicate .......................... ok
+cpan/Test-Simple/t/subtest/singleton .......................... ok
+cpan/Test-Simple/t/subtest/threads ............................ ok
+cpan/Test-Simple/t/subtest/todo ............................... ok
+cpan/Test-Simple/t/subtest/wstat .............................. ok
+cpan/Test-Simple/t/tbm_doesnt_set_exported_to ................. ok
+cpan/Test-Simple/t/Tester/tbt_01basic ......................... ok
+cpan/Test-Simple/t/Tester/tbt_02fhrestore ..................... ok
+cpan/Test-Simple/t/Tester/tbt_03die ........................... ok
+cpan/Test-Simple/t/Tester/tbt_04line_num ...................... ok
+cpan/Test-Simple/t/Tester/tbt_05faildiag ...................... ok
+cpan/Test-Simple/t/Tester/tbt_06errormess ..................... ok
+cpan/Test-Simple/t/Tester/tbt_07args .......................... ok
+cpan/Test-Simple/t/Tester/tbt_08subtest ....................... ok
+cpan/Test-Simple/t/Tester/tbt_09do ............................ ok
+cpan/Test-Simple/t/threads .................................... ok
+cpan/Test-Simple/t/thread_taint ............................... ok
+cpan/Test-Simple/t/todo ....................................... ok
+cpan/Test-Simple/t/undef ...................................... ok
+cpan/Test-Simple/t/useing ..................................... ok
+cpan/Test-Simple/t/use_ok ..................................... ok
+cpan/Test-Simple/t/utf8 ....................................... ok
+cpan/Test-Simple/t/versions ................................... ok
+cpan/Test/t/05_about_verbose .................................. ok
+cpan/Test/t/fail .............................................. ok
+cpan/Test/t/mix ............................................... ok
+cpan/Test/t/multiline ......................................... ok
+cpan/Test/t/onfail ............................................ ok
+cpan/Test/t/qr ................................................ ok
+cpan/Test/t/skip .............................................. ok
+cpan/Test/t/success ........................................... ok
+cpan/Test/t/todo .............................................. ok
+cpan/Text-Balanced/t/01_compile ............................... ok
+cpan/Text-Balanced/t/02_extbrk ................................ ok
+cpan/Text-Balanced/t/03_extcbk ................................ ok
+cpan/Text-Balanced/t/04_extdel ................................ ok
+cpan/Text-Balanced/t/05_extmul ................................ ok
+cpan/Text-Balanced/t/06_extqlk ................................ ok
+cpan/Text-Balanced/t/07_exttag ................................ ok
+cpan/Text-Balanced/t/08_extvar ................................ ok
+cpan/Text-Balanced/t/09_gentag ................................ ok
+cpan/Text-ParseWords/t/ParseWords ............................. ok
+cpan/Text-ParseWords/t/taint .................................. ok
+cpan/Text-Tabs/t/37000 ........................................ ok
+cpan/Text-Tabs/t/39548 ........................................ ok
+cpan/Text-Tabs/t/79766 ........................................ ok
+cpan/Text-Tabs/t/belg4mit ..................................... ok
+cpan/Text-Tabs/t/dandv ........................................ ok
+cpan/Text-Tabs/t/fill ......................................... ok
+cpan/Text-Tabs/t/Jacobson2 .................................... ok
+cpan/Text-Tabs/t/Jacobson ..................................... ok
+cpan/Text-Tabs/t/Jochen ....................................... ok
+cpan/Text-Tabs/t/sep2 ......................................... ok
+cpan/Text-Tabs/t/sep .......................................... ok
+cpan/Text-Tabs/t/Tabs-ElCid ................................... ok
+cpan/Text-Tabs/t/tabs ......................................... ok
+cpan/Text-Tabs/t/Wrap-JLB ..................................... ok
+cpan/Text-Tabs/t/wrap_separator2 .............................. ok
+cpan/Text-Tabs/t/wrap ......................................... ok
+cpan/Tie-RefHash/t/rebless .................................... ok
+cpan/Tie-RefHash/t/refhash .................................... ok
+cpan/Tie-RefHash/t/storable ................................... ok
+cpan/Tie-RefHash/t/threaded ................................... ok
+cpan/Time-HiRes/t/alarm ....................................... ok
+cpan/Time-HiRes/t/clock ....................................... ok
+cpan/Time-HiRes/t/gettimeofday ................................ ok
+cpan/Time-HiRes/t/itimer ...................................... ok
+cpan/Time-HiRes/t/nanosleep ................................... ok
+cpan/Time-HiRes/t/sleep ....................................... ok
+cpan/Time-HiRes/t/stat ........................................ ok
+cpan/Time-HiRes/t/time ........................................ ok
+cpan/Time-HiRes/t/tv_interval ................................. ok
+cpan/Time-HiRes/t/ualarm ...................................... ok
+cpan/Time-HiRes/t/usleep ...................................... ok
+cpan/Time-Local/t/Local ....................................... ok
+cpan/Time-Piece/t/01base ...................................... ok
+cpan/Time-Piece/t/02core ...................................... ok
+cpan/Time-Piece/t/03compare ................................... ok
+cpan/Time-Piece/t/04mjd ....................................... ok
+cpan/Time-Piece/t/05overload .................................. ok
+cpan/Time-Piece/t/06subclass .................................. ok
+cpan/Time-Piece/t/07arith ..................................... ok
+cpan/Unicode-Collate/t/altern ................................. ok
+cpan/Unicode-Collate/t/backwds ................................ ok
+cpan/Unicode-Collate/t/cjk_b5 ................................. ok
+cpan/Unicode-Collate/t/cjk_gb ................................. ok
+cpan/Unicode-Collate/t/cjk_ja ................................. ok
+cpan/Unicode-Collate/t/cjk_ko ................................. ok
+cpan/Unicode-Collate/t/cjk_py ................................. ok
+cpan/Unicode-Collate/t/cjkrange ............................... ok
+cpan/Unicode-Collate/t/cjk_st ................................. ok
+cpan/Unicode-Collate/t/cjk_zy ................................. ok
+cpan/Unicode-Collate/t/compatui ............................... ok
+cpan/Unicode-Collate/t/contract ............................... ok
+cpan/Unicode-Collate/t/default ................................ ok
+cpan/Unicode-Collate/t/hangtype ............................... ok
+cpan/Unicode-Collate/t/hangul ................................. ok
+cpan/Unicode-Collate/t/ident .................................. ok
+cpan/Unicode-Collate/t/iglevel2 ............................... ok
+cpan/Unicode-Collate/t/ignor .................................. ok
+cpan/Unicode-Collate/t/illegalp ............................... ok
+cpan/Unicode-Collate/t/illegal ................................ ok
+cpan/Unicode-Collate/t/index .................................. ok
+cpan/Unicode-Collate/t/loc_af ................................. ok
+cpan/Unicode-Collate/t/loc_ar ................................. ok
+cpan/Unicode-Collate/t/loc_as ................................. ok
+cpan/Unicode-Collate/t/loc_az ................................. ok
+cpan/Unicode-Collate/t/loc_be ................................. ok
+cpan/Unicode-Collate/t/loc_bg ................................. ok
+cpan/Unicode-Collate/t/loc_bn ................................. ok
+cpan/Unicode-Collate/t/loc_bscy ............................... ok
+cpan/Unicode-Collate/t/loc_bs ................................. ok
+cpan/Unicode-Collate/t/loc_ca ................................. ok
+cpan/Unicode-Collate/t/loc_cjkc ............................... ok
+cpan/Unicode-Collate/t/loc_cjk ................................ ok
+cpan/Unicode-Collate/t/loc_cs ................................. ok
+cpan/Unicode-Collate/t/loc_cyrl ............................... ok
+cpan/Unicode-Collate/t/loc_cy ................................. ok
+cpan/Unicode-Collate/t/loc_da ................................. ok
+cpan/Unicode-Collate/t/loc_deph ............................... ok
+cpan/Unicode-Collate/t/loc_de ................................. ok
+cpan/Unicode-Collate/t/loc_ee ................................. ok
+cpan/Unicode-Collate/t/loc_eo ................................. ok
+cpan/Unicode-Collate/t/loc_es ................................. ok
+cpan/Unicode-Collate/t/loc_estr ............................... ok
+cpan/Unicode-Collate/t/loc_et ................................. ok
+cpan/Unicode-Collate/t/loc_fa ................................. ok
+cpan/Unicode-Collate/t/loc_fil ................................ ok
+cpan/Unicode-Collate/t/loc_fiph ............................... ok
+cpan/Unicode-Collate/t/loc_fi ................................. ok
+cpan/Unicode-Collate/t/loc_fo ................................. ok
+cpan/Unicode-Collate/t/loc_fr ................................. ok
+cpan/Unicode-Collate/t/loc_gu ................................. ok
+cpan/Unicode-Collate/t/loc_ha ................................. ok
+cpan/Unicode-Collate/t/loc_haw ................................ ok
+cpan/Unicode-Collate/t/loc_hi ................................. ok
+cpan/Unicode-Collate/t/loc_hr ................................. ok
+cpan/Unicode-Collate/t/loc_hu ................................. ok
+cpan/Unicode-Collate/t/loc_hy ................................. ok
+cpan/Unicode-Collate/t/loc_ig ................................. ok
+cpan/Unicode-Collate/t/loc_is ................................. ok
+cpan/Unicode-Collate/t/loc_jait ............................... ok
+cpan/Unicode-Collate/t/loc_japr ............................... ok
+cpan/Unicode-Collate/t/loc_ja ................................. ok
+cpan/Unicode-Collate/t/loc_kk ................................. ok
+cpan/Unicode-Collate/t/loc_kl ................................. ok
+cpan/Unicode-Collate/t/loc_kn ................................. ok
+cpan/Unicode-Collate/t/loc_kok ................................ ok
+cpan/Unicode-Collate/t/loc_ko ................................. ok
+cpan/Unicode-Collate/t/loc_ln ................................. ok
+cpan/Unicode-Collate/t/loc_lt ................................. ok
+cpan/Unicode-Collate/t/loc_lv ................................. ok
+cpan/Unicode-Collate/t/loc_mk ................................. ok
+cpan/Unicode-Collate/t/loc_ml ................................. ok
+cpan/Unicode-Collate/t/loc_mr ................................. ok
+cpan/Unicode-Collate/t/loc_mt ................................. ok
+cpan/Unicode-Collate/t/loc_nb ................................. ok
+cpan/Unicode-Collate/t/loc_nn ................................. ok
+cpan/Unicode-Collate/t/loc_nso ................................ ok
+cpan/Unicode-Collate/t/loc_om ................................. ok
+cpan/Unicode-Collate/t/loc_or ................................. ok
+cpan/Unicode-Collate/t/loc_pa ................................. ok
+cpan/Unicode-Collate/t/loc_pl ................................. ok
+cpan/Unicode-Collate/t/loc_ro ................................. ok
+cpan/Unicode-Collate/t/loc_ru ................................. ok
+cpan/Unicode-Collate/t/loc_sa ................................. ok
+cpan/Unicode-Collate/t/loc_se ................................. ok
+cpan/Unicode-Collate/t/loc_sidt ............................... ok
+cpan/Unicode-Collate/t/loc_si ................................. ok
+cpan/Unicode-Collate/t/loc_sk ................................. ok
+cpan/Unicode-Collate/t/loc_sl ................................. ok
+cpan/Unicode-Collate/t/loc_sq ................................. ok
+cpan/Unicode-Collate/t/loc_srla ............................... ok
+cpan/Unicode-Collate/t/loc_sr ................................. ok
+cpan/Unicode-Collate/t/loc_svrf ............................... ok
+cpan/Unicode-Collate/t/loc_sv ................................. ok
+cpan/Unicode-Collate/t/loc_sw ................................. ok
+cpan/Unicode-Collate/t/loc_ta ................................. ok
+cpan/Unicode-Collate/t/loc_test ............................... ok
+cpan/Unicode-Collate/t/loc_te ................................. ok
+cpan/Unicode-Collate/t/loc_th ................................. ok
+cpan/Unicode-Collate/t/loc_tn ................................. ok
+cpan/Unicode-Collate/t/loc_to ................................. ok
+cpan/Unicode-Collate/t/loc_tr ................................. ok
+cpan/Unicode-Collate/t/loc_uk ................................. ok
+cpan/Unicode-Collate/t/loc_ur ................................. ok
+cpan/Unicode-Collate/t/loc_vi ................................. ok
+cpan/Unicode-Collate/t/loc_wae ................................ ok
+cpan/Unicode-Collate/t/loc_wo ................................. ok
+cpan/Unicode-Collate/t/loc_yo ................................. ok
+cpan/Unicode-Collate/t/loc_zhb5 ............................... ok
+cpan/Unicode-Collate/t/loc_zhgb ............................... ok
+cpan/Unicode-Collate/t/loc_zhpy ............................... ok
+cpan/Unicode-Collate/t/loc_zhst ............................... ok
+cpan/Unicode-Collate/t/loc_zh ................................. ok
+cpan/Unicode-Collate/t/loc_zhzy ............................... ok
+cpan/Unicode-Collate/t/nonchar ................................ ok
+cpan/Unicode-Collate/t/normal ................................. ok
+cpan/Unicode-Collate/t/notable ................................ ok
+cpan/Unicode-Collate/t/overcjk0 ............................... ok
+cpan/Unicode-Collate/t/overcjk1 ............................... ok
+cpan/Unicode-Collate/t/override ............................... ok
+cpan/Unicode-Collate/t/rearrang ............................... ok
+cpan/Unicode-Collate/t/rewrite ................................ ok
+cpan/Unicode-Collate/t/test ................................... ok
+cpan/Unicode-Collate/t/trailwt ................................ ok
+cpan/Unicode-Collate/t/variable ............................... ok
+cpan/Unicode-Collate/t/version ................................ ok
+cpan/Unicode-Collate/t/view ................................... ok
+cpan/Unicode-Normalize/t/fcdc ................................. ok
+cpan/Unicode-Normalize/t/form ................................. ok
+cpan/Unicode-Normalize/t/func ................................. ok
+cpan/Unicode-Normalize/t/illegal .............................. ok
+cpan/Unicode-Normalize/t/norm ................................. ok
+cpan/Unicode-Normalize/t/null ................................. ok
+cpan/Unicode-Normalize/t/partial1 ............................. ok
+cpan/Unicode-Normalize/t/partial2 ............................. ok
+cpan/Unicode-Normalize/t/proto ................................ ok
+cpan/Unicode-Normalize/t/split ................................ ok
+cpan/Unicode-Normalize/t/test ................................. ok
+cpan/Unicode-Normalize/t/tie .................................. ok
+cpan/version/t/00impl-pp ...................................... ok
+cpan/version/t/01base ......................................... ok
+cpan/version/t/02derived ...................................... ok
+cpan/version/t/03require ...................................... ok
+cpan/version/t/04strict_lax ................................... ok
+cpan/version/t/05sigdie ....................................... ok
+cpan/version/t/06noop ......................................... ok
+cpan/version/t/07locale ....................................... ok
+cpan/version/t/08_corelist .................................... ok
+cpan/version/t/09_list_util ................................... ok
+dist/Attribute-Handlers/t/constants ........................... ok
+dist/Attribute-Handlers/t/data_convert ........................ ok
+dist/Attribute-Handlers/t/linerep ............................. ok
+dist/Attribute-Handlers/t/multi ............................... ok
+dist/autouse/t/autouse ........................................ ok
+dist/base/t/base-open-chunk ................................... ok
+dist/base/t/base-open-line .................................... ok
+dist/base/t/base .............................................. ok
+dist/base/t/compile-time ...................................... ok
+dist/base/t/core-global ....................................... ok
+dist/base/t/fields-5_6_0 ...................................... skipped
+dist/base/t/fields-5_8_0 ...................................... skipped
+dist/base/t/fields-base ....................................... ok
+dist/base/t/fields ............................................ ok
+dist/base/t/isa ............................................... ok
+dist/base/t/sigdie ............................................ ok
+dist/base/t/version ........................................... ok
+dist/base/t/warnings .......................................... ok
+dist/bignum/t/big_e_pi ........................................ ok
+dist/bignum/t/bigexp .......................................... ok
+dist/bignum/t/bigint .......................................... ok
+dist/bignum/t/bignum .......................................... ok
+dist/bignum/t/bigrat .......................................... ok
+dist/bignum/t/bii_e_pi ........................................ ok
+dist/bignum/t/biinfnan ........................................ ok
+dist/bignum/t/bir_e_pi ........................................ ok
+dist/bignum/t/bninfnan ........................................ ok
+dist/bignum/t/bn_lite ......................................... skipped
+dist/bignum/t/brinfnan ........................................ ok
+dist/bignum/t/br_lite ......................................... skipped
+dist/bignum/t/in_effect ....................................... ok
+dist/bignum/t/option_a ........................................ ok
+dist/bignum/t/option_l ........................................ ok
+dist/bignum/t/option_p ........................................ ok
+dist/bignum/t/overrides ....................................... ok
+dist/bignum/t/ratopt_a ........................................ ok
+dist/bignum/t/scope_f ......................................... ok
+dist/bignum/t/scope_i ......................................... ok
+dist/bignum/t/scope_r ......................................... ok
+dist/Carp/t/arg_regexp ........................................ ok
+dist/Carp/t/arg_string ........................................ ok
+dist/Carp/t/baduni ............................................ ok
+dist/Carp/t/baduni_warnings ................................... ok
+dist/Carp/t/Carp_overload ..................................... ok
+dist/Carp/t/Carp .............................................. ok
+dist/Carp/t/errno ............................................. ok
+dist/Carp/t/heavy_mismatch .................................... ok
+dist/Carp/t/heavy ............................................. ok
+dist/Carp/t/stash_deletion .................................... ok
+dist/Carp/t/swash ............................................. ok
+dist/Carp/t/vivify_gv ......................................... ok
+dist/Carp/t/vivify_stash ...................................... ok
+dist/Carp/t/with_warnings ..................................... ok
+dist/constant/t/constant ...................................... ok
+dist/constant/t/utf8 .......................................... ok
+dist/Data-Dumper/t/bless ...................................... ok
+dist/Data-Dumper/t/bless_var_method ........................... ok
+dist/Data-Dumper/t/bugs ....................................... ok
+dist/Data-Dumper/t/deparse .................................... ok
+dist/Data-Dumper/t/dumper ..................................... ok
+dist/Data-Dumper/t/dumpperl ................................... ok
+dist/Data-Dumper/t/freezer .................................... ok
+dist/Data-Dumper/t/freezer_useperl ............................ ok
+dist/Data-Dumper/t/indent ..................................... ok
+dist/Data-Dumper/t/misc ....................................... ok
+dist/Data-Dumper/t/names ...................................... ok
+dist/Data-Dumper/t/overload ................................... ok
+dist/Data-Dumper/t/pair ....................................... ok
+dist/Data-Dumper/t/perl-74170 ................................. ok
+dist/Data-Dumper/t/purity_deepcopy_maxdepth ................... ok
+dist/Data-Dumper/t/qr ......................................... ok
+dist/Data-Dumper/t/quotekeys .................................. ok
+dist/Data-Dumper/t/recurse .................................... ok
+dist/Data-Dumper/t/seen ....................................... ok
+dist/Data-Dumper/t/sortkeys ................................... ok
+dist/Data-Dumper/t/sparseseen ................................. ok
+dist/Data-Dumper/t/terse ...................................... ok
+dist/Data-Dumper/t/toaster .................................... ok
+dist/Data-Dumper/t/values ..................................... ok
+dist/Devel-SelfStubber/t/Devel-SelfStubber .................... ok
+dist/Dumpvalue/t/Dumpvalue .................................... ok
+dist/Env/t/array .............................................. ok
+dist/Env/t/env ................................................ ok
+dist/Exporter/t/Exporter ...................................... ok
+dist/Exporter/t/warn .......................................... ok
+dist/ExtUtils-CBuilder/t/00-have-compiler ..................... cc: Warning: Option -x passed to ld, if ld is invoked, ignored otherwise
+cc: No valid input files specified, no output generated
+ok
+dist/ExtUtils-CBuilder/t/01-basic ............................. ok
+dist/ExtUtils-CBuilder/t/02-link .............................. ok
+dist/ExtUtils-CBuilder/t/03-cplusplus ......................... cc: Warning: Option -x passed to ld, if ld is invoked, ignored otherwise
+cc: No valid input files specified, no output generated
+skipped
+dist/ExtUtils-CBuilder/t/04-base .............................. ok
+dist/ExtUtils-ParseXS/t/001-basic ............................. ok
+dist/ExtUtils-ParseXS/t/002-more .............................. ok
+dist/ExtUtils-ParseXS/t/003-usage ............................. ok
+dist/ExtUtils-ParseXS/t/101-standard_typemap_locations ........ ok
+dist/ExtUtils-ParseXS/t/102-trim_whitespace ................... ok
+dist/ExtUtils-ParseXS/t/103-tidy_type ......................... ok
+dist/ExtUtils-ParseXS/t/104-map_type .......................... ok
+dist/ExtUtils-ParseXS/t/105-valid_proto_string ................ ok
+dist/ExtUtils-ParseXS/t/106-process_typemaps .................. ok
+dist/ExtUtils-ParseXS/t/108-map_type .......................... ok
+dist/ExtUtils-ParseXS/t/109-standard_XS_defs .................. ok
+dist/ExtUtils-ParseXS/t/110-assign_func_args .................. ok
+dist/ExtUtils-ParseXS/t/111-analyze_preprocessor_statements ... ok
+dist/ExtUtils-ParseXS/t/112-set_cond .......................... ok
+dist/ExtUtils-ParseXS/t/113-check_cond_preproc_statements ..... ok
+dist/ExtUtils-ParseXS/t/114-blurt_death_Warn .................. ok
+dist/ExtUtils-ParseXS/t/115-avoid-noise ....................... ok
+dist/ExtUtils-ParseXS/t/501-t-compile ......................... ok
+dist/ExtUtils-ParseXS/t/510-t-bare ............................ ok
+dist/ExtUtils-ParseXS/t/511-t-whitespace ...................... ok
+dist/ExtUtils-ParseXS/t/512-t-file ............................ ok
+dist/ExtUtils-ParseXS/t/513-t-merge ........................... ok
+dist/ExtUtils-ParseXS/t/514-t-embed ........................... ok
+dist/ExtUtils-ParseXS/t/515-t-cmd ............................. ok
+dist/ExtUtils-ParseXS/t/516-t-clone ........................... ok
+dist/ExtUtils-ParseXS/t/517-t-targetable ...................... ok
+dist/ExtUtils-ParseXS/t/600-t-compat .......................... ok
+dist/Filter-Simple/t/code_no_comments ......................... ok
+dist/Filter-Simple/t/data ..................................... ok
+dist/Filter-Simple/t/export ................................... ok
+dist/Filter-Simple/t/filter_only .............................. ok
+dist/Filter-Simple/t/filter ................................... ok
+dist/Filter-Simple/t/import ................................... ok
+dist/I18N-Collate/t/I18N-Collate .............................. ok
+dist/I18N-LangTags/t/01_about_verbose ......................... ok
+dist/I18N-LangTags/t/05_main .................................. ok
+dist/I18N-LangTags/t/07_listy ................................. ok
+dist/I18N-LangTags/t/10_http .................................. ok
+dist/I18N-LangTags/t/20_locales ............................... ok
+dist/I18N-LangTags/t/50_super ................................. ok
+dist/I18N-LangTags/t/55_supers_strict ......................... ok
+dist/I18N-LangTags/t/80_all_env ............................... ok
+dist/if/t/if .................................................. ok
+dist/IO/t/cachepropagate-tcp .................................. ok
+dist/IO/t/cachepropagate-udp .................................. ok
+dist/IO/t/cachepropagate-unix ................................. ok
+dist/IO/t/io_const ............................................ ok
+dist/IO/t/io_dir .............................................. ok
+dist/IO/t/io_dup .............................................. ok
+dist/IO/t/io_file_export ...................................... ok
+dist/IO/t/io_file ............................................. ok
+dist/IO/t/io_linenum .......................................... ok
+dist/IO/t/io_multihomed ....................................... ok
+dist/IO/t/io_pipe ............................................. ok
+dist/IO/t/io_poll ............................................. ok
+dist/IO/t/io_sel .............................................. ok
+dist/IO/t/io_sock ............................................. ok
+dist/IO/t/IO .................................................. ok
+dist/IO/t/io_taint ............................................ ok
+dist/IO/t/io_tell ............................................. ok
+dist/IO/t/io_udp .............................................. ok
+dist/IO/t/io_unix ............................................. ok
+dist/IO/t/io_utf8argv ......................................... ok
+dist/IO/t/io_utf8 ............................................. ok
+dist/IO/t/io_xs ............................................... ok
+dist/lib/t/01lib .............................................. ok
+dist/Locale-Maketext/t/01_about_verbose ....................... ok
+dist/Locale-Maketext/t/04_use_external_lex_cache .............. ok
+dist/Locale-Maketext/t/09_compile ............................. ok
+dist/Locale-Maketext/t/10_make ................................ ok
+dist/Locale-Maketext/t/20_get ................................. ok
+dist/Locale-Maketext/t/30_eval_dollar_at ...................... ok
+dist/Locale-Maketext/t/40_super ............................... ok
+dist/Locale-Maketext/t/50_super ............................... ok
+dist/Locale-Maketext/t/60_super ............................... ok
+dist/Locale-Maketext/t/70_fail_auto ........................... ok
+dist/Locale-Maketext/t/90_utf8 ................................ ok
+dist/Locale-Maketext/t/91_backslash ........................... ok
+dist/Math-BigInt-FastCalc/t/bigintfc .......................... ok
+dist/Math-BigInt-FastCalc/t/bootstrap ......................... ok
+dist/Math-BigInt-FastCalc/t/leak .............................. ok
+dist/Math-BigInt-FastCalc/t/mbi_rand .......................... ok
+dist/Math-BigInt/t/bare_mbf ................................... ok
+dist/Math-BigInt/t/bare_mbi ................................... ok
+dist/Math-BigInt/t/bare_mif ................................... ok
+dist/Math-BigInt/t/bigfltpm ................................... ok
+dist/Math-BigInt/t/bigintc .................................... ok
+dist/Math-BigInt/t/bigintpm ................................... ok
+dist/Math-BigInt/t/bigints .................................... ok
+dist/Math-BigInt/t/biglog ..................................... ok
+dist/Math-BigInt/t/big_pi_e ................................... ok
+dist/Math-BigInt/t/bigroot .................................... ok
+dist/Math-BigInt/t/calling .................................... ok
+dist/Math-BigInt/t/config ..................................... ok
+dist/Math-BigInt/t/constant ................................... ok
+dist/Math-BigInt/t/const_mbf .................................. ok
+dist/Math-BigInt/t/downgrade .................................. ok
+dist/Math-BigInt/t/_e_math .................................... ok
+dist/Math-BigInt/t/inf_nan .................................... ok
+dist/Math-BigInt/t/isa ........................................ ok
+dist/Math-BigInt/t/lib_load ................................... ok
+dist/Math-BigInt/t/mbf_ali .................................... ok
+dist/Math-BigInt/t/mbi_ali .................................... ok
+dist/Math-BigInt/t/mbimbf ..................................... ok
+dist/Math-BigInt/t/mbi_rand ................................... ok
+dist/Math-BigInt/t/nan_cmp .................................... ok
+dist/Math-BigInt/t/new_overloaded ............................. ok
+dist/Math-BigInt/t/req_mbf0 ................................... ok
+dist/Math-BigInt/t/req_mbf1 ................................... ok
+dist/Math-BigInt/t/req_mbfa ................................... ok
+dist/Math-BigInt/t/req_mbfi ................................... ok
+dist/Math-BigInt/t/req_mbfn ................................... ok
+dist/Math-BigInt/t/req_mbfw ................................... ok
+dist/Math-BigInt/t/require .................................... ok
+dist/Math-BigInt/t/round ...................................... ok
+dist/Math-BigInt/t/rt-16221 ................................... ok
+dist/Math-BigInt/t/sub_ali .................................... ok
+dist/Math-BigInt/t/sub_mbf .................................... ok
+dist/Math-BigInt/t/sub_mbi .................................... ok
+dist/Math-BigInt/t/sub_mif .................................... ok
+dist/Math-BigInt/t/trap ....................................... ok
+dist/Math-BigInt/t/upgrade2 ................................... ok
+dist/Math-BigInt/t/upgradef ................................... ok
+dist/Math-BigInt/t/upgrade .................................... ok
+dist/Math-BigInt/t/use_lib1 ................................... ok
+dist/Math-BigInt/t/use_lib2 ................................... ok
+dist/Math-BigInt/t/use_lib3 ................................... ok
+dist/Math-BigInt/t/use_lib4 ................................... ok
+dist/Math-BigInt/t/use_mbfw ................................... ok
+dist/Math-BigInt/t/use ........................................ ok
+dist/Math-BigInt/t/with_sub ................................... ok
+dist/Math-BigRat/t/big_ap ..................................... ok
+dist/Math-BigRat/t/bigfltrt ................................... ok
+dist/Math-BigRat/t/biglog ..................................... ok
+dist/Math-BigRat/t/bigratpm ................................... ok
+dist/Math-BigRat/t/bigrat ..................................... ok
+dist/Math-BigRat/t/bigratup ................................... ok
+dist/Math-BigRat/t/bigroot .................................... ok
+dist/Math-BigRat/t/bitwise .................................... ok
+dist/Math-BigRat/t/hang ....................................... ok
+dist/Math-BigRat/t/requirer ................................... ok
+dist/Math-BigRat/t/trap ....................................... ok
+dist/Module-CoreList/t/corelist ............................... ok
+dist/Module-CoreList/t/deprecated ............................. ok
+dist/Module-CoreList/t/find_modules ........................... ok
+dist/Module-CoreList/t/is_core ................................ ok
+dist/Module-CoreList/t/pod .................................... skipped
+dist/Module-CoreList/t/utils .................................. ok
+dist/Net-Ping/t/100_load ...................................... ok
+dist/Net-Ping/t/110_icmp_inst ................................. ok
+dist/Net-Ping/t/120_udp_inst .................................. ok
+dist/Net-Ping/t/130_tcp_inst .................................. ok
+dist/Net-Ping/t/140_stream_inst ............................... ok
+dist/Net-Ping/t/150_syn_inst .................................. ok
+dist/Net-Ping/t/190_alarm ..................................... skipped
+dist/Net-Ping/t/200_ping_tcp .................................. skipped
+dist/Net-Ping/t/250_ping_hires ................................ skipped
+dist/Net-Ping/t/300_ping_stream ............................... skipped
+dist/Net-Ping/t/400_ping_syn .................................. skipped
+dist/Net-Ping/t/410_syn_host .................................. skipped
+dist/Net-Ping/t/450_service ................................... ok
+dist/Net-Ping/t/500_ping_icmp ................................. ok
+dist/Net-Ping/t/510_ping_udp .................................. ok
+dist/Net-Ping/t/520_icmp_ttl .................................. ok
+dist/PathTools/t/abs2rel ...................................... ok
+dist/PathTools/t/crossplatform ................................ ok
+dist/PathTools/t/cwd .......................................... ok
+dist/PathTools/t/Functions .................................... ok
+dist/PathTools/t/rel2abs2rel .................................. ok
+dist/PathTools/t/Spec ......................................... ok
+dist/PathTools/t/Spec-taint ................................... ok
+dist/PathTools/t/taint ........................................ ok
+dist/PathTools/t/tmpdir ....................................... ok
+dist/PathTools/t/win32 ........................................ skipped
+dist/Safe/t/safe1 ............................................. ok
+dist/Safe/t/safe2 ............................................. ok
+dist/Safe/t/safe3 ............................................. ok
+dist/Safe/t/safeload .......................................... ok
+dist/Safe/t/safenamedcap ...................................... ok
+dist/Safe/t/safeops ........................................... ok
+dist/Safe/t/saferegexp ........................................ ok
+dist/Safe/t/safesecurity ...................................... ok
+dist/Safe/t/safesort .......................................... ok
+dist/Safe/t/safeuniversal ..................................... ok
+dist/Safe/t/safeutf8 .......................................... ok
+dist/Safe/t/safewrap .......................................... ok
+dist/Search-Dict/t/Dict ....................................... ok
+dist/SelfLoader/t/01SelfLoader ................................ ok
+dist/SelfLoader/t/02SelfLoader-buggy .......................... ok
+dist/SelfLoader/t/03taint ..................................... ok
+dist/Storable/t/attach_errors ................................. ok
+dist/Storable/t/attach_singleton .............................. ok
+dist/Storable/t/attach ........................................ ok
+dist/Storable/t/blessed ....................................... ok
+dist/Storable/t/canonical ..................................... ok
+dist/Storable/t/circular_hook ................................. ok
+dist/Storable/t/code .......................................... ok
+dist/Storable/t/compat01 ...................................... skipped
+dist/Storable/t/compat06 ...................................... ok
+dist/Storable/t/croak ......................................... ok
+dist/Storable/t/dclone ........................................ ok
+dist/Storable/t/destroy ....................................... ok
+dist/Storable/t/downgrade ..................................... ok
+dist/Storable/t/file_magic .................................... ok
+dist/Storable/t/forgive ....................................... ok
+dist/Storable/t/freeze ........................................ ok
+dist/Storable/t/integer ....................................... ok
+dist/Storable/t/interwork56 ................................... skipped
+dist/Storable/t/just_plain_nasty .............................. ok
+dist/Storable/t/leaks ......................................... skipped
+dist/Storable/t/lock .......................................... ok
+dist/Storable/t/malice ........................................ ok
+dist/Storable/t/overload ...................................... ok
+dist/Storable/t/recurse ....................................... ok
+dist/Storable/t/restrict ...................................... ok
+dist/Storable/t/retrieve ...................................... ok
+dist/Storable/t/robust ........................................ ok
+dist/Storable/t/sig_die ....................................... ok
+dist/Storable/t/store ......................................... ok
+dist/Storable/t/threads ....................................... ok
+dist/Storable/t/tied_hook ..................................... ok
+dist/Storable/t/tied_items .................................... ok
+dist/Storable/t/tied_store .................................... ok
+dist/Storable/t/tied .......................................... ok
+dist/Storable/t/utf8hash ...................................... ok
+dist/Storable/t/utf8 .......................................... ok
+dist/Storable/t/weak .......................................... ok
+dist/Term-Complete/t/Complete ................................. ok
+dist/Term-ReadLine/t/AE ....................................... skipped
+dist/Term-ReadLine/t/AETk ..................................... skipped
+dist/Term-ReadLine/t/ReadLine ................................. ok
+dist/Term-ReadLine/t/Tk ....................................... skipped
+dist/Text-Abbrev/t/Abbrev ..................................... ok
+dist/Thread-Queue/t/01_basic .................................. ok
+dist/Thread-Queue/t/02_refs ................................... ok
+dist/Thread-Queue/t/03_peek ................................... ok
+dist/Thread-Queue/t/04_errs ................................... ok
+dist/Thread-Queue/t/05_extract ................................ ok
+dist/Thread-Queue/t/06_insert ................................. ok
+dist/Thread-Queue/t/07_lock ................................... ok
+dist/Thread-Queue/t/08_nothreads .............................. ok
+dist/Thread-Queue/t/09_ended .................................. ok
+dist/Thread-Queue/t/10_timed .................................. ok
+dist/Thread-Semaphore/t/01_basic .............................. ok
+dist/Thread-Semaphore/t/02_errs ............................... ok
+dist/Thread-Semaphore/t/03_nothreads .......................... ok
+dist/Thread-Semaphore/t/04_nonblocking ........................ ok
+dist/Thread-Semaphore/t/05_force .............................. ok
+dist/threads-shared/t/0nothread ............................... ok
+dist/threads-shared/t/av_refs ................................. ok
+dist/threads-shared/t/av_simple ............................... ok
+dist/threads-shared/t/blessed ................................. ok
+dist/threads-shared/t/clone ................................... ok
+dist/threads-shared/t/cond .................................... ok
+dist/threads-shared/t/disabled ................................ ok
+dist/threads-shared/t/dualvar ................................. ok
+dist/threads-shared/t/hv_refs ................................. ok
+dist/threads-shared/t/hv_simple ............................... ok
+dist/threads-shared/t/no_share ................................ ok
+dist/threads-shared/t/object2 ................................. ok
+dist/threads-shared/t/object .................................. ok
+dist/threads-shared/t/shared_attr ............................. ok
+dist/threads-shared/t/stress .................................. ok
+dist/threads-shared/t/sv_refs ................................. ok
+dist/threads-shared/t/sv_simple ............................... ok
+dist/threads-shared/t/utf8 .................................... ok
+dist/threads-shared/t/waithires ............................... ok
+dist/threads-shared/t/wait .................................... ok
+dist/threads/t/basic .......................................... ok
+dist/threads/t/blocks ......................................... ok
+dist/threads/t/context ........................................ ok
+dist/threads/t/end ............................................ ok
+dist/threads/t/err ............................................ ok
+dist/threads/t/exit ........................................... ok
+dist/threads/t/free2 .......................................... ok
+dist/threads/t/free ........................................... ok
+dist/threads/t/join ........................................... ok
+dist/threads/t/kill2 .......................................... ok
+dist/threads/t/kill ........................................... ok
+dist/threads/t/libc ........................................... ok
+dist/threads/t/list ........................................... ok
+dist/threads/t/no_threads ..................................... skipped
+dist/threads/t/problems ....................................... ok
+dist/threads/t/stack_env ...................................... ok
+dist/threads/t/stack .......................................... ok
+dist/threads/t/state .......................................... ok
+dist/threads/t/stress_cv ...................................... ok
+dist/threads/t/stress_re ...................................... ok
+dist/threads/t/stress_string .................................. ok
+dist/threads/t/thread ......................................... ok
+dist/Tie-File/t/00_version .................................... ok
+dist/Tie-File/t/01_gen ........................................ ok
+dist/Tie-File/t/02_fetchsize .................................. ok
+dist/Tie-File/t/03_longfetch .................................. ok
+dist/Tie-File/t/04_splice ..................................... ok
+dist/Tie-File/t/05_size ....................................... ok
+dist/Tie-File/t/06_fixrec ..................................... ok
+dist/Tie-File/t/07_rv_splice .................................. ok
+dist/Tie-File/t/08_ro ......................................... ok
+dist/Tie-File/t/09_gen_rs ..................................... ok
+dist/Tie-File/t/10_splice_rs .................................. ok
+dist/Tie-File/t/11_rv_splice_rs ............................... ok
+dist/Tie-File/t/12_longfetch_rs ............................... ok
+dist/Tie-File/t/13_size_rs .................................... ok
+dist/Tie-File/t/14_lock ....................................... ok
+dist/Tie-File/t/15_pushpop .................................... ok
+dist/Tie-File/t/16_handle ..................................... ok
+dist/Tie-File/t/17_misc_meth .................................. ok
+dist/Tie-File/t/18_rs_fixrec .................................. ok
+dist/Tie-File/t/19_cache ...................................... ok
+dist/Tie-File/t/20_cache_full ................................. ok
+dist/Tie-File/t/21_win32 ...................................... skipped
+dist/Tie-File/t/22_autochomp .................................. ok
+dist/Tie-File/t/23_rv_ac_splice ............................... ok
+dist/Tie-File/t/24_cache_loop ................................. ok
+dist/Tie-File/t/25_gen_nocache ................................ ok
+dist/Tie-File/t/26_twrite ..................................... ok
+dist/Tie-File/t/27_iwrite ..................................... ok
+dist/Tie-File/t/28_mtwrite .................................... ok
+dist/Tie-File/t/29a_upcopy .................................... ok
+dist/Tie-File/t/29_downcopy ................................... ok
+dist/Tie-File/t/30_defer ...................................... ok
+dist/Tie-File/t/31_autodefer .................................. ok
+dist/Tie-File/t/32_defer_misc ................................. ok
+dist/Tie-File/t/33_defer_vs ................................... ok
+dist/Tie-File/t/40_abs_cache .................................. ok
+dist/Tie-File/t/41_heap ....................................... ok
+dist/Tie-File/t/42_offset ..................................... ok
+dist/XSLoader/t/XSLoader ...................................... ok
+ext/arybase/t/aeach ........................................... ok
+ext/arybase/t/aelem ........................................... ok
+ext/arybase/t/akeys ........................................... ok
+ext/arybase/t/arybase ......................................... ok
+ext/arybase/t/aslice .......................................... ok
+ext/arybase/t/av2arylen ....................................... ok
+ext/arybase/t/index ........................................... ok
+ext/arybase/t/lslice .......................................... ok
+ext/arybase/t/pos ............................................. ok
+ext/arybase/t/scope ........................................... ok
+ext/arybase/t/splice .......................................... ok
+ext/arybase/t/substr .......................................... ok
+ext/B/t/b ..................................................... ok
+ext/B/t/concise ............................................... ok
+ext/B/t/concise-xs ............................................ ok
+ext/B/t/f_map ................................................. ok
+ext/B/t/f_sort ................................................ ok
+ext/B/t/optree_check .......................................... ok
+ext/B/t/optree_concise ........................................ ok
+ext/B/t/optree_constants ...................................... ok
+ext/B/t/optree_misc ........................................... ok
+ext/B/t/optree_samples ........................................ ok
+ext/B/t/optree_sort ........................................... ok
+ext/B/t/optree_specials ....................................... ok
+ext/B/t/optree_varinit ........................................ ok
+ext/B/t/o ..................................................... ok
+ext/B/t/pragma ................................................ ok
+ext/B/t/showlex ............................................... ok
+ext/B/t/terse ................................................. ok
+ext/B/t/walkoptree ............................................ ok
+ext/B/t/xref .................................................. ok
+ext/Devel-Peek/t/Peek ......................................... ok
+ext/DynaLoader/t/DynaLoader ................................... ok
+ext/Errno/t/Errno ............................................. ok
+ext/Fcntl/t/autoload .......................................... ok
+ext/Fcntl/t/fcntl ............................................. ok
+ext/Fcntl/t/mode .............................................. ok
+ext/Fcntl/t/syslfs ............................................ skipped
+ext/FileCache/t/01open ........................................ ok
+ext/FileCache/t/02maxopen ..................................... ok
+ext/FileCache/t/03append ...................................... ok
+ext/FileCache/t/04twoarg ...................................... ok
+ext/FileCache/t/05override .................................... ok
+ext/FileCache/t/06export ...................................... ok
+ext/FileCache/t/07noimport .................................... ok
+ext/File-DosGlob/t/DosGlob .................................... ok
+ext/File-Find/t/find .......................................... ok
+ext/File-Find/t/taint ......................................... ok
+ext/File-Glob/t/basic ......................................... ok
+ext/File-Glob/t/case .......................................... ok
+ext/File-Glob/t/global ........................................ ok
+ext/File-Glob/t/rt114984 ...................................... ok
+ext/File-Glob/t/taint ......................................... ok
+ext/File-Glob/t/threads ....................................... ok
+ext/GDBM_File/t/fatal ......................................... ok
+ext/GDBM_File/t/gdbm .......................................... ok
+ext/Hash-Util-FieldHash/t/01_load ............................. ok
+ext/Hash-Util-FieldHash/t/02_function ......................... ok
+ext/Hash-Util-FieldHash/t/03_class ............................ ok
+ext/Hash-Util-FieldHash/t/04_thread ........................... ok
+ext/Hash-Util-FieldHash/t/05_perlhook ......................... ok
+ext/Hash-Util-FieldHash/t/11_hashassign ....................... ok
+ext/Hash-Util-FieldHash/t/12_hashwarn ......................... ok
+ext/Hash-Util/t/Util .......................................... ok
+ext/I18N-Langinfo/t/Langinfo .................................. ok
+ext/IPC-Open3/t/fd ............................................ ok
+ext/IPC-Open3/t/IPC-Open2 ..................................... ok
+ext/IPC-Open3/t/IPC-Open3 ..................................... ok
+ext/NDBM_File/t/ndbm .......................................... ok
+ext/ODBM_File/t/odbm .......................................... ok
+ext/Opcode/t/Opcode ........................................... ok
+ext/Opcode/t/ops .............................................. ok
+ext/PerlIO-encoding/t/encoding ................................ ok
+ext/PerlIO-encoding/t/fallback ................................ ok
+ext/PerlIO-encoding/t/nolooping ............................... ok
+ext/PerlIO-scalar/t/scalar .................................... ok
+ext/PerlIO-scalar/t/scalar_ungetc ............................. ok
+ext/PerlIO-via/t/via .......................................... ok
+ext/Pod-Functions/t/Functions ................................. ok
+ext/Pod-Html/t/anchorify ...................................... ok
+ext/Pod-Html/t/cache .......................................... ok
+ext/Pod-Html/t/crossref2 ...................................... ok
+ext/Pod-Html/t/crossref3 ...................................... ok
+ext/Pod-Html/t/crossref ....................................... ok
+ext/Pod-Html/t/eol ............................................ ok
+ext/Pod-Html/t/feature2 ....................................... ok
+ext/Pod-Html/t/feature ........................................ ok
+ext/Pod-Html/t/htmldir1 ....................................... ok
+ext/Pod-Html/t/htmldir2 ....................................... ok
+ext/Pod-Html/t/htmldir3 ....................................... ok
+ext/Pod-Html/t/htmldir4 ....................................... ok
+ext/Pod-Html/t/htmldir5 ....................................... ok
+ext/Pod-Html/t/htmlescp ....................................... ok
+ext/Pod-Html/t/htmllink ....................................... ok
+ext/Pod-Html/t/htmlview ....................................... ok
+ext/Pod-Html/t/poderr ......................................... ok
+ext/Pod-Html/t/podnoerr ....................................... ok
+ext/POSIX/t/export ............................................ ok
+ext/POSIX/t/is ................................................ ok
+ext/POSIX/t/math .............................................. ok
+ext/POSIX/t/posix ............................................. ok
+ext/POSIX/t/sigaction ......................................... ok
+ext/POSIX/t/sigset ............................................ ok
+ext/POSIX/t/strerror_errno .................................... ok
+ext/POSIX/t/sysconf ........................................... ok
+ext/POSIX/t/taint ............................................. ok
+ext/POSIX/t/termios ........................................... ok
+ext/POSIX/t/time .............................................. ok
+ext/POSIX/t/unimplemented ..................................... ok
+ext/POSIX/t/usage ............................................. ok
+ext/POSIX/t/waitpid ........................................... ok
+ext/POSIX/t/wrappers .......................................... ok
+ext/re/t/lexical_debug ........................................ ok
+ext/re/t/qr ................................................... ok
+ext/re/t/reflags .............................................. ok
+ext/re/t/re_funcs ............................................. ok
+ext/re/t/re_funcs_u ........................................... ok
+ext/re/t/regop ................................................ ok
+ext/re/t/re ................................................... ok
+ext/re/t/strict ............................................... ok
+ext/SDBM_File/t/constants ..................................... ok
+ext/SDBM_File/t/prep .......................................... ok
+ext/SDBM_File/t/sdbm .......................................... ok
+ext/Sys-Hostname/t/Hostname ................................... ok
+ext/Tie-Hash-NamedCapture/t/tiehash ........................... ok
+ext/Tie-Memoize/t/Tie-Memoize ................................. ok
+ext/XS-APItest/t/addissub ..................................... ok
+ext/XS-APItest/t/arrayexpr .................................... ok
+ext/XS-APItest/t/autoload ..................................... ok
+ext/XS-APItest/t/blockasexpr .................................. ok
+ext/XS-APItest/t/blockhooks-csc ............................... ok
+ext/XS-APItest/t/blockhooks ................................... ok
+ext/XS-APItest/t/call_checker ................................. ok
+ext/XS-APItest/t/caller ....................................... ok
+ext/XS-APItest/t/callregexec .................................. ok
+ext/XS-APItest/t/call ......................................... ok
+ext/XS-APItest/t/check_warnings ............................... ok
+ext/XS-APItest/t/cleanup ...................................... ok
+ext/XS-APItest/t/clone-with-stack ............................. ok
+ext/XS-APItest/t/cophh ........................................ ok
+ext/XS-APItest/t/coplabel ..................................... ok
+ext/XS-APItest/t/copstash ..................................... ok
+ext/XS-APItest/t/copyhints .................................... ok
+ext/XS-APItest/t/customop ..................................... ok
+ext/XS-APItest/t/cv_name ...................................... ok
+ext/XS-APItest/t/eval-filter .................................. ok
+ext/XS-APItest/t/exception .................................... ok
+ext/XS-APItest/t/fetch_pad_names .............................. ok
+ext/XS-APItest/t/gotosub ...................................... ok
+ext/XS-APItest/t/grok ......................................... ok
+ext/XS-APItest/t/gv_autoload4 ................................. ok
+ext/XS-APItest/t/gv_const_sv .................................. ok
+ext/XS-APItest/t/gv_fetchmeth_autoload ........................ ok
+ext/XS-APItest/t/gv_fetchmethod_flags ......................... ok
+ext/XS-APItest/t/gv_fetchmeth ................................. ok
+ext/XS-APItest/t/gv_init ...................................... ok
+ext/XS-APItest/t/handy ........................................ ok
+ext/XS-APItest/t/hash ......................................... ok
+ext/XS-APItest/t/join_with_space .............................. ok
+ext/XS-APItest/t/keyword_multiline ............................ ok
+ext/XS-APItest/t/keyword_plugin ............................... ok
+ext/XS-APItest/t/labelconst ................................... ok
+ext/XS-APItest/t/lexsub ....................................... ok
+ext/XS-APItest/t/locale ....................................... ok
+ext/XS-APItest/t/loopblock .................................... ok
+ext/XS-APItest/t/looprest ..................................... ok
+ext/XS-APItest/t/lvalue ....................................... ok
+ext/XS-APItest/t/magic_chain .................................. ok
+ext/XS-APItest/t/magic ........................................ ok
+ext/XS-APItest/t/mro .......................................... ok
+ext/XS-APItest/t/multicall .................................... ok
+ext/XS-APItest/t/my_cxt ....................................... ok
+ext/XS-APItest/t/my_exit ...................................... ok
+ext/XS-APItest/t/newCONSTSUB .................................. ok
+ext/XS-APItest/t/newDEFSVOP ................................... ok
+ext/XS-APItest/t/op_contextualize ............................. ok
+ext/XS-APItest/t/op_list ...................................... ok
+ext/XS-APItest/t/op ........................................... ok
+ext/XS-APItest/t/overload ..................................... ok
+ext/XS-APItest/t/pad_scalar ................................... ok
+ext/XS-APItest/t/peep ......................................... ok
+ext/XS-APItest/t/pmflag ....................................... ok
+ext/XS-APItest/t/postinc ...................................... ok
+ext/XS-APItest/t/printf ....................................... ok
+ext/XS-APItest/t/ptr_table .................................... ok
+ext/XS-APItest/t/push ......................................... ok
+ext/XS-APItest/t/refs ......................................... ok
+ext/XS-APItest/t/rmagical ..................................... ok
+ext/XS-APItest/t/rv2cv_op_cv .................................. ok
+ext/XS-APItest/t/savehints .................................... ok
+ext/XS-APItest/t/scopelessblock ............................... ok
+ext/XS-APItest/t/sort ......................................... ok
+ext/XS-APItest/t/stmtasexpr ................................... ok
+ext/XS-APItest/t/stmtsasexpr .................................. ok
+ext/XS-APItest/t/stuff_modify_bug ............................. ok
+ext/XS-APItest/t/stuff_svcur_bug .............................. ok
+ext/XS-APItest/t/subcall ...................................... ok
+ext/XS-APItest/t/svcat ........................................ ok
+ext/XS-APItest/t/sviscow ...................................... ok
+ext/XS-APItest/t/svpeek ....................................... ok
+ext/XS-APItest/t/svpv_magic ................................... ok
+ext/XS-APItest/t/svpv ......................................... ok
+ext/XS-APItest/t/svsetsv ...................................... ok
+ext/XS-APItest/t/swaplabel .................................... ok
+ext/XS-APItest/t/swaptwostmts ................................. ok
+ext/XS-APItest/t/sym-hook ..................................... ok
+ext/XS-APItest/t/synthetic_scope .............................. ok
+ext/XS-APItest/t/temp_lv_sub .................................. ok
+ext/XS-APItest/t/underscore_length ............................ ok
+ext/XS-APItest/t/utf16_to_utf8 ................................ ok
+ext/XS-APItest/t/utf8 ......................................... ok
+ext/XS-APItest/t/weaken ....................................... ok
+ext/XS-APItest/t/whichsig ..................................... ok
+ext/XS-APItest/t/xs_special_subs_require ...................... ok
+ext/XS-APItest/t/xs_special_subs .............................. ok
+ext/XS-APItest/t/xsub_h ....................................... ok
+ext/XS-Typemap/t/Typemap ...................................... ok
+lib/AnyDBM_File ............................................... ok
+lib/B/Deparse-core ............................................ ok
+lib/B/Deparse-subclass ........................................ ok
+lib/B/Deparse ................................................. ok
+lib/Benchmark ................................................. ok
+lib/blib ...................................................... ok
+lib/bytes ..................................................... ok
+lib/charnames ................................................. ok
+lib/Class/Struct .............................................. ok
+lib/Config/Extensions ......................................... ok
+lib/Config .................................................... ok
+lib/DBM_Filter/t/01error ...................................... ok
+lib/DBM_Filter/t/02core ....................................... ok
+lib/DBM_Filter/t/compress ..................................... ok
+lib/DBM_Filter/t/encode ....................................... ok
+lib/DBM_Filter/t/int32 ........................................ ok
+lib/DBM_Filter/t/null ......................................... ok
+lib/DBM_Filter/t/utf8 ......................................... ok
+lib/DB ........................................................ ok
+lib/diagnostics ............................................... ok
+lib/DirHandle ................................................. ok
+lib/dumpvar ................................................... ok
+lib/English ................................................... ok
+lib/ExtUtils/t/Embed .......................................... ok
+lib/feature ................................................... ok
+lib/feature/unicode_strings ................................... ok
+lib/File/Basename ............................................. ok
+lib/File/Compare .............................................. ok
+lib/File/Copy ................................................. ok
+lib/FileHandle ................................................ ok
+lib/File/stat-7896 ............................................ ok
+lib/File/stat ................................................. ok
+lib/filetest .................................................. ok
+lib/FindBin ................................................... ok
+lib/Getopt/Std ................................................ ok
+lib/h2ph ...................................................... ok
+lib/h2xs ...................................................... ok
+lib/integer ................................................... ok
+lib/Internals ................................................. ok
+lib/less ...................................................... ok
+lib/locale .................................................... Argument "ð" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ð" isn't numeric in numeric ne (!=) at ../lib/locale.t line 1373.
+Argument "ñ" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ò" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ó" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ô" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "õ" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ö" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "÷" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ø" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ù" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+ok
+lib/meta_notation ............................................. ok
+lib/Net/hostent ............................................... ok
+lib/Net/netent ................................................ ok
+lib/Net/protoent .............................................. ok
+lib/Net/servent ............................................... ok
+lib/open ...................................................... ok
+lib/overload64 ................................................ ok
+lib/overloading ............................................... ok
+lib/overload .................................................. ok
+lib/perl5db ................................................... ok
+lib/Pod/t/InputObjects ........................................ ok
+lib/Pod/t/Select .............................................. ok
+lib/Pod/t/Usage ............................................... ok
+lib/Pod/t/utils ............................................... ok
+lib/SelectSaver ............................................... ok
+lib/sigtrap ................................................... ok
+lib/sort ...................................................... ok
+lib/strict .................................................... ok
+lib/subs ...................................................... ok
+lib/Symbol .................................................... ok
+lib/Thread .................................................... ok
+lib/Tie/Array/push ............................................ ok
+lib/Tie/Array/splice .......................................... ok
+lib/Tie/Array/stdpush ......................................... ok
+lib/Tie/Array/std ............................................. ok
+lib/Tie/ExtraHash ............................................. ok
+lib/Tie/Handle/stdhandle_from_handle .......................... ok
+lib/Tie/Handle/stdhandle ...................................... ok
+lib/Tie/Hash .................................................. ok
+lib/Tie/Scalar ................................................ ok
+lib/Tie/SubstrHash ............................................ ok
+lib/Time/gmtime ............................................... ok
+lib/Time/localtime ............................................ ok
+lib/Unicode/UCD ............................................... ok
+lib/User/grent ................................................ ok
+lib/User/pwent ................................................ ok
+lib/utf8 ...................................................... ok
+lib/vars_carp ................................................. ok
+lib/vars ...................................................... ok
+lib/vmsish .................................................... ok
+lib/warnings .................................................. ok
+All tests successful.
+make[1]: Leaving directory '$(@D)'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl/perl522/test/results-sparc.master	Fri Mar 04 13:37:19 2016 -0800
@@ -0,0 +1,2406 @@
+t/base/cond ................................................... ok
+t/base/if ..................................................... ok
+t/base/lex .................................................... ok
+t/base/num .................................................... ok
+t/base/pat .................................................... ok
+t/base/rs ..................................................... ok
+t/base/term ................................................... ok
+t/base/translate .............................................. ok
+t/base/while .................................................. ok
+t/comp/bproto ................................................. ok
+t/comp/cmdopt ................................................. ok
+t/comp/colon .................................................. ok
+t/comp/decl ................................................... ok
+t/comp/final_line_num ......................................... ok
+t/comp/fold ................................................... ok
+t/comp/form_scope ............................................. ok
+t/comp/hints .................................................. ok
+t/comp/line_debug ............................................. ok
+t/comp/multiline .............................................. ok
+t/comp/opsubs ................................................. ok
+t/comp/our .................................................... ok
+t/comp/package ................................................ ok
+t/comp/package_block .......................................... ok
+t/comp/parser ................................................. ok
+t/comp/proto .................................................. ok
+t/comp/redef .................................................. ok
+t/comp/require ................................................ ok
+t/comp/retainedlines .......................................... ok
+t/comp/term ................................................... ok
+t/comp/uproto ................................................. ok
+t/comp/use .................................................... ok
+t/comp/utf .................................................... ok
+t/run/cloexec ................................................. ok
+t/run/dtrace .................................................. skipped
+t/run/exit .................................................... ok
+t/run/fresh_perl .............................................. ok
+t/run/locale .................................................. ok
+t/run/noswitch ................................................ ok
+t/run/runenv .................................................. ok
+t/run/script .................................................. ok
+t/run/switch0 ................................................. ok
+t/run/switchC ................................................. ok
+t/run/switchF ................................................. ok
+t/run/switchF1 ................................................ ok
+t/run/switchF2 ................................................ ok
+t/run/switchI ................................................. ok
+t/run/switchM ................................................. ok
+t/run/switcha ................................................. ok
+t/run/switchd-78586 ........................................... ok
+t/run/switchd ................................................. ok
+t/run/switches ................................................ ok
+t/run/switchn ................................................. ok
+t/run/switchp ................................................. ok
+t/run/switcht ................................................. ok
+t/run/switchx ................................................. ok
+t/cmd/elsif ................................................... ok
+t/cmd/for ..................................................... ok
+t/cmd/mod ..................................................... ok
+t/cmd/subval .................................................. ok
+t/cmd/switch .................................................. ok
+t/io/argv ..................................................... ok
+t/io/binmode .................................................. ok
+t/io/bom ...................................................... ok
+t/io/closepid ................................................. ok
+t/io/crlf ..................................................... ok
+t/io/crlf_through ............................................. ok
+t/io/data ..................................................... ok
+t/io/defout ................................................... ok
+t/io/dup ...................................................... ok
+t/io/eintr .................................................... skipped
+t/io/eintr_print .............................................. skipped
+t/io/errno .................................................... ok
+t/io/errnosig ................................................. ok
+t/io/fflush ................................................... ok
+t/io/fs ....................................................... ok
+t/io/inplace .................................................. ok
+t/io/iofile ................................................... ok
+t/io/iprefix .................................................. ok
+t/io/layers ................................................... ok
+t/io/nargv .................................................... ok
+t/io/open ..................................................... ok
+t/io/openpid .................................................. ok
+t/io/perlio ................................................... ok
+t/io/perlio_fail .............................................. ok
+t/io/perlio_leaks ............................................. ok
+t/io/perlio_open .............................................. ok
+t/io/pipe ..................................................... ok
+t/io/print .................................................... ok
+t/io/pvbm ..................................................... ok
+t/io/read ..................................................... ok
+t/io/say ...................................................... ok
+t/io/sem ...................................................... ok
+t/io/semctl ................................................... ok
+t/io/shm ...................................................... ok
+t/io/socket ................................................... ok
+t/io/tell ..................................................... ok
+t/io/through .................................................. ok
+t/io/utf8 ..................................................... ok
+t/re/charset .................................................. ok
+t/re/fold_grind ............................................... ok
+t/re/no_utf8_pm ............................................... ok
+t/re/overload ................................................. ok
+t/re/pat ...................................................... ok
+t/re/pat_advanced ............................................. ok
+t/re/pat_advanced_thr ......................................... ok
+t/re/pat_psycho ............................................... ok
+t/re/pat_psycho_thr ........................................... ok
+t/re/pat_re_eval .............................................. ok
+t/re/pat_re_eval_thr .......................................... ok
+t/re/pat_rt_report ............................................ ok
+t/re/pat_rt_report_thr ........................................ ok
+t/re/pat_special_cc ........................................... ok
+t/re/pat_special_cc_thr ....................................... ok
+t/re/pat_thr .................................................. ok
+t/re/pos ...................................................... ok
+t/re/qr-72922 ................................................. ok
+t/re/qr ....................................................... ok
+t/re/qr_gc .................................................... ok
+t/re/qrstack .................................................. ok
+t/re/recompile ................................................ ok
+t/re/reg_60508 ................................................ ok
+t/re/reg_email ................................................ ok
+t/re/reg_email_thr ............................................ ok
+t/re/reg_eval ................................................. ok
+t/re/reg_eval_scope ........................................... ok
+t/re/reg_fold ................................................. ok
+t/re/reg_mesg ................................................. ok
+t/re/reg_namedcapture ......................................... ok
+t/re/reg_nc_tie ............................................... ok
+t/re/reg_nocapture ............................................ ok
+t/re/reg_pmod ................................................. ok
+t/re/reg_posixcc .............................................. ok
+t/re/regex_sets ............................................... ok
+t/re/regex_sets_compat ........................................ ok
+t/re/regexp ................................................... ok
+t/re/regexp_noamp ............................................. ok
+t/re/regexp_notrie ............................................ ok
+t/re/regexp_qr ................................................ ok
+t/re/regexp_qr_embed .......................................... ok
+t/re/regexp_qr_embed_thr ...................................... ok
+t/re/regexp_trielist .......................................... ok
+t/re/regexp_unicode_prop ...................................... ok
+t/re/regexp_unicode_prop_thr .................................. ok
+t/re/rt122747 ................................................. ok
+t/re/rxcode ................................................... ok
+t/re/speed .................................................... ok
+t/re/speed_thr ................................................ ok
+t/re/subst .................................................... ok
+t/re/substT ................................................... ok
+t/re/subst_amp ................................................ ok
+t/re/subst_wamp ............................................... ok
+t/re/uniprops ................................................. ok
+t/opbasic/arith ............................................... ok
+t/opbasic/cmp ................................................. ok
+t/opbasic/concat .............................................. ok
+t/opbasic/magic_phase ......................................... ok
+t/opbasic/qq .................................................. ok
+t/op/64bitint ................................................. ok
+t/op/alarm .................................................... ok
+t/op/anonconst ................................................ ok
+t/op/anonsub .................................................. ok
+t/op/append ................................................... ok
+t/op/args ..................................................... ok
+t/op/array .................................................... ok
+t/op/array_base ............................................... ok
+t/op/assignwarn ............................................... ok
+t/op/attrhand ................................................. ok
+t/op/attrproto ................................................ ok
+t/op/attrs .................................................... ok
+t/op/auto ..................................................... ok
+t/op/avhv ..................................................... ok
+t/op/bless .................................................... ok
+t/op/blocks ................................................... ok
+t/op/bop ...................................................... ok
+t/op/caller ................................................... ok
+t/op/chars .................................................... ok
+t/op/chdir .................................................... ok
+t/op/chop ..................................................... ok
+t/op/chr ...................................................... ok
+t/op/closure .................................................. ok
+t/op/concat2 .................................................. ok
+t/op/cond ..................................................... ok
+t/op/const-optree ............................................. ok
+t/op/context .................................................. ok
+t/op/coreamp .................................................. ok
+t/op/coresubs ................................................. ok
+t/op/cproto ................................................... ok
+t/op/crypt .................................................... ok
+t/op/current_sub .............................................. ok
+t/op/dbm ...................................................... ok
+t/op/defined .................................................. ok
+t/op/defins ................................................... ok
+t/op/delete ................................................... ok
+t/op/die ...................................................... ok
+t/op/die_except ............................................... ok
+t/op/die_exit ................................................. ok
+t/op/die_keeperr .............................................. ok
+t/op/die_unwind ............................................... ok
+t/op/do ....................................................... ok
+t/op/dor ...................................................... ok
+t/op/dump ..................................................... skipped
+t/op/each ..................................................... ok
+t/op/each_array ............................................... ok
+t/op/eval ..................................................... ok
+t/op/evalbytes ................................................ ok
+t/op/exec ..................................................... ok
+t/op/exists_sub ............................................... ok
+t/op/exp ...................................................... ok
+t/op/fh ....................................................... ok
+t/op/filehandle ............................................... ok
+t/op/filetest ................................................. ok
+t/op/filetest_stack_ok ........................................ ok
+t/op/filetest_t ............................................... ok
+t/op/flip ..................................................... ok
+t/op/for ...................................................... ok
+t/op/fork ..................................................... ok
+t/op/fresh_perl_utf8 .......................................... ok
+t/op/getpid ................................................... ok
+t/op/getppid .................................................. ok
+t/op/glob ..................................................... ok
+t/op/gmagic ................................................... ok
+t/op/goto ..................................................... ok
+t/op/goto_xs .................................................. ok
+t/op/grent .................................................... ok
+t/op/grep ..................................................... ok
+t/op/groups ................................................... ok
+t/op/gv ....................................................... ok
+t/op/hash-rt85026 ............................................. ok
+t/op/hash ..................................................... ok
+t/op/hashassign ............................................... ok
+t/op/hashwarn ................................................. ok
+t/op/heredoc .................................................. ok
+t/op/hexfp .................................................... ok
+t/op/inc ...................................................... ok
+t/op/inccode-tie .............................................. ok
+t/op/inccode .................................................. ok
+t/op/incfilter ................................................ ok
+t/op/index .................................................... ok
+t/op/index_thr ................................................ ok
+t/op/infnan ................................................... ok
+t/op/int ...................................................... ok
+t/op/join ..................................................... ok
+t/op/kill0 .................................................... ok
+t/op/kvaslice ................................................. ok
+t/op/kvhslice ................................................. ok
+t/op/lc ....................................................... ok
+t/op/leaky-magic .............................................. ok
+t/op/length ................................................... ok
+t/op/lex ...................................................... ok
+t/op/lex_assign ............................................... ok
+t/op/lexsub ................................................... ok
+t/op/lfs ...................................................... ok
+t/op/list ..................................................... ok
+t/op/local .................................................... ok
+t/op/localref ................................................. ok
+t/op/lock ..................................................... ok
+t/op/loopctl .................................................. ok
+t/op/lop ...................................................... ok
+t/op/lvref .................................................... ok
+t/op/magic-27839 .............................................. ok
+t/op/magic .................................................... ok
+t/op/method ................................................... ok
+t/op/mkdir .................................................... ok
+t/op/multideref ............................................... ok
+t/op/my ....................................................... ok
+t/op/my_stash ................................................. ok
+t/op/mydef .................................................... ok
+t/op/negate ................................................... ok
+t/op/not ...................................................... ok
+t/op/numconvert ............................................... ok
+t/op/oct ...................................................... ok
+t/op/or ....................................................... ok
+t/op/ord ...................................................... ok
+t/op/overload_integer ......................................... ok
+t/op/override ................................................. ok
+t/op/pack ..................................................... ok
+t/op/packagev ................................................. ok
+t/op/pos ...................................................... ok
+t/op/postfixderef ............................................. ok
+t/op/pow ...................................................... ok
+t/op/print .................................................... ok
+t/op/protowarn ................................................ ok
+t/op/push ..................................................... ok
+t/op/pwent .................................................... ok
+t/op/qr ....................................................... ok
+t/op/quotemeta ................................................ ok
+t/op/rand ..................................................... ok
+t/op/range .................................................... ok
+t/op/read ..................................................... ok
+t/op/readdir .................................................. ok
+t/op/readline ................................................. ok
+t/op/recurse .................................................. ok
+t/op/ref ...................................................... ok
+t/op/repeat ................................................... ok
+t/op/require_37033 ............................................ ok
+t/op/require_errors ........................................... ok
+t/op/require_override ......................................... ok
+t/op/reset .................................................... ok
+t/op/reverse .................................................. ok
+t/op/rt119311 ................................................. ok
+t/op/runlevel ................................................. ok
+t/op/select ................................................... ok
+t/op/setpgrpstack ............................................. ok
+t/op/sigdispatch .............................................. ok
+t/op/signatures ............................................... ok
+t/op/sigsystem ................................................ ok
+t/op/sleep .................................................... ok
+t/op/smartkve ................................................. ok
+t/op/smartmatch ............................................... ok
+t/op/sort ..................................................... ok
+t/op/splice ................................................... ok
+t/op/split .................................................... ok
+t/op/split_unicode ............................................ ok
+t/op/sprintf .................................................. ok
+t/op/sprintf2 ................................................. ok
+t/op/srand .................................................... ok
+t/op/sselect .................................................. ok
+t/op/stash .................................................... ok
+t/op/stat ..................................................... ok
+t/op/state .................................................... ok
+t/op/study .................................................... ok
+t/op/studytied ................................................ ok
+t/op/sub ...................................................... ok
+t/op/sub_lval ................................................. ok
+t/op/substr ................................................... ok
+t/op/substr_thr ............................................... ok
+t/op/svleak ................................................... ok
+t/op/switch ................................................... ok
+t/op/symbolcache .............................................. ok
+t/op/sysio .................................................... ok
+t/op/taint .................................................... ok
+t/op/threads-dirh ............................................. ok
+t/op/threads .................................................. ok
+t/op/tie ...................................................... ok
+t/op/tie_fetch_count .......................................... ok
+t/op/tiearray ................................................. ok
+t/op/tiehandle ................................................ ok
+t/op/time ..................................................... ok
+t/op/time_loop ................................................ ok
+t/op/tr ....................................................... ok
+t/op/undef .................................................... ok
+t/op/universal ................................................ ok
+t/op/unlink ................................................... ok
+t/op/unshift .................................................. ok
+t/op/upgrade .................................................. ok
+t/op/utf8cache ................................................ ok
+t/op/utf8decode ............................................... ok
+t/op/utf8magic ................................................ ok
+t/op/utfhash .................................................. ok
+t/op/utftaint ................................................. ok
+t/op/vec ...................................................... ok
+t/op/ver ...................................................... ok
+t/op/waitpid .................................................. ok
+t/op/wantarray ................................................ ok
+t/op/warn ..................................................... ok
+t/op/while .................................................... ok
+t/op/write .................................................... ok
+t/op/yadayada ................................................. ok
+t/uni/attrs ................................................... ok
+t/uni/bless ................................................... ok
+t/uni/cache ................................................... ok
+t/uni/caller .................................................. ok
+t/uni/chomp ................................................... ok
+t/uni/chr ..................................................... ok
+t/uni/class ................................................... ok
+t/uni/eval .................................................... ok
+t/uni/fold .................................................... ok
+t/uni/goto .................................................... ok
+t/uni/greek ................................................... ok
+t/uni/gv ...................................................... ok
+t/uni/labels .................................................. ok
+t/uni/latin2 .................................................. ok
+t/uni/lex_utf8 ................................................ ok
+t/uni/lower ................................................... ok
+t/uni/method .................................................. ok
+t/uni/opcroak ................................................. ok
+t/uni/overload ................................................ ok
+t/uni/package ................................................. ok
+t/uni/parser .................................................. ok
+t/uni/readline ................................................ ok
+t/uni/select .................................................. ok
+t/uni/sprintf ................................................. ok
+t/uni/stash ................................................... ok
+t/uni/tie ..................................................... ok
+t/uni/title ................................................... ok
+t/uni/tr_7jis ................................................. ok
+t/uni/tr_eucjp ................................................ ok
+t/uni/tr_sjis ................................................. ok
+t/uni/tr_utf8 ................................................. ok
+t/uni/universal ............................................... ok
+t/uni/upper ................................................... ok
+t/uni/variables ............................................... ok
+t/uni/write ................................................... ok
+t/mro/basic ................................................... ok
+t/mro/basic_01_c3 ............................................. ok
+t/mro/basic_01_c3_utf8 ........................................ ok
+t/mro/basic_01_dfs ............................................ ok
+t/mro/basic_01_dfs_utf8 ....................................... ok
+t/mro/basic_02_c3 ............................................. ok
+t/mro/basic_02_c3_utf8 ........................................ ok
+t/mro/basic_02_dfs ............................................ ok
+t/mro/basic_02_dfs_utf8 ....................................... ok
+t/mro/basic_03_c3 ............................................. ok
+t/mro/basic_03_c3_utf8 ........................................ ok
+t/mro/basic_03_dfs ............................................ ok
+t/mro/basic_03_dfs_utf8 ....................................... ok
+t/mro/basic_04_c3 ............................................. ok
+t/mro/basic_04_c3_utf8 ........................................ ok
+t/mro/basic_04_dfs ............................................ ok
+t/mro/basic_04_dfs_utf8 ....................................... ok
+t/mro/basic_05_c3 ............................................. ok
+t/mro/basic_05_c3_utf8 ........................................ ok
+t/mro/basic_05_dfs ............................................ ok
+t/mro/basic_05_dfs_utf8 ....................................... ok
+t/mro/basic_utf8 .............................................. ok
+t/mro/c3_with_overload ........................................ ok
+t/mro/c3_with_overload_utf8 ................................... ok
+t/mro/complex_c3 .............................................. ok
+t/mro/complex_c3_utf8 ......................................... ok
+t/mro/complex_dfs ............................................. ok
+t/mro/complex_dfs_utf8 ........................................ ok
+t/mro/dbic_c3 ................................................. ok
+t/mro/dbic_c3_utf8 ............................................ ok
+t/mro/dbic_dfs ................................................ ok
+t/mro/dbic_dfs_utf8 ........................................... ok
+t/mro/inconsistent_c3 ......................................... ok
+t/mro/inconsistent_c3_utf8 .................................... ok
+t/mro/isa_aliases ............................................. ok
+t/mro/isa_aliases_utf8 ........................................ ok
+t/mro/isa_c3 .................................................. ok
+t/mro/isa_c3_utf8 ............................................. ok
+t/mro/isa_dfs ................................................. ok
+t/mro/isa_dfs_utf8 ............................................ ok
+t/mro/isarev .................................................. ok
+t/mro/isarev_utf8 ............................................. ok
+t/mro/method_caching .......................................... ok
+t/mro/method_caching_utf8 ..................................... ok
+t/mro/next_NEXT ............................................... ok
+t/mro/next_NEXT_utf8 .......................................... ok
+t/mro/next_edgecases .......................................... ok
+t/mro/next_edgecases_utf8 ..................................... ok
+t/mro/next_goto ............................................... ok
+t/mro/next_goto_utf8 .......................................... ok
+t/mro/next_inanon ............................................. ok
+t/mro/next_inanon_utf8 ........................................ ok
+t/mro/next_ineval ............................................. ok
+t/mro/next_ineval_utf8 ........................................ ok
+t/mro/next_method ............................................. ok
+t/mro/next_method_utf8 ........................................ ok
+t/mro/next_skip ............................................... ok
+t/mro/next_skip_utf8 .......................................... ok
+t/mro/overload_c3 ............................................. ok
+t/mro/overload_c3_utf8 ........................................ ok
+t/mro/overload_dfs ............................................ ok
+t/mro/package_aliases ......................................... ok
+t/mro/package_aliases_utf8 .................................... ok
+t/mro/pkg_gen ................................................. ok
+t/mro/pkg_gen_utf8 ............................................ ok
+t/mro/recursion_c3 ............................................ ok
+t/mro/recursion_c3_utf8 ....................................... ok
+t/mro/recursion_dfs ........................................... ok
+t/mro/recursion_dfs_utf8 ...................................... ok
+t/mro/vulcan_c3 ............................................... ok
+t/mro/vulcan_c3_utf8 .......................................... ok
+t/mro/vulcan_dfs .............................................. ok
+t/mro/vulcan_dfs_utf8 ......................................... ok
+t/perf/benchmarks ............................................. ok
+t/perf/opcount ................................................ ok
+t/perf/optree ................................................. ok
+t/perf/speed .................................................. ok
+t/perf/taint .................................................. ok
+t/porting/FindExt ............................................. ok
+t/porting/args_assert ......................................... ok
+t/porting/authors ............................................. skipped
+t/porting/bench ............................................... skipped
+t/porting/bincompat ........................................... ok
+t/porting/checkcase ........................................... ok
+t/porting/checkcfgvar ......................................... ok
+t/porting/cmp_version ......................................... skipped
+t/porting/copyright ........................................... ok
+t/porting/corelist ............................................ ok
+t/porting/customized .......................................... ok
+t/porting/diag ................................................ ok
+t/porting/dual-life ........................................... ok
+t/porting/exec-bit ............................................ ok
+t/porting/extrefs ............................................. ok
+t/porting/filenames ........................................... ok
+t/porting/globvar ............................................. skipped
+t/porting/libperl ............................................. skipped
+t/porting/maintainers ......................................... ok
+t/porting/manifest ............................................ ok
+t/porting/pending-author ...................................... skipped
+t/porting/perlfunc ............................................ ok
+t/porting/pod_rules ........................................... ok
+t/porting/podcheck ............................................ ok
+t/porting/re_context .......................................... ok
+t/porting/readme .............................................. ok
+t/porting/regen ............................................... ok
+t/porting/ss_dup .............................................. ok
+t/porting/test_bootstrap ...................................... ok
+t/porting/utils ............................................... skipped
+t/lib/commonsense ............................................. ok
+t/lib/croak ................................................... ok
+t/lib/cygwin .................................................. skipped
+t/lib/deprecate ............................................... ok
+t/lib/mypragma ................................................ ok
+t/lib/no_load ................................................. ok
+t/lib/overload_fallback ....................................... ok
+t/lib/overload_nomethod ....................................... ok
+t/lib/proxy_constant_subs ..................................... ok
+t/lib/universal ............................................... ok
+cpan/Archive-Tar/t/01_use ..................................... ok
+cpan/Archive-Tar/t/02_methods ................................. ok
+cpan/Archive-Tar/t/03_file .................................... ok
+cpan/Archive-Tar/t/04_resolved_issues ......................... ok
+cpan/Archive-Tar/t/05_iter .................................... ok
+cpan/Archive-Tar/t/06_error ................................... ok
+cpan/Archive-Tar/t/08_ptargrep ................................ ok
+cpan/Archive-Tar/t/90_symlink ................................. skipped
+cpan/Archive-Tar/t/99_pod ..................................... skipped
+cpan/autodie/t/00-load ........................................ ok
+cpan/autodie/t/args ........................................... ok
+cpan/autodie/t/autodie ........................................ ok
+cpan/autodie/t/backcompat ..................................... ok
+cpan/autodie/t/basic_exceptions ............................... ok
+cpan/autodie/t/binmode ........................................ ok
+cpan/autodie/t/blog_hints ..................................... ok
+cpan/autodie/t/caller ......................................... ok
+cpan/autodie/t/chmod .......................................... ok
+cpan/autodie/t/chown .......................................... ok
+cpan/autodie/t/context_lexical ................................ ok
+cpan/autodie/t/context ........................................ ok
+cpan/autodie/t/core-trampoline-slurp .......................... ok
+cpan/autodie/t/crickey ........................................ ok
+cpan/autodie/t/dbmopen ........................................ ok
+cpan/autodie/t/eval_error ..................................... ok
+cpan/autodie/t/exception_class ................................ ok
+cpan/autodie/t/exceptions ..................................... ok
+cpan/autodie/t/exec ........................................... ok
+cpan/autodie/t/Fatal .......................................... ok
+cpan/autodie/t/filehandles .................................... ok
+cpan/autodie/t/fileno ......................................... ok
+cpan/autodie/t/flock .......................................... skipped
+cpan/autodie/t/format-clobber ................................. ok
+cpan/autodie/t/hints_insist ................................... ok
+cpan/autodie/t/hints_pod_examples ............................. ok
+cpan/autodie/t/hints_provider_does ............................ ok
+cpan/autodie/t/hints_provider_easy_does_it .................... ok
+cpan/autodie/t/hints_provider_isa ............................. ok
+cpan/autodie/t/hints .......................................... ok
+cpan/autodie/t/import-into .................................... skipped
+cpan/autodie/t/internal-backcompat ............................ ok
+cpan/autodie/t/internal ....................................... ok
+cpan/autodie/t/kill ........................................... ok
+cpan/autodie/t/lethal ......................................... ok
+cpan/autodie/t/mkdir .......................................... ok
+cpan/autodie/t/no_carp ........................................ ok
+cpan/autodie/t/open ........................................... ok
+cpan/autodie/t/read ........................................... ok
+cpan/autodie/t/recv ........................................... ok
+cpan/autodie/t/repeat ......................................... ok
+cpan/autodie/t/rt-74246 ....................................... ok
+cpan/autodie/t/scope_leak ..................................... ok
+cpan/autodie/t/skip ........................................... ok
+cpan/autodie/t/string-eval-basic .............................. ok
+cpan/autodie/t/string-eval-leak ............................... ok
+cpan/autodie/t/sysopen ........................................ ok
+cpan/autodie/t/truncate ....................................... ok
+cpan/autodie/t/unlink ......................................... ok
+cpan/autodie/t/user-context ................................... ok
+cpan/autodie/t/usersub ........................................ ok
+cpan/autodie/t/utf8_open ...................................... ok
+cpan/autodie/t/utime .......................................... ok
+cpan/autodie/t/version ........................................ skipped
+cpan/autodie/t/version_tag .................................... ok
+cpan/AutoLoader/t/01AutoLoader ................................ ok
+cpan/AutoLoader/t/02AutoSplit ................................. ok
+cpan/B-Debug/t/debug .......................................... ok
+cpan/Compress-Raw-Bzip2/t/000prereq ........................... ok
+cpan/Compress-Raw-Bzip2/t/01bzip2 ............................. ok
+cpan/Compress-Raw-Bzip2/t/09limitoutput ....................... ok
+cpan/Compress-Raw-Bzip2/t/19nonpv ............................. ok
+cpan/Compress-Raw-Bzip2/t/99pod ............................... skipped
+cpan/Compress-Raw-Zlib/t/01version ............................ ok
+cpan/Compress-Raw-Zlib/t/02zlib ............................... ok
+cpan/Compress-Raw-Zlib/t/07bufsize ............................ skipped
+cpan/Compress-Raw-Zlib/t/09limitoutput ........................ ok
+cpan/Compress-Raw-Zlib/t/18lvalue ............................. ok
+cpan/Compress-Raw-Zlib/t/19nonpv .............................. ok
+cpan/Config-Perl-V/t/10_base .................................. ok
+cpan/Config-Perl-V/t/20_plv56 ................................. ok
+cpan/Config-Perl-V/t/21_plv58 ................................. ok
+cpan/Config-Perl-V/t/22_plv510 ................................ ok
+cpan/Config-Perl-V/t/23_plv512 ................................ ok
+cpan/Config-Perl-V/t/24_plv514 ................................ ok
+cpan/Config-Perl-V/t/25_plv5162 ............................... ok
+cpan/Config-Perl-V/t/25_plv516 ................................ ok
+cpan/Config-Perl-V/t/26_plv5182 ............................... ok
+cpan/Config-Perl-V/t/26_plv518 ................................ ok
+cpan/Config-Perl-V/t/27_plv5200 ............................... ok
+cpan/CPAN-Meta-Requirements/t/accepts ......................... ok
+cpan/CPAN-Meta-Requirements/t/bad_version_hook ................ ok
+cpan/CPAN-Meta-Requirements/t/basic ........................... ok
+cpan/CPAN-Meta-Requirements/t/finalize ........................ ok
+cpan/CPAN-Meta-Requirements/t/from-hash ....................... ok
+cpan/CPAN-Meta-Requirements/t/merge ........................... ok
+cpan/CPAN-Meta-Requirements/t/strings ......................... ok
+cpan/CPAN-Meta/t/converter-bad ................................ ok
+cpan/CPAN-Meta/t/converter-fail ............................... ok
+cpan/CPAN-Meta/t/converter-fragments .......................... ok
+cpan/CPAN-Meta/t/converter .................................... ok
+cpan/CPAN-Meta/t/load-bad ..................................... ok
+cpan/CPAN-Meta/t/merge ........................................ ok
+cpan/CPAN-Meta/t/meta-obj ..................................... ok
+cpan/CPAN-Meta/t/no-index ..................................... ok
+cpan/CPAN-Meta/t/optional_feature-merge ....................... ok
+cpan/CPAN-Meta/t/prereqs-finalize ............................. ok
+cpan/CPAN-Meta/t/prereqs-merge ................................ ok
+cpan/CPAN-Meta/t/prereqs ...................................... ok
+cpan/CPAN-Meta/t/repository ................................... ok
+cpan/CPAN-Meta/t/save-load .................................... ok
+cpan/CPAN-Meta/t/validator .................................... ok
+cpan/CPAN-Meta-YAML/t/01_api .................................. ok
+cpan/CPAN-Meta-YAML/t/01_compile .............................. ok
+cpan/CPAN-Meta-YAML/t/10_read ................................. ok
+cpan/CPAN-Meta-YAML/t/11_read_string .......................... ok
+cpan/CPAN-Meta-YAML/t/12_write ................................ ok
+cpan/CPAN-Meta-YAML/t/13_write_string ......................... ok
+cpan/CPAN-Meta-YAML/t/20_subclass ............................. ok
+cpan/CPAN-Meta-YAML/t/21_yamlpm_compat ........................ ok
+cpan/CPAN-Meta-YAML/t/30_yaml_spec_tml ........................ ok
+cpan/CPAN-Meta-YAML/t/31_local_tml ............................ ok
+cpan/CPAN-Meta-YAML/t/32_world_tml ............................ ok
+cpan/CPAN/t/01loadme .......................................... ok
+cpan/CPAN/t/02nox ............................................. ok
+cpan/CPAN/t/03pkgs ............................................ ok
+cpan/CPAN/t/10version ......................................... ok
+cpan/CPAN/t/11mirroredby ...................................... ok
+cpan/DB_File/t/db-btree ....................................... ok
+cpan/DB_File/t/db-hash ........................................ ok
+cpan/DB_File/t/db-recno ....................................... ok
+cpan/Devel-PPPort/t/call ...................................... ok
+cpan/Devel-PPPort/t/cop ....................................... ok
+cpan/Devel-PPPort/t/exception ................................. ok
+cpan/Devel-PPPort/t/format .................................... ok
+cpan/Devel-PPPort/t/grok ...................................... ok
+cpan/Devel-PPPort/t/gv ........................................ ok
+cpan/Devel-PPPort/t/HvNAME .................................... ok
+cpan/Devel-PPPort/t/limits .................................... ok
+cpan/Devel-PPPort/t/magic ..................................... ok
+cpan/Devel-PPPort/t/memory .................................... ok
+cpan/Devel-PPPort/t/misc ...................................... ok
+cpan/Devel-PPPort/t/mPUSH ..................................... ok
+cpan/Devel-PPPort/t/MY_CXT .................................... ok
+cpan/Devel-PPPort/t/newCONSTSUB ............................... ok
+cpan/Devel-PPPort/t/newRV ..................................... ok
+cpan/Devel-PPPort/t/newSVpv ................................... ok
+cpan/Devel-PPPort/t/newSV_type ................................ ok
+cpan/Devel-PPPort/t/podtest ................................... ok
+cpan/Devel-PPPort/t/ppphtest .................................. ok
+cpan/Devel-PPPort/t/pvs ....................................... ok
+cpan/Devel-PPPort/t/pv_tools .................................. ok
+cpan/Devel-PPPort/t/shared_pv ................................. ok
+cpan/Devel-PPPort/t/snprintf .................................. ok
+cpan/Devel-PPPort/t/sprintf ................................... ok
+cpan/Devel-PPPort/t/strlfuncs ................................. ok
+cpan/Devel-PPPort/t/SvPV ...................................... ok
+cpan/Devel-PPPort/t/SvREFCNT .................................. ok
+cpan/Devel-PPPort/t/Sv_set .................................... ok
+cpan/Devel-PPPort/t/sv_xpvf ................................... ok
+cpan/Devel-PPPort/t/threads ................................... ok
+cpan/Devel-PPPort/t/uv ........................................ ok
+cpan/Devel-PPPort/t/variables ................................. ok
+cpan/Devel-PPPort/t/warn ...................................... ok
+cpan/Digest-MD5/t/align ....................................... ok
+cpan/Digest-MD5/t/badfile ..................................... ok
+cpan/Digest-MD5/t/bits ........................................ ok
+cpan/Digest-MD5/t/clone ....................................... ok
+cpan/Digest-MD5/t/files ....................................... ok
+cpan/Digest-MD5/t/md5-aaa ..................................... ok
+cpan/Digest-MD5/t/threads ..................................... ok
+cpan/Digest-MD5/t/utf8 ........................................ ok
+cpan/Digest-SHA/t/allfcns ..................................... ok
+cpan/Digest-SHA/t/base64 ...................................... ok
+cpan/Digest-SHA/t/bitbuf ...................................... ok
+cpan/Digest-SHA/t/bitorder .................................... ok
+cpan/Digest-SHA/t/fips180-4 ................................... ok
+cpan/Digest-SHA/t/fips198 ..................................... ok
+cpan/Digest-SHA/t/gglong ...................................... ok
+cpan/Digest-SHA/t/gg .......................................... ok
+cpan/Digest-SHA/t/hmacsha ..................................... ok
+cpan/Digest-SHA/t/inheritance ................................. ok
+cpan/Digest-SHA/t/ireland ..................................... ok
+cpan/Digest-SHA/t/methods ..................................... ok
+cpan/Digest-SHA/t/nistbit ..................................... ok
+cpan/Digest-SHA/t/nistbyte .................................... ok
+cpan/Digest-SHA/t/rfc2202 ..................................... ok
+cpan/Digest-SHA/t/sha1 ........................................ ok
+cpan/Digest-SHA/t/sha224 ...................................... ok
+cpan/Digest-SHA/t/sha256 ...................................... ok
+cpan/Digest-SHA/t/sha384 ...................................... ok
+cpan/Digest-SHA/t/sha512 ...................................... ok
+cpan/Digest-SHA/t/state ....................................... ok
+cpan/Digest-SHA/t/unicode ..................................... ok
+cpan/Digest-SHA/t/woodbury .................................... ok
+cpan/Digest/t/base ............................................ ok
+cpan/Digest/t/digest .......................................... ok
+cpan/Digest/t/file ............................................ ok
+cpan/Digest/t/security ........................................ ok
+cpan/Encode/t/Aliases ......................................... ok
+cpan/Encode/t/at-cn ........................................... ok
+cpan/Encode/t/at-tw ........................................... ok
+cpan/Encode/t/CJKT ............................................ ok
+cpan/Encode/t/cow ............................................. ok
+cpan/Encode/t/decode .......................................... ok
+cpan/Encode/t/enc_data ........................................ ok
+cpan/Encode/t/enc_eucjp ....................................... ok
+cpan/Encode/t/enc_module ...................................... ok
+cpan/Encode/t/Encoder ......................................... ok
+cpan/Encode/t/Encode .......................................... ok
+cpan/Encode/t/encoding ........................................ ok
+cpan/Encode/t/enc_utf8 ........................................ ok
+cpan/Encode/t/fallback ........................................ ok
+cpan/Encode/t/from_to ......................................... ok
+cpan/Encode/t/grow ............................................ ok
+cpan/Encode/t/gsm0338 ......................................... ok
+cpan/Encode/t/guess ........................................... ok
+cpan/Encode/t/jis7-fallback ................................... ok
+cpan/Encode/t/jperl ........................................... ok
+cpan/Encode/t/mime_header_iso2022jp ........................... ok
+cpan/Encode/t/mime-header ..................................... ok
+cpan/Encode/t/mime-name ....................................... ok
+cpan/Encode/t/perlio .......................................... ok
+cpan/Encode/t/piconv .......................................... skipped
+cpan/Encode/t/taint ........................................... ok
+cpan/Encode/t/Unicode ......................................... ok
+cpan/Encode/t/utf8ref ......................................... ok
+cpan/Encode/t/utf8strict ...................................... ok
+cpan/Encode/t/utf8warnings .................................... ok
+cpan/encoding-warnings/t/1-warning ............................ Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/2-fatal .............................. Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/3-normal ............................. Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/encoding-warnings/t/4-lexical ............................ Setting ${^ENCODING} is deprecated at ../../lib/encoding/warnings.pm line 173.
+ok
+cpan/experimental/t/basic ..................................... ok
+cpan/ExtUtils-Command/t/cp .................................... ok
+cpan/ExtUtils-Command/t/eu_command ............................ ok
+cpan/ExtUtils-Constant/t/Constant ............................. ok
+cpan/ExtUtils-Install/t/can_write_dir ......................... ok
+cpan/ExtUtils-Install/t/Installapi2 ........................... ok
+cpan/ExtUtils-Install/t/Installed ............................. ok
+cpan/ExtUtils-Install/t/Install ............................... ok
+cpan/ExtUtils-Install/t/InstallWithMM ......................... ok
+cpan/ExtUtils-Install/t/Packlist .............................. ok
+cpan/ExtUtils-MakeMaker/t/00compile ........................... skipped
+cpan/ExtUtils-MakeMaker/t/01perl_bugs ......................... ok
+cpan/ExtUtils-MakeMaker/t/arch_check .......................... ok
+cpan/ExtUtils-MakeMaker/t/backwards ........................... ok
+cpan/ExtUtils-MakeMaker/t/basic ............................... ok
+cpan/ExtUtils-MakeMaker/t/build_man ........................... ok
+cpan/ExtUtils-MakeMaker/t/cd .................................. ok
+cpan/ExtUtils-MakeMaker/t/config .............................. ok
+cpan/ExtUtils-MakeMaker/t/dir_target .......................... ok
+cpan/ExtUtils-MakeMaker/t/echo ................................ ok
+cpan/ExtUtils-MakeMaker/t/FIRST_MAKEFILE ...................... ok
+cpan/ExtUtils-MakeMaker/t/fixin ............................... ok
+cpan/ExtUtils-MakeMaker/t/fix_libs ............................ ok
+cpan/ExtUtils-MakeMaker/t/hints ............................... ok
+cpan/ExtUtils-MakeMaker/t/INSTALL_BASE ........................ ok
+cpan/ExtUtils-MakeMaker/t/installed_file ...................... ok
+cpan/ExtUtils-MakeMaker/t/INST_PREFIX ......................... ok
+cpan/ExtUtils-MakeMaker/t/INST ................................ ok
+cpan/ExtUtils-MakeMaker/t/is_of_type .......................... ok
+cpan/ExtUtils-MakeMaker/t/Liblist ............................. ok
+cpan/ExtUtils-MakeMaker/t/MakeMaker_Parameters ................ ok
+cpan/ExtUtils-MakeMaker/t/make ................................ ok
+cpan/ExtUtils-MakeMaker/t/maketext_filter ..................... ok
+cpan/ExtUtils-MakeMaker/t/meta_convert ........................ ok
+cpan/ExtUtils-MakeMaker/t/metafile_data ....................... ok
+cpan/ExtUtils-MakeMaker/t/metafile_file ....................... ok
+cpan/ExtUtils-MakeMaker/t/miniperl ............................ ok
+cpan/ExtUtils-MakeMaker/t/min_perl_version .................... ok
+cpan/ExtUtils-MakeMaker/t/Mkbootstrap ......................... ok
+cpan/ExtUtils-MakeMaker/t/MM_Any .............................. ok
+cpan/ExtUtils-MakeMaker/t/MM_BeOS ............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Cygwin ........................... skipped
+cpan/ExtUtils-MakeMaker/t/MM_NW5 .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_OS2 .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Unix ............................. ok
+cpan/ExtUtils-MakeMaker/t/MM_VMS .............................. skipped
+cpan/ExtUtils-MakeMaker/t/MM_Win32 ............................ skipped
+cpan/ExtUtils-MakeMaker/t/oneliner ............................ ok
+cpan/ExtUtils-MakeMaker/t/parse_abstract ...................... ok
+cpan/ExtUtils-MakeMaker/t/parse_version ....................... ok
+cpan/ExtUtils-MakeMaker/t/PL_FILES ............................ ok
+cpan/ExtUtils-MakeMaker/t/pm .................................. ok
+cpan/ExtUtils-MakeMaker/t/pm_to_blib .......................... ok
+cpan/ExtUtils-MakeMaker/t/pod2man ............................. ok
+cpan/ExtUtils-MakeMaker/t/postamble ........................... ok
+cpan/ExtUtils-MakeMaker/t/prefixify ........................... ok
+cpan/ExtUtils-MakeMaker/t/prereq_print ........................ ok
+cpan/ExtUtils-MakeMaker/t/prereq .............................. ok
+cpan/ExtUtils-MakeMaker/t/problems ............................ ok
+cpan/ExtUtils-MakeMaker/t/prompt .............................. ok
+cpan/ExtUtils-MakeMaker/t/recurs .............................. ok
+cpan/ExtUtils-MakeMaker/t/revision ............................ ok
+cpan/ExtUtils-MakeMaker/t/several_authors ..................... ok
+cpan/ExtUtils-MakeMaker/t/split_command ....................... ok
+cpan/ExtUtils-MakeMaker/t/test_boilerplate .................... ok
+cpan/ExtUtils-MakeMaker/t/testlib ............................. ok
+cpan/ExtUtils-MakeMaker/t/unicode ............................. ok
+cpan/ExtUtils-MakeMaker/t/VERSION_FROM ........................ ok
+cpan/ExtUtils-MakeMaker/t/vstrings ............................ ok
+cpan/ExtUtils-MakeMaker/t/WriteEmptyMakefile .................. ok
+cpan/ExtUtils-MakeMaker/t/writemakefile_args .................. ok
+cpan/ExtUtils-MakeMaker/t/xs .................................. ok
+cpan/ExtUtils-Manifest/t/Manifest ............................. ok
+cpan/File-Fetch/t/01_File-Fetch ............................... ok
+cpan/File-Fetch/t/null_subclass ............................... ok
+cpan/File-Path/t/Path ......................................... ok
+cpan/File-Path/t/taint ........................................ ok
+cpan/File-Temp/t/cmp .......................................... ok
+cpan/File-Temp/t/fork ......................................... ok
+cpan/File-Temp/t/lock ......................................... skipped
+cpan/File-Temp/t/mktemp ....................................... ok
+cpan/File-Temp/t/object ....................................... ok
+cpan/File-Temp/t/posix ........................................ ok
+cpan/File-Temp/t/rmtree ....................................... ok
+cpan/File-Temp/t/security ..................................... ok
+cpan/File-Temp/t/seekable ..................................... ok
+cpan/File-Temp/t/tempfile ..................................... ok
+cpan/Filter-Util-Call/t/call .................................. ok
+cpan/Filter-Util-Call/t/rt_54452-rebless ...................... ok
+cpan/Getopt-Long/t/gol-basic .................................. ok
+cpan/Getopt-Long/t/gol-linkage ................................ ok
+cpan/Getopt-Long/t/gol-oo ..................................... ok
+cpan/Getopt-Long/t/gol-xargv .................................. ok
+cpan/Getopt-Long/t/gol-xstring ................................ ok
+cpan/HTTP-Tiny/t/000_load ..................................... ok
+cpan/HTTP-Tiny/t/001_api ...................................... ok
+cpan/HTTP-Tiny/t/002_croakage ................................. ok
+cpan/HTTP-Tiny/t/003_agent .................................... ok
+cpan/HTTP-Tiny/t/010_url ...................................... ok
+cpan/HTTP-Tiny/t/020_headers .................................. ok
+cpan/HTTP-Tiny/t/030_response ................................. ok
+cpan/HTTP-Tiny/t/040_content .................................. ok
+cpan/HTTP-Tiny/t/050_chunked_body ............................. ok
+cpan/HTTP-Tiny/t/060_http_date ................................ ok
+cpan/HTTP-Tiny/t/070_cookie_jar ............................... ok
+cpan/HTTP-Tiny/t/100_get ...................................... ok
+cpan/HTTP-Tiny/t/101_head ..................................... ok
+cpan/HTTP-Tiny/t/102_put ...................................... ok
+cpan/HTTP-Tiny/t/103_delete ................................... ok
+cpan/HTTP-Tiny/t/104_post ..................................... ok
+cpan/HTTP-Tiny/t/110_mirror ................................... ok
+cpan/HTTP-Tiny/t/130_redirect ................................. ok
+cpan/HTTP-Tiny/t/140_proxy .................................... ok
+cpan/HTTP-Tiny/t/141_no_proxy ................................. ok
+cpan/HTTP-Tiny/t/150_post_form ................................ ok
+cpan/HTTP-Tiny/t/160_cookies .................................. ok
+cpan/HTTP-Tiny/t/161_basic_auth ............................... ok
+cpan/HTTP-Tiny/t/162_proxy_auth ............................... ok
+cpan/HTTP-Tiny/t/170_keepalive ................................ ok
+cpan/IO-Compress/t/000prereq .................................. ok
+cpan/IO-Compress/t/001bzip2 ................................... ok
+cpan/IO-Compress/t/001zlib-generic-deflate .................... ok
+cpan/IO-Compress/t/001zlib-generic-gzip ....................... ok
+cpan/IO-Compress/t/001zlib-generic-rawdeflate ................. ok
+cpan/IO-Compress/t/001zlib-generic-zip ........................ ok
+cpan/IO-Compress/t/002any-deflate ............................. ok
+cpan/IO-Compress/t/002any-gzip ................................ ok
+cpan/IO-Compress/t/002any-rawdeflate .......................... ok
+cpan/IO-Compress/t/002any-transparent ......................... ok
+cpan/IO-Compress/t/002any-zip ................................. ok
+cpan/IO-Compress/t/004gziphdr ................................. ok
+cpan/IO-Compress/t/005defhdr .................................. ok
+cpan/IO-Compress/t/006zip ..................................... ok
+cpan/IO-Compress/t/01misc ..................................... ok
+cpan/IO-Compress/t/020isize ................................... skipped
+cpan/IO-Compress/t/050interop-gzip ............................ ok
+cpan/IO-Compress/t/100generic-bzip2 ........................... ok
+cpan/IO-Compress/t/100generic-deflate ......................... ok
+cpan/IO-Compress/t/100generic-gzip ............................ ok
+cpan/IO-Compress/t/100generic-rawdeflate ...................... ok
+cpan/IO-Compress/t/100generic-zip ............................. ok
+cpan/IO-Compress/t/101truncate-bzip2 .......................... skipped
+cpan/IO-Compress/t/101truncate-deflate ........................ skipped
+cpan/IO-Compress/t/101truncate-gzip ........................... skipped
+cpan/IO-Compress/t/101truncate-rawdeflate ..................... skipped
+cpan/IO-Compress/t/101truncate-zip ............................ skipped
+cpan/IO-Compress/t/102tied-bzip2 .............................. ok
+cpan/IO-Compress/t/102tied-deflate ............................ ok
+cpan/IO-Compress/t/102tied-gzip ............................... ok
+cpan/IO-Compress/t/102tied-rawdeflate ......................... ok
+cpan/IO-Compress/t/102tied-zip ................................ ok
+cpan/IO-Compress/t/103newtied-bzip2 ........................... ok
+cpan/IO-Compress/t/103newtied-deflate ......................... ok
+cpan/IO-Compress/t/103newtied-gzip ............................ ok
+cpan/IO-Compress/t/103newtied-rawdeflate ...................... ok
+cpan/IO-Compress/t/103newtied-zip ............................. ok
+cpan/IO-Compress/t/104destroy-bzip2 ........................... ok
+cpan/IO-Compress/t/104destroy-deflate ......................... ok
+cpan/IO-Compress/t/104destroy-gzip ............................ ok
+cpan/IO-Compress/t/104destroy-rawdeflate ...................... ok
+cpan/IO-Compress/t/104destroy-zip ............................. ok
+cpan/IO-Compress/t/105oneshot-bzip2 ........................... ok
+cpan/IO-Compress/t/105oneshot-deflate ......................... ok
+cpan/IO-Compress/t/105oneshot-gzip-only ....................... ok
+cpan/IO-Compress/t/105oneshot-gzip ............................ ok
+cpan/IO-Compress/t/105oneshot-rawdeflate ...................... ok
+cpan/IO-Compress/t/105oneshot-zip-bzip2-only .................. ok
+cpan/IO-Compress/t/105oneshot-zip-only ........................ ok
+cpan/IO-Compress/t/105oneshot-zip-store-only .................. skipped
+cpan/IO-Compress/t/105oneshot-zip ............................. ok
+cpan/IO-Compress/t/106prime-bzip2 ............................. skipped
+cpan/IO-Compress/t/106prime-deflate ........................... skipped
+cpan/IO-Compress/t/106prime-gzip .............................. skipped
+cpan/IO-Compress/t/106prime-rawdeflate ........................ skipped
+cpan/IO-Compress/t/106prime-zip ............................... skipped
+cpan/IO-Compress/t/107multi-bzip2 ............................. ok
+cpan/IO-Compress/t/107multi-deflate ........................... ok
+cpan/IO-Compress/t/107multi-gzip .............................. ok
+cpan/IO-Compress/t/107multi-rawdeflate ........................ ok
+cpan/IO-Compress/t/107multi-zip ............................... ok
+cpan/IO-Compress/t/108anyunc-bzip2 ............................ ok
+cpan/IO-Compress/t/108anyunc-deflate .......................... ok
+cpan/IO-Compress/t/108anyunc-gzip ............................. ok
+cpan/IO-Compress/t/108anyunc-rawdeflate ....................... ok
+cpan/IO-Compress/t/108anyunc-transparent ...................... ok
+cpan/IO-Compress/t/108anyunc-zip .............................. ok
+cpan/IO-Compress/t/109merge-deflate ........................... ok
+cpan/IO-Compress/t/109merge-gzip .............................. ok
+cpan/IO-Compress/t/109merge-rawdeflate ........................ ok
+cpan/IO-Compress/t/109merge-zip ............................... skipped
+cpan/IO-Compress/t/110encode-bzip2 ............................ ok
+cpan/IO-Compress/t/110encode-deflate .......................... ok
+cpan/IO-Compress/t/110encode-gzip ............................. ok
+cpan/IO-Compress/t/110encode-rawdeflate ....................... ok
+cpan/IO-Compress/t/110encode-zip .............................. ok
+cpan/IO-Compress/t/111const-deflate ........................... ok
+cpan/IO-Compress/t/999pod ..................................... skipped
+cpan/IO-Compress/t/cz-01version ............................... ok
+cpan/IO-Compress/t/cz-03zlib-v1 ............................... ok
+cpan/IO-Compress/t/cz-06gzsetp ................................ ok
+cpan/IO-Compress/t/cz-08encoding .............................. ok
+cpan/IO-Compress/t/cz-14gzopen ................................ ok
+cpan/IO-Compress/t/globmapper ................................. ok
+cpan/IO-Socket-IP/t/00use ..................................... ok
+cpan/IO-Socket-IP/t/01local-client-v4 ......................... ok
+cpan/IO-Socket-IP/t/02local-server-v4 ......................... ok
+cpan/IO-Socket-IP/t/03local-cross-v4 .......................... ok
+cpan/IO-Socket-IP/t/04local-client-v6 ......................... ok
+cpan/IO-Socket-IP/t/05local-server-v6 ......................... ok
+cpan/IO-Socket-IP/t/06local-cross-v6 .......................... ok
+cpan/IO-Socket-IP/t/10args .................................... ok
+cpan/IO-Socket-IP/t/11sockopts ................................ ok
+cpan/IO-Socket-IP/t/12port-fallback ........................... ok
+cpan/IO-Socket-IP/t/13addrinfo ................................ ok
+cpan/IO-Socket-IP/t/14fileno .................................. ok
+cpan/IO-Socket-IP/t/15io-socket ............................... ok
+cpan/IO-Socket-IP/t/16v6only .................................. ok
+cpan/IO-Socket-IP/t/17gai-flags ............................... ok
+cpan/IO-Socket-IP/t/18fdopen .................................. ok
+cpan/IO-Socket-IP/t/19no-addrs ................................ ok
+cpan/IO-Socket-IP/t/20subclass ................................ ok
+cpan/IO-Socket-IP/t/21as-inet ................................. ok
+cpan/IO-Socket-IP/t/22timeout ................................. ok
+cpan/IO-Socket-IP/t/30nonblocking-connect ..................... ok
+cpan/IO-Socket-IP/t/31nonblocking-connect-internet ............ ok
+cpan/IO-Socket-IP/t/99pod ..................................... skipped
+cpan/IO-Zlib/t/basic .......................................... ok
+cpan/IO-Zlib/t/external ....................................... ok
+cpan/IO-Zlib/t/getc ........................................... ok
+cpan/IO-Zlib/t/getline ........................................ ok
+cpan/IO-Zlib/t/import ......................................... ok
+cpan/IO-Zlib/t/large .......................................... ok
+cpan/IO-Zlib/t/tied ........................................... ok
+cpan/IO-Zlib/t/uncomp1 ........................................ ok
+cpan/IO-Zlib/t/uncomp2 ........................................ ok
+cpan/IPC-Cmd/t/01_IPC-Cmd ..................................... ok
+cpan/IPC-Cmd/t/02_Interactive ................................. skipped
+cpan/IPC-Cmd/t/03_run-forked .................................. ok
+cpan/IPC-SysV/t/ipcsysv ....................................... ok
+cpan/IPC-SysV/t/msg ........................................... ok
+cpan/IPC-SysV/t/podcov ........................................ skipped
+cpan/IPC-SysV/t/pod ........................................... skipped
+cpan/IPC-SysV/t/sem ........................................... ok
+cpan/IPC-SysV/t/shm ........................................... ok
+cpan/JSON-PP/t/000_load ....................................... ok
+cpan/JSON-PP/t/001_utf8 ....................................... ok
+cpan/JSON-PP/t/002_error ...................................... ok
+cpan/JSON-PP/t/003_types ...................................... ok
+cpan/JSON-PP/t/006_pc_pretty .................................. ok
+cpan/JSON-PP/t/007_pc_esc ..................................... ok
+cpan/JSON-PP/t/008_pc_base .................................... ok
+cpan/JSON-PP/t/009_pc_extra_number ............................ ok
+cpan/JSON-PP/t/010_pc_keysort ................................. ok
+cpan/JSON-PP/t/011_pc_expo .................................... ok
+cpan/JSON-PP/t/012_blessed .................................... ok
+cpan/JSON-PP/t/013_limit ...................................... ok
+cpan/JSON-PP/t/014_latin1 ..................................... ok
+cpan/JSON-PP/t/015_prefix ..................................... ok
+cpan/JSON-PP/t/016_tied ....................................... ok
+cpan/JSON-PP/t/017_relaxed .................................... ok
+cpan/JSON-PP/t/018_json_checker ............................... ok
+cpan/JSON-PP/t/019_incr ....................................... ok
+cpan/JSON-PP/t/020_unknown .................................... ok
+cpan/JSON-PP/t/021_evans_bugrep ............................... ok
+cpan/JSON-PP/t/022_comment_at_eof ............................. ok
+cpan/JSON-PP/t/099_binary ..................................... ok
+cpan/JSON-PP/t/104_sortby ..................................... ok
+cpan/JSON-PP/t/105_esc_slash .................................. ok
+cpan/JSON-PP/t/106_allow_barekey .............................. ok
+cpan/JSON-PP/t/107_allow_singlequote .......................... ok
+cpan/JSON-PP/t/108_decode ..................................... ok
+cpan/JSON-PP/t/109_encode ..................................... ok
+cpan/JSON-PP/t/110_bignum ..................................... ok
+cpan/JSON-PP/t/112_upgrade .................................... ok
+cpan/JSON-PP/t/113_overloaded_eq .............................. ok
+cpan/JSON-PP/t/114_decode_prefix .............................. ok
+cpan/JSON-PP/t/115_tie_ixhash ................................. ok
+cpan/JSON-PP/t/116_incr_parse_fixed ........................... ok
+cpan/JSON-PP/t/zero-mojibake .................................. ok
+cpan/libnet/t/config .......................................... ok
+cpan/libnet/t/datasend ........................................ ok
+cpan/libnet/t/ftp ............................................. skipped
+cpan/libnet/t/hostname ........................................ ok
+cpan/libnet/t/netrc ........................................... ok
+cpan/libnet/t/nntp_ipv6 ....................................... ok
+cpan/libnet/t/nntp_ssl ........................................ skipped
+cpan/libnet/t/nntp ............................................ skipped
+cpan/libnet/t/pop3_ipv6 ....................................... ok
+cpan/libnet/t/pop3_ssl ........................................ skipped
+cpan/libnet/t/require ......................................... ok
+cpan/libnet/t/smtp_ipv6 ....................................... ok
+cpan/libnet/t/smtp_ssl ........................................ skipped
+cpan/libnet/t/smtp ............................................ skipped
+cpan/libnet/t/time ............................................ ok
+cpan/Locale-Codes/t/alias_code_old ............................ ok
+cpan/Locale-Codes/t/alias_code ................................ ok
+cpan/Locale-Codes/t/code2country_old .......................... ok
+cpan/Locale-Codes/t/code2country .............................. ok
+cpan/Locale-Codes/t/code2currency ............................. ok
+cpan/Locale-Codes/t/code2langext .............................. ok
+cpan/Locale-Codes/t/code2langfam .............................. ok
+cpan/Locale-Codes/t/code2language ............................. ok
+cpan/Locale-Codes/t/code2langvar .............................. ok
+cpan/Locale-Codes/t/code2script ............................... ok
+cpan/Locale-Codes/t/country2code_old .......................... ok
+cpan/Locale-Codes/t/country2code .............................. ok
+cpan/Locale-Codes/t/country_code2code_old ..................... ok
+cpan/Locale-Codes/t/country_code2code ......................... ok
+cpan/Locale-Codes/t/country_old ............................... ok
+cpan/Locale-Codes/t/country ................................... ok
+cpan/Locale-Codes/t/currency2code_old ......................... ok
+cpan/Locale-Codes/t/currency2code ............................. ok
+cpan/Locale-Codes/t/langext2code .............................. ok
+cpan/Locale-Codes/t/langfam2code .............................. ok
+cpan/Locale-Codes/t/language2code ............................. ok
+cpan/Locale-Codes/t/language_old .............................. ok
+cpan/Locale-Codes/t/language .................................. ok
+cpan/Locale-Codes/t/langvar2code .............................. ok
+cpan/Locale-Codes/t/script2code_old ........................... ok
+cpan/Locale-Codes/t/script2code ............................... ok
+cpan/Locale-Maketext-Simple/t/0-signature ..................... ok
+cpan/Locale-Maketext-Simple/t/1-basic ......................... ok
+cpan/Locale-Maketext-Simple/t/2-load_po_without_i_default ..... skipped
+cpan/Locale-Maketext-Simple/t/3-load_po_with_i_default ........ skipped
+cpan/Math-Complex/t/Complex ................................... ok
+cpan/Math-Complex/t/Trig ...................................... ok
+cpan/Math-Complex/t/underbar .................................. ok
+cpan/Memoize/t/array_confusion ................................ ok
+cpan/Memoize/t/array .......................................... ok
+cpan/Memoize/t/correctness .................................... ok
+cpan/Memoize/t/errors ......................................... ok
+cpan/Memoize/t/expfile ........................................ ok
+cpan/Memoize/t/expire ......................................... ok
+cpan/Memoize/t/expmod_n ....................................... ok
+cpan/Memoize/t/expmod_t ....................................... ok
+cpan/Memoize/t/flush .......................................... ok
+cpan/Memoize/t/normalize ...................................... ok
+cpan/Memoize/t/prototype ...................................... ok
+cpan/Memoize/t/speed .......................................... ok
+cpan/Memoize/t/tiefeatures .................................... ok
+cpan/Memoize/t/tie_gdbm ....................................... ok
+cpan/Memoize/t/tie_ndbm ....................................... ok
+cpan/Memoize/t/tie_sdbm ....................................... ok
+cpan/Memoize/t/tie_storable ................................... ok
+cpan/Memoize/t/tie ............................................ ok
+cpan/Memoize/t/unmemoize ...................................... ok
+cpan/MIME-Base64/t/base64 ..................................... ok
+cpan/MIME-Base64/t/length ..................................... ok
+cpan/MIME-Base64/t/quoted-print ............................... ok
+cpan/MIME-Base64/t/unicode .................................... ok
+cpan/Module-Load-Conditional/t/01_Module_Load_Conditional ..... ok
+cpan/Module-Loaded/t/01_Module-Loaded ......................... ok
+cpan/Module-Load/t/01_Module-Load ............................. ok
+cpan/Module-Load/t/02_Module-Load ............................. ok
+cpan/Module-Metadata/t/contains_pod ........................... ok
+cpan/Module-Metadata/t/encoding ............................... ok
+cpan/Module-Metadata/t/endpod ................................. ok
+cpan/Module-Metadata/t/metadata ............................... ok
+cpan/Module-Metadata/t/taint .................................. ok
+cpan/Module-Metadata/t/version ................................ ok
+cpan/NEXT/t/actual ............................................ ok
+cpan/NEXT/t/actuns ............................................ ok
+cpan/NEXT/t/dynamically_scoped_regex_vars ..................... ok
+cpan/NEXT/t/next .............................................. ok
+cpan/NEXT/t/stringify ......................................... ok
+cpan/NEXT/t/unseen ............................................ ok
+cpan/Params-Check/t/01_Params-Check ........................... ok
+cpan/parent/t/compile-time-file ............................... ok
+cpan/parent/t/compile-time .................................... ok
+cpan/parent/t/parent-classfromclassfile ....................... ok
+cpan/parent/t/parent-classfromfile ............................ ok
+cpan/parent/t/parent-pmc ...................................... ok
+cpan/parent/t/parent-returns-false ............................ ok
+cpan/parent/t/parent .......................................... ok
+cpan/Parse-CPAN-Meta/t/02_api ................................. ok
+cpan/Parse-CPAN-Meta/t/03_functions ........................... ok
+cpan/Parse-CPAN-Meta/t/04_export .............................. ok
+cpan/Parse-CPAN-Meta/t/05_errors .............................. ok
+cpan/PerlIO-via-QuotedPrint/t/QuotedPrint ..................... ok
+cpan/Perl-OSType/t/OSType ..................................... ok
+cpan/Pod-Checker/t/pod/podchkenc .............................. ok
+cpan/Pod-Checker/t/pod/poderrs ................................ ok
+cpan/Pod-Checker/t/pod/selfcheck .............................. ok
+cpan/Pod-Escapes/t/01_about_verbose ........................... ok
+cpan/Pod-Escapes/t/10_main .................................... ok
+cpan/Pod-Escapes/t/15_name2charnum ............................ ok
+cpan/podlators/t/basic ........................................ ok
+cpan/podlators/t/color ........................................ ok
+cpan/podlators/t/devise-date .................................. ok
+cpan/podlators/t/filehandle ................................... ok
+cpan/podlators/t/man-empty .................................... ok
+cpan/podlators/t/man-heading .................................. ok
+cpan/podlators/t/man-options .................................. ok
+cpan/podlators/t/man-perlio ................................... ok
+cpan/podlators/t/man .......................................... ok
+cpan/podlators/t/man-utf8 ..................................... ok
+cpan/podlators/t/overstrike ................................... ok
+cpan/podlators/t/parselink .................................... ok
+cpan/podlators/t/pod-parser ................................... ok
+cpan/podlators/t/pod-spelling ................................. skipped
+cpan/podlators/t/pod .......................................... skipped
+cpan/podlators/t/termcap ...................................... ok
+cpan/podlators/t/text-empty ................................... ok
+cpan/podlators/t/text-encoding ................................ ok
+cpan/podlators/t/text-options ................................. ok
+cpan/podlators/t/text-perlio .................................. ok
+cpan/podlators/t/text ......................................... ok
+cpan/podlators/t/text-utf8 .................................... ok
+cpan/Pod-Parser/t/pod/contains_pod ............................ ok
+cpan/Pod-Parser/t/pod/emptycmd ................................ ok
+cpan/Pod-Parser/t/pod/find .................................... ok
+cpan/Pod-Parser/t/pod/for ..................................... ok
+cpan/Pod-Parser/t/pod/headings ................................ ok
+cpan/Pod-Parser/t/pod/included ................................ ok
+cpan/Pod-Parser/t/pod/include ................................. ok
+cpan/Pod-Parser/t/pod/lref .................................... ok
+cpan/Pod-Parser/t/pod/multiline_items ......................... ok
+cpan/Pod-Parser/t/pod/nested_items ............................ ok
+cpan/Pod-Parser/t/pod/nested_seqs ............................. ok
+cpan/Pod-Parser/t/pod/oneline_cmds ............................ ok
+cpan/Pod-Parser/t/pod/podselect ............................... ok
+cpan/Pod-Parser/t/pod/selfcheck ............................... ok
+cpan/Pod-Parser/t/pod/special_seqs ............................ ok
+cpan/Pod-Parser/t/pod/twice ................................... ok
+cpan/Pod-Perldoc/t/load ....................................... ok
+cpan/Pod-Perldoc/t/man/_get_columns ........................... ok
+cpan/Pod-Perldoc/t/pod ........................................ skipped
+cpan/Pod-Simple/t/00about ..................................... ok
+cpan/Pod-Simple/t/20_skip ..................................... ok
+cpan/Pod-Simple/t/accept01 .................................... ok
+cpan/Pod-Simple/t/accept05 .................................... ok
+cpan/Pod-Simple/t/ac_d ........................................ ok
+cpan/Pod-Simple/t/basic ....................................... ok
+cpan/Pod-Simple/t/begin ....................................... ok
+cpan/Pod-Simple/t/cbacks ...................................... ok
+cpan/Pod-Simple/t/chunking .................................... ok
+cpan/Pod-Simple/t/closeys ..................................... ok
+cpan/Pod-Simple/t/corpus ...................................... ok
+cpan/Pod-Simple/t/emptylists .................................. ok
+cpan/Pod-Simple/t/enc-chars ................................... ok
+cpan/Pod-Simple/t/encod01 ..................................... ok
+cpan/Pod-Simple/t/encod02 ..................................... ok
+cpan/Pod-Simple/t/encod03 ..................................... ok
+cpan/Pod-Simple/t/encod04 ..................................... ok
+cpan/Pod-Simple/t/end_over .................................... ok
+cpan/Pod-Simple/t/eol2 ........................................ ok
+cpan/Pod-Simple/t/eol ......................................... ok
+cpan/Pod-Simple/t/fake-closers ................................ ok
+cpan/Pod-Simple/t/fcodes_e .................................... ok
+cpan/Pod-Simple/t/fcodes_l .................................... ok
+cpan/Pod-Simple/t/fcodes_s .................................... ok
+cpan/Pod-Simple/t/fcodes ...................................... ok
+cpan/Pod-Simple/t/fornot ...................................... ok
+cpan/Pod-Simple/t/for ......................................... ok
+cpan/Pod-Simple/t/heads ....................................... ok
+cpan/Pod-Simple/t/html01 ...................................... ok
+cpan/Pod-Simple/t/html02 ...................................... ok
+cpan/Pod-Simple/t/html03 ...................................... ok
+cpan/Pod-Simple/t/htmlbat ..................................... ok
+cpan/Pod-Simple/t/items02 ..................................... ok
+cpan/Pod-Simple/t/items ....................................... ok
+cpan/Pod-Simple/t/itemstar .................................... ok
+cpan/Pod-Simple/t/linkclas .................................... ok
+cpan/Pod-Simple/t/output ...................................... ok
+cpan/Pod-Simple/t/puller ...................................... ok
+cpan/Pod-Simple/t/pulltitl .................................... ok
+cpan/Pod-Simple/t/reinit ...................................... ok
+cpan/Pod-Simple/t/render ...................................... ok
+cpan/Pod-Simple/t/search05 .................................... ok
+cpan/Pod-Simple/t/search10 .................................... ok
+cpan/Pod-Simple/t/search12 .................................... ok
+cpan/Pod-Simple/t/search20 .................................... ok
+cpan/Pod-Simple/t/search22 .................................... ok
+cpan/Pod-Simple/t/search25 .................................... ok
+cpan/Pod-Simple/t/search26 .................................... ok
+cpan/Pod-Simple/t/search27 .................................... ok
+cpan/Pod-Simple/t/search28 .................................... ok
+cpan/Pod-Simple/t/search29 .................................... ok
+cpan/Pod-Simple/t/search50 .................................... ok
+cpan/Pod-Simple/t/stree ....................................... ok
+cpan/Pod-Simple/t/strpvbtm .................................... ok
+cpan/Pod-Simple/t/tiedfh ...................................... ok
+cpan/Pod-Simple/t/verbatim .................................... ok
+cpan/Pod-Simple/t/verb_fmt .................................... ok
+cpan/Pod-Simple/t/whine ....................................... ok
+cpan/Pod-Simple/t/xhtml01 ..................................... ok
+cpan/Pod-Simple/t/xhtml05 ..................................... ok
+cpan/Pod-Simple/t/xhtml10 ..................................... ok
+cpan/Pod-Simple/t/xhtml15 ..................................... ok
+cpan/Pod-Simple/t/xhtml20 ..................................... ok
+cpan/Pod-Simple/t/xhtml-bkb ................................... ok
+cpan/Pod-Simple/t/x_nixer ..................................... ok
+cpan/Pod-Usage/t/pod/pod2usage2 ............................... ok
+cpan/Pod-Usage/t/pod/pod2usage ................................ ok
+cpan/Scalar-List-Utils/t/00version ............................ ok
+cpan/Scalar-List-Utils/t/any-all .............................. ok
+cpan/Scalar-List-Utils/t/blessed .............................. ok
+cpan/Scalar-List-Utils/t/dualvar .............................. ok
+cpan/Scalar-List-Utils/t/first ................................ ok
+cpan/Scalar-List-Utils/t/getmagic-once ........................ ok
+cpan/Scalar-List-Utils/t/isvstring ............................ ok
+cpan/Scalar-List-Utils/t/lln .................................. ok
+cpan/Scalar-List-Utils/t/maxstr ............................... ok
+cpan/Scalar-List-Utils/t/max .................................. ok
+cpan/Scalar-List-Utils/t/minstr ............................... ok
+cpan/Scalar-List-Utils/t/min .................................. ok
+cpan/Scalar-List-Utils/t/openhan .............................. ok
+cpan/Scalar-List-Utils/t/pair ................................. ok
+cpan/Scalar-List-Utils/t/product .............................. ok
+cpan/Scalar-List-Utils/t/prototype ............................ ok
+cpan/Scalar-List-Utils/t/readonly ............................. ok
+cpan/Scalar-List-Utils/t/reduce ............................... ok
+cpan/Scalar-List-Utils/t/refaddr .............................. Hexadecimal number > 0xffffffff non-portable at t/refaddr.t line 24.
+Hexadecimal number > 0xffffffff non-portable at t/refaddr.t line 24.
+Hexadecimal number > 0xffffffff non-portable at t/refaddr.t line 24.
+Hexadecimal number > 0xffffffff non-portable at t/refaddr.t line 24.
+Hexadecimal number > 0xffffffff non-portable at t/refaddr.t line 24.
+ok
+cpan/Scalar-List-Utils/t/reftype .............................. ok
+cpan/Scalar-List-Utils/t/scalarutil-proto ..................... ok
+cpan/Scalar-List-Utils/t/shuffle .............................. ok
+cpan/Scalar-List-Utils/t/stack-corruption ..................... ok
+cpan/Scalar-List-Utils/t/subname .............................. ok
+cpan/Scalar-List-Utils/t/sum0 ................................. ok
+cpan/Scalar-List-Utils/t/sum .................................. ok
+cpan/Scalar-List-Utils/t/tainted .............................. ok
+cpan/Scalar-List-Utils/t/weak ................................. ok
+cpan/Socket/t/getaddrinfo ..................................... ok
+cpan/Socket/t/getnameinfo ..................................... ok
+cpan/Socket/t/ip_mreq ......................................... ok
+cpan/Socket/t/ipv6_mreq ....................................... ok
+cpan/Socket/t/sockaddr ........................................ ok
+cpan/Socket/t/socketpair ...................................... ok
+cpan/Socket/t/Socket .......................................... ok
+cpan/Sys-Syslog/t/00-load ..................................... ok
+cpan/Sys-Syslog/t/constants ................................... ok
+cpan/Sys-Syslog/t/facilities-routing .......................... skipped
+cpan/Sys-Syslog/t/syslog ...................................... ok
+cpan/Term-ANSIColor/t/module/aliases-func ..................... ok
+cpan/Term-ANSIColor/t/module/basic256 ......................... ok
+cpan/Term-ANSIColor/t/module/basic ............................ ok
+cpan/Term-ANSIColor/t/module/eval ............................. ok
+cpan/Term-ANSIColor/t/module/stringify ........................ ok
+cpan/Term-ANSIColor/t/taint/basic ............................. ok
+cpan/Term-Cap/test ............................................ ok
+cpan/Test-Harness/t/aggregator ................................ ok
+cpan/Test-Harness/t/bailout ................................... ok
+cpan/Test-Harness/t/base ...................................... ok
+cpan/Test-Harness/t/callbacks ................................. ok
+cpan/Test-Harness/t/compat/env_opts ........................... ok
+cpan/Test-Harness/t/compat/env ................................ ok
+cpan/Test-Harness/t/compat/failure ............................ ok
+cpan/Test-Harness/t/compat/inc-propagation .................... ok
+cpan/Test-Harness/t/compat/inc_taint .......................... ok
+cpan/Test-Harness/t/compat/nonumbers .......................... skipped
+cpan/Test-Harness/t/compat/regression ......................... ok
+cpan/Test-Harness/t/compat/subclass ........................... ok
+cpan/Test-Harness/t/compat/switches ........................... ok
+cpan/Test-Harness/t/compat/test-harness-compat ................ ok
+cpan/Test-Harness/t/compat/version ............................ ok
+cpan/Test-Harness/t/console ................................... ok
+cpan/Test-Harness/t/errors .................................... ok
+cpan/Test-Harness/t/file ...................................... ok
+cpan/Test-Harness/t/glob-to-regexp ............................ ok
+cpan/Test-Harness/t/grammar ................................... ok
+cpan/Test-Harness/t/harness-bailout ........................... ok
+cpan/Test-Harness/t/harness-subclass .......................... ok
+cpan/Test-Harness/t/harness ................................... ok
+cpan/Test-Harness/t/iterator_factory .......................... ok
+cpan/Test-Harness/t/iterators ................................. ok
+cpan/Test-Harness/t/multiplexer ............................... ok
+cpan/Test-Harness/t/nested .................................... ok
+cpan/Test-Harness/t/nofork-mux ................................ ok
+cpan/Test-Harness/t/nofork .................................... ok
+cpan/Test-Harness/t/object .................................... ok
+cpan/Test-Harness/t/parser-config ............................. ok
+cpan/Test-Harness/t/parser-subclass ........................... ok
+cpan/Test-Harness/t/parse ..................................... ok
+cpan/Test-Harness/t/perl5lib .................................. ok
+cpan/Test-Harness/t/premature-bailout ......................... ok
+cpan/Test-Harness/t/process ................................... ok
+cpan/Test-Harness/t/proverc ................................... ok
+cpan/Test-Harness/t/proverun .................................. ok
+cpan/Test-Harness/t/prove ..................................... ok
+cpan/Test-Harness/t/proveversion .............................. ok
+cpan/Test-Harness/t/regression ................................ ok
+cpan/Test-Harness/t/results ................................... ok
+cpan/Test-Harness/t/scheduler ................................. ok
+cpan/Test-Harness/t/source_handler ............................ ok
+cpan/Test-Harness/t/source .................................... ok
+cpan/Test-Harness/t/source_tests/source ....................... ok
+cpan/Test-Harness/t/spool ..................................... ok
+cpan/Test-Harness/t/state_results ............................. ok
+cpan/Test-Harness/t/state ..................................... ok
+cpan/Test-Harness/t/streams ................................... ok
+cpan/Test-Harness/t/taint ..................................... ok
+cpan/Test-Harness/t/testargs .................................. ok
+cpan/Test-Harness/t/unicode ................................... ok
+cpan/Test-Harness/t/yamlish-output ............................ ok
+cpan/Test-Harness/t/yamlish ................................... ok
+cpan/Test-Harness/t/yamlish-writer ............................ ok
+cpan/Test-Simple/t/00test_harness_check ....................... ok
+cpan/Test-Simple/t/01-basic ................................... ok
+cpan/Test-Simple/t/478-cmp_ok_hash ............................ ok
+cpan/Test-Simple/t/auto ....................................... ok
+cpan/Test-Simple/t/bad_plan ................................... ok
+cpan/Test-Simple/t/bail_out ................................... ok
+cpan/Test-Simple/t/BEGIN_require_ok ........................... ok
+cpan/Test-Simple/t/BEGIN_use_ok ............................... ok
+cpan/Test-Simple/t/buffer ..................................... ok
+cpan/Test-Simple/t/Builder/Builder ............................ ok
+cpan/Test-Simple/t/Builder/carp ............................... ok
+cpan/Test-Simple/t/Builder/create ............................. ok
+cpan/Test-Simple/t/Builder/current_test ....................... ok
+cpan/Test-Simple/t/Builder/current_test_without_plan .......... ok
+cpan/Test-Simple/t/Builder/details ............................ ok
+cpan/Test-Simple/t/Builder/done_testing_double ................ ok
+cpan/Test-Simple/t/Builder/done_testing_plan_mismatch ......... ok
+cpan/Test-Simple/t/Builder/done_testing ....................... ok
+cpan/Test-Simple/t/Builder/done_testing_with_no_plan .......... ok
+cpan/Test-Simple/t/Builder/done_testing_with_number ........... ok
+cpan/Test-Simple/t/Builder/done_testing_with_plan ............. ok
+cpan/Test-Simple/t/Builder/fork_with_new_stdout ............... ok
+cpan/Test-Simple/t/Builder/has_plan2 .......................... ok
+cpan/Test-Simple/t/Builder/has_plan ........................... ok
+cpan/Test-Simple/t/Builder/is_fh .............................. ok
+cpan/Test-Simple/t/Builder/is_passing ......................... ok
+cpan/Test-Simple/t/Builder/maybe_regex ........................ ok
+cpan/Test-Simple/t/Builder/no_diag ............................ ok
+cpan/Test-Simple/t/Builder/no_ending .......................... ok
+cpan/Test-Simple/t/Builder/no_header .......................... ok
+cpan/Test-Simple/t/Builder/no_plan_at_all ..................... ok
+cpan/Test-Simple/t/Builder/ok_obj ............................. ok
+cpan/Test-Simple/t/Builder/output ............................. ok
+cpan/Test-Simple/t/Builder/reset_outputs ...................... ok
+cpan/Test-Simple/t/Builder/reset .............................. ok
+cpan/Test-Simple/t/Builder/try ................................ ok
+cpan/Test-Simple/t/capture .................................... ok
+cpan/Test-Simple/t/c_flag ..................................... ok
+cpan/Test-Simple/t/check_tests ................................ ok
+cpan/Test-Simple/t/circular_data .............................. ok
+cpan/Test-Simple/t/cmp_ok ..................................... ok
+cpan/Test-Simple/t/dependents ................................. skipped
+cpan/Test-Simple/t/depth ...................................... ok
+cpan/Test-Simple/t/diag ....................................... ok
+cpan/Test-Simple/t/died ....................................... ok
+cpan/Test-Simple/t/dont_overwrite_die_handler ................. ok
+cpan/Test-Simple/t/eq_set ..................................... ok
+cpan/Test-Simple/t/exit ....................................... ok
+cpan/Test-Simple/t/explain .................................... ok
+cpan/Test-Simple/t/extra_one .................................. ok
+cpan/Test-Simple/t/extra ...................................... ok
+cpan/Test-Simple/t/fail-like .................................. ok
+cpan/Test-Simple/t/fail-more .................................. ok
+cpan/Test-Simple/t/fail_one ................................... ok
+cpan/Test-Simple/t/fail ....................................... ok
+cpan/Test-Simple/t/filehandles ................................ ok
+cpan/Test-Simple/t/fork ....................................... ok
+cpan/Test-Simple/t/harness_active ............................. ok
+cpan/Test-Simple/t/import ..................................... ok
+cpan/Test-Simple/t/is_deeply_dne_bug .......................... ok
+cpan/Test-Simple/t/is_deeply_fail ............................. ok
+cpan/Test-Simple/t/is_deeply_with_threads ..................... skipped
+cpan/Test-Simple/t/missing .................................... ok
+cpan/Test-Simple/t/More ....................................... ok
+cpan/Test-Simple/t/new_ok ..................................... ok
+cpan/Test-Simple/t/no_plan .................................... ok
+cpan/Test-Simple/t/no_tests ................................... ok
+cpan/Test-Simple/t/note ....................................... ok
+cpan/Test-Simple/t/overload ................................... ok
+cpan/Test-Simple/t/overload_threads ........................... ok
+cpan/Test-Simple/t/plan_bad ................................... ok
+cpan/Test-Simple/t/plan_is_noplan ............................. ok
+cpan/Test-Simple/t/plan_no_plan ............................... ok
+cpan/Test-Simple/t/plan_shouldnt_import ....................... ok
+cpan/Test-Simple/t/plan_skip_all .............................. skipped
+cpan/Test-Simple/t/plan ....................................... ok
+cpan/Test-Simple/t/require_ok ................................. ok
+cpan/Test-Simple/t/run_test ................................... ok
+cpan/Test-Simple/t/Simple/load ................................ ok
+cpan/Test-Simple/t/simple ..................................... ok
+cpan/Test-Simple/t/skipall .................................... ok
+cpan/Test-Simple/t/skip ....................................... ok
+cpan/Test-Simple/t/subtest/args ............................... ok
+cpan/Test-Simple/t/subtest/bail_out ........................... ok
+cpan/Test-Simple/t/subtest/basic .............................. ok
+cpan/Test-Simple/t/subtest/die ................................ ok
+cpan/Test-Simple/t/subtest/do ................................. ok
+cpan/Test-Simple/t/subtest/exceptions ......................... ok
+cpan/Test-Simple/t/subtest/fork ............................... ok
+cpan/Test-Simple/t/subtest/implicit_done ...................... ok
+cpan/Test-Simple/t/subtest/line_numbers ....................... ok
+cpan/Test-Simple/t/subtest/plan ............................... ok
+cpan/Test-Simple/t/subtest/predicate .......................... ok
+cpan/Test-Simple/t/subtest/singleton .......................... ok
+cpan/Test-Simple/t/subtest/threads ............................ ok
+cpan/Test-Simple/t/subtest/todo ............................... ok
+cpan/Test-Simple/t/subtest/wstat .............................. ok
+cpan/Test-Simple/t/tbm_doesnt_set_exported_to ................. ok
+cpan/Test-Simple/t/Tester/tbt_01basic ......................... ok
+cpan/Test-Simple/t/Tester/tbt_02fhrestore ..................... ok
+cpan/Test-Simple/t/Tester/tbt_03die ........................... ok
+cpan/Test-Simple/t/Tester/tbt_04line_num ...................... ok
+cpan/Test-Simple/t/Tester/tbt_05faildiag ...................... ok
+cpan/Test-Simple/t/Tester/tbt_06errormess ..................... ok
+cpan/Test-Simple/t/Tester/tbt_07args .......................... ok
+cpan/Test-Simple/t/Tester/tbt_08subtest ....................... ok
+cpan/Test-Simple/t/Tester/tbt_09do ............................ ok
+cpan/Test-Simple/t/threads .................................... ok
+cpan/Test-Simple/t/thread_taint ............................... ok
+cpan/Test-Simple/t/todo ....................................... ok
+cpan/Test-Simple/t/undef ...................................... ok
+cpan/Test-Simple/t/useing ..................................... ok
+cpan/Test-Simple/t/use_ok ..................................... ok
+cpan/Test-Simple/t/utf8 ....................................... ok
+cpan/Test-Simple/t/versions ................................... ok
+cpan/Test/t/05_about_verbose .................................. ok
+cpan/Test/t/fail .............................................. ok
+cpan/Test/t/mix ............................................... ok
+cpan/Test/t/multiline ......................................... ok
+cpan/Test/t/onfail ............................................ ok
+cpan/Test/t/qr ................................................ ok
+cpan/Test/t/skip .............................................. ok
+cpan/Test/t/success ........................................... ok
+cpan/Test/t/todo .............................................. ok
+cpan/Text-Balanced/t/01_compile ............................... ok
+cpan/Text-Balanced/t/02_extbrk ................................ ok
+cpan/Text-Balanced/t/03_extcbk ................................ ok
+cpan/Text-Balanced/t/04_extdel ................................ ok
+cpan/Text-Balanced/t/05_extmul ................................ ok
+cpan/Text-Balanced/t/06_extqlk ................................ ok
+cpan/Text-Balanced/t/07_exttag ................................ ok
+cpan/Text-Balanced/t/08_extvar ................................ ok
+cpan/Text-Balanced/t/09_gentag ................................ ok
+cpan/Text-ParseWords/t/ParseWords ............................. ok
+cpan/Text-ParseWords/t/taint .................................. ok
+cpan/Text-Tabs/t/37000 ........................................ ok
+cpan/Text-Tabs/t/39548 ........................................ ok
+cpan/Text-Tabs/t/79766 ........................................ ok
+cpan/Text-Tabs/t/belg4mit ..................................... ok
+cpan/Text-Tabs/t/dandv ........................................ ok
+cpan/Text-Tabs/t/fill ......................................... ok
+cpan/Text-Tabs/t/Jacobson2 .................................... ok
+cpan/Text-Tabs/t/Jacobson ..................................... ok
+cpan/Text-Tabs/t/Jochen ....................................... ok
+cpan/Text-Tabs/t/sep2 ......................................... ok
+cpan/Text-Tabs/t/sep .......................................... ok
+cpan/Text-Tabs/t/Tabs-ElCid ................................... ok
+cpan/Text-Tabs/t/tabs ......................................... ok
+cpan/Text-Tabs/t/Wrap-JLB ..................................... ok
+cpan/Text-Tabs/t/wrap_separator2 .............................. ok
+cpan/Text-Tabs/t/wrap ......................................... ok
+cpan/Tie-RefHash/t/rebless .................................... ok
+cpan/Tie-RefHash/t/refhash .................................... ok
+cpan/Tie-RefHash/t/storable ................................... ok
+cpan/Tie-RefHash/t/threaded ................................... ok
+cpan/Time-HiRes/t/alarm ....................................... ok
+cpan/Time-HiRes/t/clock ....................................... ok
+cpan/Time-HiRes/t/gettimeofday ................................ ok
+cpan/Time-HiRes/t/itimer ...................................... ok
+cpan/Time-HiRes/t/nanosleep ................................... ok
+cpan/Time-HiRes/t/sleep ....................................... ok
+cpan/Time-HiRes/t/stat ........................................ ok
+cpan/Time-HiRes/t/time ........................................ ok
+cpan/Time-HiRes/t/tv_interval ................................. ok
+cpan/Time-HiRes/t/ualarm ...................................... ok
+cpan/Time-HiRes/t/usleep ...................................... ok
+cpan/Time-Local/t/Local ....................................... ok
+cpan/Time-Piece/t/01base ...................................... ok
+cpan/Time-Piece/t/02core ...................................... ok
+cpan/Time-Piece/t/03compare ................................... ok
+cpan/Time-Piece/t/04mjd ....................................... ok
+cpan/Time-Piece/t/05overload .................................. ok
+cpan/Time-Piece/t/06subclass .................................. ok
+cpan/Time-Piece/t/07arith ..................................... ok
+cpan/Unicode-Collate/t/altern ................................. ok
+cpan/Unicode-Collate/t/backwds ................................ ok
+cpan/Unicode-Collate/t/cjk_b5 ................................. ok
+cpan/Unicode-Collate/t/cjk_gb ................................. ok
+cpan/Unicode-Collate/t/cjk_ja ................................. ok
+cpan/Unicode-Collate/t/cjk_ko ................................. ok
+cpan/Unicode-Collate/t/cjk_py ................................. ok
+cpan/Unicode-Collate/t/cjkrange ............................... ok
+cpan/Unicode-Collate/t/cjk_st ................................. ok
+cpan/Unicode-Collate/t/cjk_zy ................................. ok
+cpan/Unicode-Collate/t/compatui ............................... ok
+cpan/Unicode-Collate/t/contract ............................... ok
+cpan/Unicode-Collate/t/default ................................ ok
+cpan/Unicode-Collate/t/hangtype ............................... ok
+cpan/Unicode-Collate/t/hangul ................................. ok
+cpan/Unicode-Collate/t/ident .................................. ok
+cpan/Unicode-Collate/t/iglevel2 ............................... ok
+cpan/Unicode-Collate/t/ignor .................................. ok
+cpan/Unicode-Collate/t/illegalp ............................... ok
+cpan/Unicode-Collate/t/illegal ................................ ok
+cpan/Unicode-Collate/t/index .................................. ok
+cpan/Unicode-Collate/t/loc_af ................................. ok
+cpan/Unicode-Collate/t/loc_ar ................................. ok
+cpan/Unicode-Collate/t/loc_as ................................. ok
+cpan/Unicode-Collate/t/loc_az ................................. ok
+cpan/Unicode-Collate/t/loc_be ................................. ok
+cpan/Unicode-Collate/t/loc_bg ................................. ok
+cpan/Unicode-Collate/t/loc_bn ................................. ok
+cpan/Unicode-Collate/t/loc_bscy ............................... ok
+cpan/Unicode-Collate/t/loc_bs ................................. ok
+cpan/Unicode-Collate/t/loc_ca ................................. ok
+cpan/Unicode-Collate/t/loc_cjkc ............................... ok
+cpan/Unicode-Collate/t/loc_cjk ................................ ok
+cpan/Unicode-Collate/t/loc_cs ................................. ok
+cpan/Unicode-Collate/t/loc_cyrl ............................... ok
+cpan/Unicode-Collate/t/loc_cy ................................. ok
+cpan/Unicode-Collate/t/loc_da ................................. ok
+cpan/Unicode-Collate/t/loc_deph ............................... ok
+cpan/Unicode-Collate/t/loc_de ................................. ok
+cpan/Unicode-Collate/t/loc_ee ................................. ok
+cpan/Unicode-Collate/t/loc_eo ................................. ok
+cpan/Unicode-Collate/t/loc_es ................................. ok
+cpan/Unicode-Collate/t/loc_estr ............................... ok
+cpan/Unicode-Collate/t/loc_et ................................. ok
+cpan/Unicode-Collate/t/loc_fa ................................. ok
+cpan/Unicode-Collate/t/loc_fil ................................ ok
+cpan/Unicode-Collate/t/loc_fiph ............................... ok
+cpan/Unicode-Collate/t/loc_fi ................................. ok
+cpan/Unicode-Collate/t/loc_fo ................................. ok
+cpan/Unicode-Collate/t/loc_fr ................................. ok
+cpan/Unicode-Collate/t/loc_gu ................................. ok
+cpan/Unicode-Collate/t/loc_ha ................................. ok
+cpan/Unicode-Collate/t/loc_haw ................................ ok
+cpan/Unicode-Collate/t/loc_hi ................................. ok
+cpan/Unicode-Collate/t/loc_hr ................................. ok
+cpan/Unicode-Collate/t/loc_hu ................................. ok
+cpan/Unicode-Collate/t/loc_hy ................................. ok
+cpan/Unicode-Collate/t/loc_ig ................................. ok
+cpan/Unicode-Collate/t/loc_is ................................. ok
+cpan/Unicode-Collate/t/loc_jait ............................... ok
+cpan/Unicode-Collate/t/loc_japr ............................... ok
+cpan/Unicode-Collate/t/loc_ja ................................. ok
+cpan/Unicode-Collate/t/loc_kk ................................. ok
+cpan/Unicode-Collate/t/loc_kl ................................. ok
+cpan/Unicode-Collate/t/loc_kn ................................. ok
+cpan/Unicode-Collate/t/loc_kok ................................ ok
+cpan/Unicode-Collate/t/loc_ko ................................. ok
+cpan/Unicode-Collate/t/loc_ln ................................. ok
+cpan/Unicode-Collate/t/loc_lt ................................. ok
+cpan/Unicode-Collate/t/loc_lv ................................. ok
+cpan/Unicode-Collate/t/loc_mk ................................. ok
+cpan/Unicode-Collate/t/loc_ml ................................. ok
+cpan/Unicode-Collate/t/loc_mr ................................. ok
+cpan/Unicode-Collate/t/loc_mt ................................. ok
+cpan/Unicode-Collate/t/loc_nb ................................. ok
+cpan/Unicode-Collate/t/loc_nn ................................. ok
+cpan/Unicode-Collate/t/loc_nso ................................ ok
+cpan/Unicode-Collate/t/loc_om ................................. ok
+cpan/Unicode-Collate/t/loc_or ................................. ok
+cpan/Unicode-Collate/t/loc_pa ................................. ok
+cpan/Unicode-Collate/t/loc_pl ................................. ok
+cpan/Unicode-Collate/t/loc_ro ................................. ok
+cpan/Unicode-Collate/t/loc_ru ................................. ok
+cpan/Unicode-Collate/t/loc_sa ................................. ok
+cpan/Unicode-Collate/t/loc_se ................................. ok
+cpan/Unicode-Collate/t/loc_sidt ............................... ok
+cpan/Unicode-Collate/t/loc_si ................................. ok
+cpan/Unicode-Collate/t/loc_sk ................................. ok
+cpan/Unicode-Collate/t/loc_sl ................................. ok
+cpan/Unicode-Collate/t/loc_sq ................................. ok
+cpan/Unicode-Collate/t/loc_srla ............................... ok
+cpan/Unicode-Collate/t/loc_sr ................................. ok
+cpan/Unicode-Collate/t/loc_svrf ............................... ok
+cpan/Unicode-Collate/t/loc_sv ................................. ok
+cpan/Unicode-Collate/t/loc_sw ................................. ok
+cpan/Unicode-Collate/t/loc_ta ................................. ok
+cpan/Unicode-Collate/t/loc_test ............................... ok
+cpan/Unicode-Collate/t/loc_te ................................. ok
+cpan/Unicode-Collate/t/loc_th ................................. ok
+cpan/Unicode-Collate/t/loc_tn ................................. ok
+cpan/Unicode-Collate/t/loc_to ................................. ok
+cpan/Unicode-Collate/t/loc_tr ................................. ok
+cpan/Unicode-Collate/t/loc_uk ................................. ok
+cpan/Unicode-Collate/t/loc_ur ................................. ok
+cpan/Unicode-Collate/t/loc_vi ................................. ok
+cpan/Unicode-Collate/t/loc_wae ................................ ok
+cpan/Unicode-Collate/t/loc_wo ................................. ok
+cpan/Unicode-Collate/t/loc_yo ................................. ok
+cpan/Unicode-Collate/t/loc_zhb5 ............................... ok
+cpan/Unicode-Collate/t/loc_zhgb ............................... ok
+cpan/Unicode-Collate/t/loc_zhpy ............................... ok
+cpan/Unicode-Collate/t/loc_zhst ............................... ok
+cpan/Unicode-Collate/t/loc_zh ................................. ok
+cpan/Unicode-Collate/t/loc_zhzy ............................... ok
+cpan/Unicode-Collate/t/nonchar ................................ ok
+cpan/Unicode-Collate/t/normal ................................. ok
+cpan/Unicode-Collate/t/notable ................................ ok
+cpan/Unicode-Collate/t/overcjk0 ............................... ok
+cpan/Unicode-Collate/t/overcjk1 ............................... ok
+cpan/Unicode-Collate/t/override ............................... ok
+cpan/Unicode-Collate/t/rearrang ............................... ok
+cpan/Unicode-Collate/t/rewrite ................................ ok
+cpan/Unicode-Collate/t/test ................................... ok
+cpan/Unicode-Collate/t/trailwt ................................ ok
+cpan/Unicode-Collate/t/variable ............................... ok
+cpan/Unicode-Collate/t/version ................................ ok
+cpan/Unicode-Collate/t/view ................................... ok
+cpan/Unicode-Normalize/t/fcdc ................................. ok
+cpan/Unicode-Normalize/t/form ................................. ok
+cpan/Unicode-Normalize/t/func ................................. ok
+cpan/Unicode-Normalize/t/illegal .............................. ok
+cpan/Unicode-Normalize/t/norm ................................. ok
+cpan/Unicode-Normalize/t/null ................................. ok
+cpan/Unicode-Normalize/t/partial1 ............................. ok
+cpan/Unicode-Normalize/t/partial2 ............................. ok
+cpan/Unicode-Normalize/t/proto ................................ ok
+cpan/Unicode-Normalize/t/split ................................ ok
+cpan/Unicode-Normalize/t/test ................................. ok
+cpan/Unicode-Normalize/t/tie .................................. ok
+cpan/version/t/00impl-pp ...................................... ok
+cpan/version/t/01base ......................................... ok
+cpan/version/t/02derived ...................................... ok
+cpan/version/t/03require ...................................... ok
+cpan/version/t/04strict_lax ................................... ok
+cpan/version/t/05sigdie ....................................... ok
+cpan/version/t/06noop ......................................... ok
+cpan/version/t/07locale ....................................... ok
+cpan/version/t/08_corelist .................................... ok
+cpan/version/t/09_list_util ................................... ok
+dist/Attribute-Handlers/t/constants ........................... ok
+dist/Attribute-Handlers/t/data_convert ........................ ok
+dist/Attribute-Handlers/t/linerep ............................. ok
+dist/Attribute-Handlers/t/multi ............................... ok
+dist/autouse/t/autouse ........................................ ok
+dist/base/t/base-open-chunk ................................... ok
+dist/base/t/base-open-line .................................... ok
+dist/base/t/base .............................................. ok
+dist/base/t/compile-time ...................................... ok
+dist/base/t/core-global ....................................... ok
+dist/base/t/fields-5_6_0 ...................................... skipped
+dist/base/t/fields-5_8_0 ...................................... skipped
+dist/base/t/fields-base ....................................... ok
+dist/base/t/fields ............................................ ok
+dist/base/t/isa ............................................... ok
+dist/base/t/sigdie ............................................ ok
+dist/base/t/version ........................................... ok
+dist/base/t/warnings .......................................... ok
+dist/bignum/t/big_e_pi ........................................ ok
+dist/bignum/t/bigexp .......................................... ok
+dist/bignum/t/bigint .......................................... ok
+dist/bignum/t/bignum .......................................... ok
+dist/bignum/t/bigrat .......................................... ok
+dist/bignum/t/bii_e_pi ........................................ ok
+dist/bignum/t/biinfnan ........................................ ok
+dist/bignum/t/bir_e_pi ........................................ ok
+dist/bignum/t/bninfnan ........................................ ok
+dist/bignum/t/bn_lite ......................................... skipped
+dist/bignum/t/brinfnan ........................................ ok
+dist/bignum/t/br_lite ......................................... skipped
+dist/bignum/t/in_effect ....................................... ok
+dist/bignum/t/option_a ........................................ ok
+dist/bignum/t/option_l ........................................ ok
+dist/bignum/t/option_p ........................................ ok
+dist/bignum/t/overrides ....................................... ok
+dist/bignum/t/ratopt_a ........................................ ok
+dist/bignum/t/scope_f ......................................... ok
+dist/bignum/t/scope_i ......................................... ok
+dist/bignum/t/scope_r ......................................... ok
+dist/Carp/t/arg_regexp ........................................ ok
+dist/Carp/t/arg_string ........................................ ok
+dist/Carp/t/baduni ............................................ ok
+dist/Carp/t/baduni_warnings ................................... ok
+dist/Carp/t/Carp_overload ..................................... ok
+dist/Carp/t/Carp .............................................. ok
+dist/Carp/t/errno ............................................. ok
+dist/Carp/t/heavy_mismatch .................................... ok
+dist/Carp/t/heavy ............................................. ok
+dist/Carp/t/stash_deletion .................................... ok
+dist/Carp/t/swash ............................................. ok
+dist/Carp/t/vivify_gv ......................................... ok
+dist/Carp/t/vivify_stash ...................................... ok
+dist/Carp/t/with_warnings ..................................... ok
+dist/constant/t/constant ...................................... ok
+dist/constant/t/utf8 .......................................... ok
+dist/Data-Dumper/t/bless ...................................... ok
+dist/Data-Dumper/t/bless_var_method ........................... ok
+dist/Data-Dumper/t/bugs ....................................... ok
+dist/Data-Dumper/t/deparse .................................... ok
+dist/Data-Dumper/t/dumper ..................................... ok
+dist/Data-Dumper/t/dumpperl ................................... ok
+dist/Data-Dumper/t/freezer .................................... ok
+dist/Data-Dumper/t/freezer_useperl ............................ ok
+dist/Data-Dumper/t/indent ..................................... ok
+dist/Data-Dumper/t/misc ....................................... ok
+dist/Data-Dumper/t/names ...................................... ok
+dist/Data-Dumper/t/overload ................................... ok
+dist/Data-Dumper/t/pair ....................................... ok
+dist/Data-Dumper/t/perl-74170 ................................. ok
+dist/Data-Dumper/t/purity_deepcopy_maxdepth ................... ok
+dist/Data-Dumper/t/qr ......................................... ok
+dist/Data-Dumper/t/quotekeys .................................. ok
+dist/Data-Dumper/t/recurse .................................... ok
+dist/Data-Dumper/t/seen ....................................... ok
+dist/Data-Dumper/t/sortkeys ................................... ok
+dist/Data-Dumper/t/sparseseen ................................. ok
+dist/Data-Dumper/t/terse ...................................... ok
+dist/Data-Dumper/t/toaster .................................... ok
+dist/Data-Dumper/t/values ..................................... ok
+dist/Devel-SelfStubber/t/Devel-SelfStubber .................... ok
+dist/Dumpvalue/t/Dumpvalue .................................... ok
+dist/Env/t/array .............................................. ok
+dist/Env/t/env ................................................ ok
+dist/Exporter/t/Exporter ...................................... ok
+dist/Exporter/t/warn .......................................... ok
+dist/ExtUtils-CBuilder/t/00-have-compiler ..................... cc: Warning: Option -x passed to ld, if ld is invoked, ignored otherwise
+cc: No valid input files specified, no output generated
+ok
+dist/ExtUtils-CBuilder/t/01-basic ............................. ok
+dist/ExtUtils-CBuilder/t/02-link .............................. ok
+dist/ExtUtils-CBuilder/t/03-cplusplus ......................... cc: Warning: Option -x passed to ld, if ld is invoked, ignored otherwise
+cc: No valid input files specified, no output generated
+skipped
+dist/ExtUtils-CBuilder/t/04-base .............................. ok
+dist/ExtUtils-ParseXS/t/001-basic ............................. ok
+dist/ExtUtils-ParseXS/t/002-more .............................. ok
+dist/ExtUtils-ParseXS/t/003-usage ............................. ok
+dist/ExtUtils-ParseXS/t/101-standard_typemap_locations ........ ok
+dist/ExtUtils-ParseXS/t/102-trim_whitespace ................... ok
+dist/ExtUtils-ParseXS/t/103-tidy_type ......................... ok
+dist/ExtUtils-ParseXS/t/104-map_type .......................... ok
+dist/ExtUtils-ParseXS/t/105-valid_proto_string ................ ok
+dist/ExtUtils-ParseXS/t/106-process_typemaps .................. ok
+dist/ExtUtils-ParseXS/t/108-map_type .......................... ok
+dist/ExtUtils-ParseXS/t/109-standard_XS_defs .................. ok
+dist/ExtUtils-ParseXS/t/110-assign_func_args .................. ok
+dist/ExtUtils-ParseXS/t/111-analyze_preprocessor_statements ... ok
+dist/ExtUtils-ParseXS/t/112-set_cond .......................... ok
+dist/ExtUtils-ParseXS/t/113-check_cond_preproc_statements ..... ok
+dist/ExtUtils-ParseXS/t/114-blurt_death_Warn .................. ok
+dist/ExtUtils-ParseXS/t/115-avoid-noise ....................... ok
+dist/ExtUtils-ParseXS/t/501-t-compile ......................... ok
+dist/ExtUtils-ParseXS/t/510-t-bare ............................ ok
+dist/ExtUtils-ParseXS/t/511-t-whitespace ...................... ok
+dist/ExtUtils-ParseXS/t/512-t-file ............................ ok
+dist/ExtUtils-ParseXS/t/513-t-merge ........................... ok
+dist/ExtUtils-ParseXS/t/514-t-embed ........................... ok
+dist/ExtUtils-ParseXS/t/515-t-cmd ............................. ok
+dist/ExtUtils-ParseXS/t/516-t-clone ........................... ok
+dist/ExtUtils-ParseXS/t/517-t-targetable ...................... ok
+dist/ExtUtils-ParseXS/t/600-t-compat .......................... ok
+dist/Filter-Simple/t/code_no_comments ......................... ok
+dist/Filter-Simple/t/data ..................................... ok
+dist/Filter-Simple/t/export ................................... ok
+dist/Filter-Simple/t/filter_only .............................. ok
+dist/Filter-Simple/t/filter ................................... ok
+dist/Filter-Simple/t/import ................................... ok
+dist/I18N-Collate/t/I18N-Collate .............................. ok
+dist/I18N-LangTags/t/01_about_verbose ......................... ok
+dist/I18N-LangTags/t/05_main .................................. ok
+dist/I18N-LangTags/t/07_listy ................................. ok
+dist/I18N-LangTags/t/10_http .................................. ok
+dist/I18N-LangTags/t/20_locales ............................... ok
+dist/I18N-LangTags/t/50_super ................................. ok
+dist/I18N-LangTags/t/55_supers_strict ......................... ok
+dist/I18N-LangTags/t/80_all_env ............................... ok
+dist/if/t/if .................................................. ok
+dist/IO/t/cachepropagate-tcp .................................. ok
+dist/IO/t/cachepropagate-udp .................................. ok
+dist/IO/t/cachepropagate-unix ................................. ok
+dist/IO/t/io_const ............................................ ok
+dist/IO/t/io_dir .............................................. ok
+dist/IO/t/io_dup .............................................. ok
+dist/IO/t/io_file_export ...................................... ok
+dist/IO/t/io_file ............................................. ok
+dist/IO/t/io_linenum .......................................... ok
+dist/IO/t/io_multihomed ....................................... ok
+dist/IO/t/io_pipe ............................................. ok
+dist/IO/t/io_poll ............................................. ok
+dist/IO/t/io_sel .............................................. ok
+dist/IO/t/io_sock ............................................. ok
+dist/IO/t/IO .................................................. ok
+dist/IO/t/io_taint ............................................ ok
+dist/IO/t/io_tell ............................................. ok
+dist/IO/t/io_udp .............................................. ok
+dist/IO/t/io_unix ............................................. ok
+dist/IO/t/io_utf8argv ......................................... ok
+dist/IO/t/io_utf8 ............................................. ok
+dist/IO/t/io_xs ............................................... ok
+dist/lib/t/01lib .............................................. ok
+dist/Locale-Maketext/t/01_about_verbose ....................... ok
+dist/Locale-Maketext/t/04_use_external_lex_cache .............. ok
+dist/Locale-Maketext/t/09_compile ............................. ok
+dist/Locale-Maketext/t/10_make ................................ ok
+dist/Locale-Maketext/t/20_get ................................. ok
+dist/Locale-Maketext/t/30_eval_dollar_at ...................... ok
+dist/Locale-Maketext/t/40_super ............................... ok
+dist/Locale-Maketext/t/50_super ............................... ok
+dist/Locale-Maketext/t/60_super ............................... ok
+dist/Locale-Maketext/t/70_fail_auto ........................... ok
+dist/Locale-Maketext/t/90_utf8 ................................ ok
+dist/Locale-Maketext/t/91_backslash ........................... ok
+dist/Math-BigInt-FastCalc/t/bigintfc .......................... ok
+dist/Math-BigInt-FastCalc/t/bootstrap ......................... ok
+dist/Math-BigInt-FastCalc/t/leak .............................. ok
+dist/Math-BigInt-FastCalc/t/mbi_rand .......................... ok
+dist/Math-BigInt/t/bare_mbf ................................... ok
+dist/Math-BigInt/t/bare_mbi ................................... ok
+dist/Math-BigInt/t/bare_mif ................................... ok
+dist/Math-BigInt/t/bigfltpm ................................... ok
+dist/Math-BigInt/t/bigintc .................................... ok
+dist/Math-BigInt/t/bigintpm ................................... ok
+dist/Math-BigInt/t/bigints .................................... ok
+dist/Math-BigInt/t/biglog ..................................... ok
+dist/Math-BigInt/t/big_pi_e ................................... ok
+dist/Math-BigInt/t/bigroot .................................... ok
+dist/Math-BigInt/t/calling .................................... ok
+dist/Math-BigInt/t/config ..................................... ok
+dist/Math-BigInt/t/constant ................................... ok
+dist/Math-BigInt/t/const_mbf .................................. ok
+dist/Math-BigInt/t/downgrade .................................. ok
+dist/Math-BigInt/t/_e_math .................................... ok
+dist/Math-BigInt/t/inf_nan .................................... ok
+dist/Math-BigInt/t/isa ........................................ ok
+dist/Math-BigInt/t/lib_load ................................... ok
+dist/Math-BigInt/t/mbf_ali .................................... ok
+dist/Math-BigInt/t/mbi_ali .................................... ok
+dist/Math-BigInt/t/mbimbf ..................................... ok
+dist/Math-BigInt/t/mbi_rand ................................... ok
+dist/Math-BigInt/t/nan_cmp .................................... ok
+dist/Math-BigInt/t/new_overloaded ............................. ok
+dist/Math-BigInt/t/req_mbf0 ................................... ok
+dist/Math-BigInt/t/req_mbf1 ................................... ok
+dist/Math-BigInt/t/req_mbfa ................................... ok
+dist/Math-BigInt/t/req_mbfi ................................... ok
+dist/Math-BigInt/t/req_mbfn ................................... ok
+dist/Math-BigInt/t/req_mbfw ................................... ok
+dist/Math-BigInt/t/require .................................... ok
+dist/Math-BigInt/t/round ...................................... ok
+dist/Math-BigInt/t/rt-16221 ................................... ok
+dist/Math-BigInt/t/sub_ali .................................... ok
+dist/Math-BigInt/t/sub_mbf .................................... ok
+dist/Math-BigInt/t/sub_mbi .................................... ok
+dist/Math-BigInt/t/sub_mif .................................... ok
+dist/Math-BigInt/t/trap ....................................... ok
+dist/Math-BigInt/t/upgrade2 ................................... ok
+dist/Math-BigInt/t/upgradef ................................... ok
+dist/Math-BigInt/t/upgrade .................................... ok
+dist/Math-BigInt/t/use_lib1 ................................... ok
+dist/Math-BigInt/t/use_lib2 ................................... ok
+dist/Math-BigInt/t/use_lib3 ................................... ok
+dist/Math-BigInt/t/use_lib4 ................................... ok
+dist/Math-BigInt/t/use_mbfw ................................... ok
+dist/Math-BigInt/t/use ........................................ ok
+dist/Math-BigInt/t/with_sub ................................... ok
+dist/Math-BigRat/t/big_ap ..................................... ok
+dist/Math-BigRat/t/bigfltrt ................................... ok
+dist/Math-BigRat/t/biglog ..................................... ok
+dist/Math-BigRat/t/bigratpm ................................... ok
+dist/Math-BigRat/t/bigrat ..................................... ok
+dist/Math-BigRat/t/bigratup ................................... ok
+dist/Math-BigRat/t/bigroot .................................... ok
+dist/Math-BigRat/t/bitwise .................................... ok
+dist/Math-BigRat/t/hang ....................................... ok
+dist/Math-BigRat/t/requirer ................................... ok
+dist/Math-BigRat/t/trap ....................................... ok
+dist/Module-CoreList/t/corelist ............................... ok
+dist/Module-CoreList/t/deprecated ............................. ok
+dist/Module-CoreList/t/find_modules ........................... ok
+dist/Module-CoreList/t/is_core ................................ ok
+dist/Module-CoreList/t/pod .................................... skipped
+dist/Module-CoreList/t/utils .................................. ok
+dist/Net-Ping/t/100_load ...................................... ok
+dist/Net-Ping/t/110_icmp_inst ................................. ok
+dist/Net-Ping/t/120_udp_inst .................................. ok
+dist/Net-Ping/t/130_tcp_inst .................................. ok
+dist/Net-Ping/t/140_stream_inst ............................... ok
+dist/Net-Ping/t/150_syn_inst .................................. ok
+dist/Net-Ping/t/190_alarm ..................................... skipped
+dist/Net-Ping/t/200_ping_tcp .................................. skipped
+dist/Net-Ping/t/250_ping_hires ................................ skipped
+dist/Net-Ping/t/300_ping_stream ............................... skipped
+dist/Net-Ping/t/400_ping_syn .................................. skipped
+dist/Net-Ping/t/410_syn_host .................................. skipped
+dist/Net-Ping/t/450_service ................................... ok
+dist/Net-Ping/t/500_ping_icmp ................................. ok
+dist/Net-Ping/t/510_ping_udp .................................. ok
+dist/Net-Ping/t/520_icmp_ttl .................................. ok
+dist/PathTools/t/abs2rel ...................................... ok
+dist/PathTools/t/crossplatform ................................ ok
+dist/PathTools/t/cwd .......................................... ok
+dist/PathTools/t/Functions .................................... ok
+dist/PathTools/t/rel2abs2rel .................................. ok
+dist/PathTools/t/Spec ......................................... ok
+dist/PathTools/t/Spec-taint ................................... ok
+dist/PathTools/t/taint ........................................ ok
+dist/PathTools/t/tmpdir ....................................... ok
+dist/PathTools/t/win32 ........................................ skipped
+dist/Safe/t/safe1 ............................................. ok
+dist/Safe/t/safe2 ............................................. ok
+dist/Safe/t/safe3 ............................................. ok
+dist/Safe/t/safeload .......................................... ok
+dist/Safe/t/safenamedcap ...................................... ok
+dist/Safe/t/safeops ........................................... ok
+dist/Safe/t/saferegexp ........................................ ok
+dist/Safe/t/safesecurity ...................................... ok
+dist/Safe/t/safesort .......................................... ok
+dist/Safe/t/safeuniversal ..................................... ok
+dist/Safe/t/safeutf8 .......................................... ok
+dist/Safe/t/safewrap .......................................... ok
+dist/Search-Dict/t/Dict ....................................... ok
+dist/SelfLoader/t/01SelfLoader ................................ ok
+dist/SelfLoader/t/02SelfLoader-buggy .......................... ok
+dist/SelfLoader/t/03taint ..................................... ok
+dist/Storable/t/attach_errors ................................. ok
+dist/Storable/t/attach_singleton .............................. ok
+dist/Storable/t/attach ........................................ ok
+dist/Storable/t/blessed ....................................... ok
+dist/Storable/t/canonical ..................................... ok
+dist/Storable/t/circular_hook ................................. ok
+dist/Storable/t/code .......................................... ok
+dist/Storable/t/compat01 ...................................... skipped
+dist/Storable/t/compat06 ...................................... ok
+dist/Storable/t/croak ......................................... ok
+dist/Storable/t/dclone ........................................ ok
+dist/Storable/t/destroy ....................................... ok
+dist/Storable/t/downgrade ..................................... ok
+dist/Storable/t/file_magic .................................... ok
+dist/Storable/t/forgive ....................................... ok
+dist/Storable/t/freeze ........................................ ok
+dist/Storable/t/integer ....................................... ok
+dist/Storable/t/interwork56 ................................... skipped
+dist/Storable/t/just_plain_nasty .............................. ok
+dist/Storable/t/leaks ......................................... skipped
+dist/Storable/t/lock .......................................... ok
+dist/Storable/t/malice ........................................ ok
+dist/Storable/t/overload ...................................... ok
+dist/Storable/t/recurse ....................................... ok
+dist/Storable/t/restrict ...................................... ok
+dist/Storable/t/retrieve ...................................... ok
+dist/Storable/t/robust ........................................ ok
+dist/Storable/t/sig_die ....................................... ok
+dist/Storable/t/store ......................................... ok
+dist/Storable/t/threads ....................................... ok
+dist/Storable/t/tied_hook ..................................... ok
+dist/Storable/t/tied_items .................................... ok
+dist/Storable/t/tied_store .................................... ok
+dist/Storable/t/tied .......................................... ok
+dist/Storable/t/utf8hash ...................................... ok
+dist/Storable/t/utf8 .......................................... ok
+dist/Storable/t/weak .......................................... ok
+dist/Term-Complete/t/Complete ................................. ok
+dist/Term-ReadLine/t/AE ....................................... skipped
+dist/Term-ReadLine/t/AETk ..................................... skipped
+dist/Term-ReadLine/t/ReadLine ................................. ok
+dist/Term-ReadLine/t/Tk ....................................... skipped
+dist/Text-Abbrev/t/Abbrev ..................................... ok
+dist/Thread-Queue/t/01_basic .................................. ok
+dist/Thread-Queue/t/02_refs ................................... ok
+dist/Thread-Queue/t/03_peek ................................... ok
+dist/Thread-Queue/t/04_errs ................................... ok
+dist/Thread-Queue/t/05_extract ................................ ok
+dist/Thread-Queue/t/06_insert ................................. ok
+dist/Thread-Queue/t/07_lock ................................... ok
+dist/Thread-Queue/t/08_nothreads .............................. ok
+dist/Thread-Queue/t/09_ended .................................. ok
+dist/Thread-Queue/t/10_timed .................................. ok
+dist/Thread-Semaphore/t/01_basic .............................. ok
+dist/Thread-Semaphore/t/02_errs ............................... ok
+dist/Thread-Semaphore/t/03_nothreads .......................... ok
+dist/Thread-Semaphore/t/04_nonblocking ........................ ok
+dist/Thread-Semaphore/t/05_force .............................. ok
+dist/threads-shared/t/0nothread ............................... ok
+dist/threads-shared/t/av_refs ................................. ok
+dist/threads-shared/t/av_simple ............................... ok
+dist/threads-shared/t/blessed ................................. ok
+dist/threads-shared/t/clone ................................... ok
+dist/threads-shared/t/cond .................................... ok
+dist/threads-shared/t/disabled ................................ ok
+dist/threads-shared/t/dualvar ................................. ok
+dist/threads-shared/t/hv_refs ................................. ok
+dist/threads-shared/t/hv_simple ............................... ok
+dist/threads-shared/t/no_share ................................ ok
+dist/threads-shared/t/object2 ................................. ok
+dist/threads-shared/t/object .................................. ok
+dist/threads-shared/t/shared_attr ............................. ok
+dist/threads-shared/t/stress .................................. ok
+dist/threads-shared/t/sv_refs ................................. ok
+dist/threads-shared/t/sv_simple ............................... ok
+dist/threads-shared/t/utf8 .................................... ok
+dist/threads-shared/t/waithires ............................... ok
+dist/threads-shared/t/wait .................................... ok
+dist/threads/t/basic .......................................... ok
+dist/threads/t/blocks ......................................... ok
+dist/threads/t/context ........................................ ok
+dist/threads/t/end ............................................ ok
+dist/threads/t/err ............................................ ok
+dist/threads/t/exit ........................................... ok
+dist/threads/t/free2 .......................................... ok
+dist/threads/t/free ........................................... ok
+dist/threads/t/join ........................................... ok
+dist/threads/t/kill2 .......................................... ok
+dist/threads/t/kill ........................................... ok
+dist/threads/t/libc ........................................... ok
+dist/threads/t/list ........................................... ok
+dist/threads/t/no_threads ..................................... skipped
+dist/threads/t/problems ....................................... ok
+dist/threads/t/stack_env ...................................... ok
+dist/threads/t/stack .......................................... ok
+dist/threads/t/state .......................................... ok
+dist/threads/t/stress_cv ...................................... ok
+dist/threads/t/stress_re ...................................... ok
+dist/threads/t/stress_string .................................. ok
+dist/threads/t/thread ......................................... ok
+dist/Tie-File/t/00_version .................................... ok
+dist/Tie-File/t/01_gen ........................................ ok
+dist/Tie-File/t/02_fetchsize .................................. ok
+dist/Tie-File/t/03_longfetch .................................. ok
+dist/Tie-File/t/04_splice ..................................... ok
+dist/Tie-File/t/05_size ....................................... ok
+dist/Tie-File/t/06_fixrec ..................................... ok
+dist/Tie-File/t/07_rv_splice .................................. ok
+dist/Tie-File/t/08_ro ......................................... ok
+dist/Tie-File/t/09_gen_rs ..................................... ok
+dist/Tie-File/t/10_splice_rs .................................. ok
+dist/Tie-File/t/11_rv_splice_rs ............................... ok
+dist/Tie-File/t/12_longfetch_rs ............................... ok
+dist/Tie-File/t/13_size_rs .................................... ok
+dist/Tie-File/t/14_lock ....................................... ok
+dist/Tie-File/t/15_pushpop .................................... ok
+dist/Tie-File/t/16_handle ..................................... ok
+dist/Tie-File/t/17_misc_meth .................................. ok
+dist/Tie-File/t/18_rs_fixrec .................................. ok
+dist/Tie-File/t/19_cache ...................................... ok
+dist/Tie-File/t/20_cache_full ................................. ok
+dist/Tie-File/t/21_win32 ...................................... skipped
+dist/Tie-File/t/22_autochomp .................................. ok
+dist/Tie-File/t/23_rv_ac_splice ............................... ok
+dist/Tie-File/t/24_cache_loop ................................. ok
+dist/Tie-File/t/25_gen_nocache ................................ ok
+dist/Tie-File/t/26_twrite ..................................... ok
+dist/Tie-File/t/27_iwrite ..................................... ok
+dist/Tie-File/t/28_mtwrite .................................... ok
+dist/Tie-File/t/29a_upcopy .................................... ok
+dist/Tie-File/t/29_downcopy ................................... ok
+dist/Tie-File/t/30_defer ...................................... ok
+dist/Tie-File/t/31_autodefer .................................. ok
+dist/Tie-File/t/32_defer_misc ................................. ok
+dist/Tie-File/t/33_defer_vs ................................... ok
+dist/Tie-File/t/40_abs_cache .................................. ok
+dist/Tie-File/t/41_heap ....................................... ok
+dist/Tie-File/t/42_offset ..................................... ok
+dist/XSLoader/t/XSLoader ...................................... ok
+ext/arybase/t/aeach ........................................... ok
+ext/arybase/t/aelem ........................................... ok
+ext/arybase/t/akeys ........................................... ok
+ext/arybase/t/arybase ......................................... ok
+ext/arybase/t/aslice .......................................... ok
+ext/arybase/t/av2arylen ....................................... ok
+ext/arybase/t/index ........................................... ok
+ext/arybase/t/lslice .......................................... ok
+ext/arybase/t/pos ............................................. ok
+ext/arybase/t/scope ........................................... ok
+ext/arybase/t/splice .......................................... ok
+ext/arybase/t/substr .......................................... ok
+ext/B/t/b ..................................................... ok
+ext/B/t/concise ............................................... ok
+ext/B/t/concise-xs ............................................ ok
+ext/B/t/f_map ................................................. ok
+ext/B/t/f_sort ................................................ ok
+ext/B/t/optree_check .......................................... ok
+ext/B/t/optree_concise ........................................ ok
+ext/B/t/optree_constants ...................................... ok
+ext/B/t/optree_misc ........................................... ok
+ext/B/t/optree_samples ........................................ ok
+ext/B/t/optree_sort ........................................... ok
+ext/B/t/optree_specials ....................................... ok
+ext/B/t/optree_varinit ........................................ ok
+ext/B/t/o ..................................................... ok
+ext/B/t/pragma ................................................ ok
+ext/B/t/showlex ............................................... ok
+ext/B/t/terse ................................................. ok
+ext/B/t/walkoptree ............................................ ok
+ext/B/t/xref .................................................. ok
+ext/Devel-Peek/t/Peek ......................................... ok
+ext/DynaLoader/t/DynaLoader ................................... ok
+ext/Errno/t/Errno ............................................. ok
+ext/Fcntl/t/autoload .......................................... ok
+ext/Fcntl/t/fcntl ............................................. ok
+ext/Fcntl/t/mode .............................................. ok
+ext/Fcntl/t/syslfs ............................................ skipped
+ext/FileCache/t/01open ........................................ ok
+ext/FileCache/t/02maxopen ..................................... ok
+ext/FileCache/t/03append ...................................... ok
+ext/FileCache/t/04twoarg ...................................... ok
+ext/FileCache/t/05override .................................... ok
+ext/FileCache/t/06export ...................................... ok
+ext/FileCache/t/07noimport .................................... ok
+ext/File-DosGlob/t/DosGlob .................................... ok
+ext/File-Find/t/find .......................................... ok
+ext/File-Find/t/taint ......................................... ok
+ext/File-Glob/t/basic ......................................... ok
+ext/File-Glob/t/case .......................................... ok
+ext/File-Glob/t/global ........................................ ok
+ext/File-Glob/t/rt114984 ...................................... ok
+ext/File-Glob/t/taint ......................................... ok
+ext/File-Glob/t/threads ....................................... ok
+ext/GDBM_File/t/fatal ......................................... ok
+ext/GDBM_File/t/gdbm .......................................... ok
+ext/Hash-Util-FieldHash/t/01_load ............................. ok
+ext/Hash-Util-FieldHash/t/02_function ......................... ok
+ext/Hash-Util-FieldHash/t/03_class ............................ ok
+ext/Hash-Util-FieldHash/t/04_thread ........................... ok
+ext/Hash-Util-FieldHash/t/05_perlhook ......................... ok
+ext/Hash-Util-FieldHash/t/11_hashassign ....................... ok
+ext/Hash-Util-FieldHash/t/12_hashwarn ......................... ok
+ext/Hash-Util/t/Util .......................................... ok
+ext/I18N-Langinfo/t/Langinfo .................................. ok
+ext/IPC-Open3/t/fd ............................................ ok
+ext/IPC-Open3/t/IPC-Open2 ..................................... ok
+ext/IPC-Open3/t/IPC-Open3 ..................................... ok
+ext/NDBM_File/t/ndbm .......................................... ok
+ext/ODBM_File/t/odbm .......................................... ok
+ext/Opcode/t/Opcode ........................................... ok
+ext/Opcode/t/ops .............................................. ok
+ext/PerlIO-encoding/t/encoding ................................ ok
+ext/PerlIO-encoding/t/fallback ................................ ok
+ext/PerlIO-encoding/t/nolooping ............................... ok
+ext/PerlIO-scalar/t/scalar .................................... ok
+ext/PerlIO-scalar/t/scalar_ungetc ............................. ok
+ext/PerlIO-via/t/via .......................................... ok
+ext/Pod-Functions/t/Functions ................................. ok
+ext/Pod-Html/t/anchorify ...................................... ok
+ext/Pod-Html/t/cache .......................................... ok
+ext/Pod-Html/t/crossref2 ...................................... ok
+ext/Pod-Html/t/crossref3 ...................................... ok
+ext/Pod-Html/t/crossref ....................................... ok
+ext/Pod-Html/t/eol ............................................ ok
+ext/Pod-Html/t/feature2 ....................................... ok
+ext/Pod-Html/t/feature ........................................ ok
+ext/Pod-Html/t/htmldir1 ....................................... ok
+ext/Pod-Html/t/htmldir2 ....................................... ok
+ext/Pod-Html/t/htmldir3 ....................................... ok
+ext/Pod-Html/t/htmldir4 ....................................... ok
+ext/Pod-Html/t/htmldir5 ....................................... ok
+ext/Pod-Html/t/htmlescp ....................................... ok
+ext/Pod-Html/t/htmllink ....................................... ok
+ext/Pod-Html/t/htmlview ....................................... ok
+ext/Pod-Html/t/poderr ......................................... ok
+ext/Pod-Html/t/podnoerr ....................................... ok
+ext/POSIX/t/export ............................................ ok
+ext/POSIX/t/is ................................................ ok
+ext/POSIX/t/math .............................................. ok
+ext/POSIX/t/posix ............................................. ok
+ext/POSIX/t/sigaction ......................................... ok
+ext/POSIX/t/sigset ............................................ ok
+ext/POSIX/t/strerror_errno .................................... ok
+ext/POSIX/t/sysconf ........................................... ok
+ext/POSIX/t/taint ............................................. ok
+ext/POSIX/t/termios ........................................... ok
+ext/POSIX/t/time .............................................. ok
+ext/POSIX/t/unimplemented ..................................... ok
+ext/POSIX/t/usage ............................................. ok
+ext/POSIX/t/waitpid ........................................... ok
+ext/POSIX/t/wrappers .......................................... ok
+ext/re/t/lexical_debug ........................................ ok
+ext/re/t/qr ................................................... ok
+ext/re/t/reflags .............................................. ok
+ext/re/t/re_funcs ............................................. ok
+ext/re/t/re_funcs_u ........................................... ok
+ext/re/t/regop ................................................ ok
+ext/re/t/re ................................................... ok
+ext/re/t/strict ............................................... ok
+ext/SDBM_File/t/constants ..................................... ok
+ext/SDBM_File/t/prep .......................................... ok
+ext/SDBM_File/t/sdbm .......................................... ok
+ext/Sys-Hostname/t/Hostname ................................... ok
+ext/Tie-Hash-NamedCapture/t/tiehash ........................... ok
+ext/Tie-Memoize/t/Tie-Memoize ................................. ok
+ext/XS-APItest/t/addissub ..................................... ok
+ext/XS-APItest/t/arrayexpr .................................... ok
+ext/XS-APItest/t/autoload ..................................... ok
+ext/XS-APItest/t/blockasexpr .................................. ok
+ext/XS-APItest/t/blockhooks-csc ............................... ok
+ext/XS-APItest/t/blockhooks ................................... ok
+ext/XS-APItest/t/call_checker ................................. ok
+ext/XS-APItest/t/caller ....................................... ok
+ext/XS-APItest/t/callregexec .................................. ok
+ext/XS-APItest/t/call ......................................... ok
+ext/XS-APItest/t/check_warnings ............................... ok
+ext/XS-APItest/t/cleanup ...................................... ok
+ext/XS-APItest/t/clone-with-stack ............................. ok
+ext/XS-APItest/t/cophh ........................................ ok
+ext/XS-APItest/t/coplabel ..................................... ok
+ext/XS-APItest/t/copstash ..................................... ok
+ext/XS-APItest/t/copyhints .................................... ok
+ext/XS-APItest/t/customop ..................................... ok
+ext/XS-APItest/t/cv_name ...................................... ok
+ext/XS-APItest/t/eval-filter .................................. ok
+ext/XS-APItest/t/exception .................................... ok
+ext/XS-APItest/t/fetch_pad_names .............................. ok
+ext/XS-APItest/t/gotosub ...................................... ok
+ext/XS-APItest/t/grok ......................................... ok
+ext/XS-APItest/t/gv_autoload4 ................................. ok
+ext/XS-APItest/t/gv_const_sv .................................. ok
+ext/XS-APItest/t/gv_fetchmeth_autoload ........................ ok
+ext/XS-APItest/t/gv_fetchmethod_flags ......................... ok
+ext/XS-APItest/t/gv_fetchmeth ................................. ok
+ext/XS-APItest/t/gv_init ...................................... ok
+ext/XS-APItest/t/handy ........................................ ok
+ext/XS-APItest/t/hash ......................................... ok
+ext/XS-APItest/t/join_with_space .............................. ok
+ext/XS-APItest/t/keyword_multiline ............................ ok
+ext/XS-APItest/t/keyword_plugin ............................... ok
+ext/XS-APItest/t/labelconst ................................... ok
+ext/XS-APItest/t/lexsub ....................................... ok
+ext/XS-APItest/t/locale ....................................... ok
+ext/XS-APItest/t/loopblock .................................... ok
+ext/XS-APItest/t/looprest ..................................... ok
+ext/XS-APItest/t/lvalue ....................................... ok
+ext/XS-APItest/t/magic_chain .................................. ok
+ext/XS-APItest/t/magic ........................................ ok
+ext/XS-APItest/t/mro .......................................... ok
+ext/XS-APItest/t/multicall .................................... ok
+ext/XS-APItest/t/my_cxt ....................................... ok
+ext/XS-APItest/t/my_exit ...................................... ok
+ext/XS-APItest/t/newCONSTSUB .................................. ok
+ext/XS-APItest/t/newDEFSVOP ................................... ok
+ext/XS-APItest/t/op_contextualize ............................. ok
+ext/XS-APItest/t/op_list ...................................... ok
+ext/XS-APItest/t/op ........................................... ok
+ext/XS-APItest/t/overload ..................................... ok
+ext/XS-APItest/t/pad_scalar ................................... ok
+ext/XS-APItest/t/peep ......................................... ok
+ext/XS-APItest/t/pmflag ....................................... ok
+ext/XS-APItest/t/postinc ...................................... ok
+ext/XS-APItest/t/printf ....................................... ok
+ext/XS-APItest/t/ptr_table .................................... ok
+ext/XS-APItest/t/push ......................................... ok
+ext/XS-APItest/t/refs ......................................... ok
+ext/XS-APItest/t/rmagical ..................................... ok
+ext/XS-APItest/t/rv2cv_op_cv .................................. ok
+ext/XS-APItest/t/savehints .................................... ok
+ext/XS-APItest/t/scopelessblock ............................... ok
+ext/XS-APItest/t/sort ......................................... ok
+ext/XS-APItest/t/stmtasexpr ................................... ok
+ext/XS-APItest/t/stmtsasexpr .................................. ok
+ext/XS-APItest/t/stuff_modify_bug ............................. ok
+ext/XS-APItest/t/stuff_svcur_bug .............................. ok
+ext/XS-APItest/t/subcall ...................................... ok
+ext/XS-APItest/t/svcat ........................................ ok
+ext/XS-APItest/t/sviscow ...................................... ok
+ext/XS-APItest/t/svpeek ....................................... ok
+ext/XS-APItest/t/svpv_magic ................................... ok
+ext/XS-APItest/t/svpv ......................................... ok
+ext/XS-APItest/t/svsetsv ...................................... ok
+ext/XS-APItest/t/swaplabel .................................... ok
+ext/XS-APItest/t/swaptwostmts ................................. ok
+ext/XS-APItest/t/sym-hook ..................................... ok
+ext/XS-APItest/t/synthetic_scope .............................. ok
+ext/XS-APItest/t/temp_lv_sub .................................. ok
+ext/XS-APItest/t/underscore_length ............................ ok
+ext/XS-APItest/t/utf16_to_utf8 ................................ ok
+ext/XS-APItest/t/utf8 ......................................... ok
+ext/XS-APItest/t/weaken ....................................... ok
+ext/XS-APItest/t/whichsig ..................................... ok
+ext/XS-APItest/t/xs_special_subs_require ...................... ok
+ext/XS-APItest/t/xs_special_subs .............................. ok
+ext/XS-APItest/t/xsub_h ....................................... ok
+ext/XS-Typemap/t/Typemap ...................................... ok
+lib/AnyDBM_File ............................................... ok
+lib/B/Deparse-core ............................................ ok
+lib/B/Deparse-subclass ........................................ ok
+lib/B/Deparse ................................................. ok
+lib/Benchmark ................................................. ok
+lib/blib ...................................................... ok
+lib/bytes ..................................................... ok
+lib/charnames ................................................. ok
+lib/Class/Struct .............................................. ok
+lib/Config/Extensions ......................................... ok
+lib/Config .................................................... ok
+lib/DBM_Filter/t/01error ...................................... ok
+lib/DBM_Filter/t/02core ....................................... ok
+lib/DBM_Filter/t/compress ..................................... ok
+lib/DBM_Filter/t/encode ....................................... ok
+lib/DBM_Filter/t/int32 ........................................ ok
+lib/DBM_Filter/t/null ......................................... ok
+lib/DBM_Filter/t/utf8 ......................................... ok
+lib/DB ........................................................ ok
+lib/diagnostics ............................................... ok
+lib/DirHandle ................................................. ok
+lib/dumpvar ................................................... ok
+lib/English ................................................... ok
+lib/ExtUtils/t/Embed .......................................... ok
+lib/feature ................................................... ok
+lib/feature/unicode_strings ................................... ok
+lib/File/Basename ............................................. ok
+lib/File/Compare .............................................. ok
+lib/File/Copy ................................................. ok
+lib/FileHandle ................................................ ok
+lib/File/stat-7896 ............................................ ok
+lib/File/stat ................................................. ok
+lib/filetest .................................................. ok
+lib/FindBin ................................................... ok
+lib/Getopt/Std ................................................ ok
+lib/h2ph ...................................................... ok
+lib/h2xs ...................................................... ok
+lib/integer ................................................... ok
+lib/Internals ................................................. ok
+lib/less ...................................................... ok
+lib/locale .................................................... Argument "ð" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ð" isn't numeric in numeric ne (!=) at ../lib/locale.t line 1373.
+Argument "ñ" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ò" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ó" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ô" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "õ" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ö" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "÷" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ø" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+Argument "ù" isn't numeric in subtraction (-) at ../lib/locale.t line 1373.
+ok
+lib/meta_notation ............................................. ok
+lib/Net/hostent ............................................... ok
+lib/Net/netent ................................................ ok
+lib/Net/protoent .............................................. ok
+lib/Net/servent ............................................... ok
+lib/open ...................................................... ok
+lib/overload64 ................................................ ok
+lib/overloading ............................................... ok
+lib/overload .................................................. ok
+lib/perl5db ................................................... ok
+lib/Pod/t/InputObjects ........................................ ok
+lib/Pod/t/Select .............................................. ok
+lib/Pod/t/Usage ............................................... ok
+lib/Pod/t/utils ............................................... ok
+lib/SelectSaver ............................................... ok
+lib/sigtrap ................................................... ok
+lib/sort ...................................................... ok
+lib/strict .................................................... ok
+lib/subs ...................................................... ok
+lib/Symbol .................................................... ok
+lib/Thread .................................................... ok
+lib/Tie/Array/push ............................................ ok
+lib/Tie/Array/splice .......................................... ok
+lib/Tie/Array/stdpush ......................................... ok
+lib/Tie/Array/std ............................................. ok
+lib/Tie/ExtraHash ............................................. ok
+lib/Tie/Handle/stdhandle_from_handle .......................... ok
+lib/Tie/Handle/stdhandle ...................................... ok
+lib/Tie/Hash .................................................. ok
+lib/Tie/Scalar ................................................ ok
+lib/Tie/SubstrHash ............................................ ok
+lib/Time/gmtime ............................................... ok
+lib/Time/localtime ............................................ ok
+lib/Unicode/UCD ............................................... ok
+lib/User/grent ................................................ ok
+lib/User/pwent ................................................ ok
+lib/utf8 ...................................................... ok
+lib/vars_carp ................................................. ok
+lib/vars ...................................................... ok
+lib/vmsish .................................................... ok
+lib/warnings .................................................. ok
+All tests successful.
+make[1]: Leaving directory '$(@D)'