From 760a1d4f81d2cd5853e46625b1804ed15a700912 Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Fri, 26 Jul 2013 21:12:01 +1200 Subject: [PATCH] Build results of fddbd72 (on master) --- Build | 58 - Build.PL | 38 +- Changes | 37 + Debian_CPANTS.txt | 1945 ------------------------- LICENSE | 6 +- META.json | 169 ++- META.yml | 153 +- MYMETA.json | 410 ------ MYMETA.yml | 317 ---- README | 4 +- _build/auto_features | 2 - _build/build_params | 139 -- _build/cleanup | 4 - _build/config_data | 2 - _build/features | 2 - _build/magicnum | 1 - _build/notes | 2 - _build/prereqs | 28 - _build/runtime_params | 2 - blib/lib/Data/Handle.pm | 402 ----- blib/lib/Data/Handle/Exception.pm | 235 --- blib/lib/Data/Handle/IO.pm | 82 -- blib/libdoc/Data::Handle.3 | 249 ---- blib/libdoc/Data::Handle::Exception.3 | 215 --- blib/libdoc/Data::Handle::IO.3 | 166 --- lib/Data/Handle.pm | 17 +- lib/Data/Handle/Exception.pm | 9 +- lib/Data/Handle/IO.pm | 8 +- perlcritic.rc | 2 +- t/00-compile.t | 1 + t/000-report-versions-tiny.t | 18 +- xt/release/cpan-changes.t | 12 +- 32 files changed, 288 insertions(+), 4447 deletions(-) delete mode 100755 Build delete mode 100644 Debian_CPANTS.txt delete mode 100644 MYMETA.json delete mode 100644 MYMETA.yml delete mode 100644 _build/auto_features delete mode 100644 _build/build_params delete mode 100644 _build/cleanup delete mode 100644 _build/config_data delete mode 100644 _build/features delete mode 100644 _build/magicnum delete mode 100644 _build/notes delete mode 100644 _build/prereqs delete mode 100644 _build/runtime_params delete mode 100644 blib/lib/Data/Handle.pm delete mode 100644 blib/lib/Data/Handle/Exception.pm delete mode 100644 blib/lib/Data/Handle/IO.pm delete mode 100644 blib/libdoc/Data::Handle.3 delete mode 100644 blib/libdoc/Data::Handle::Exception.3 delete mode 100644 blib/libdoc/Data::Handle::IO.3 diff --git a/Build b/Build deleted file mode 100755 index 295e89a..0000000 --- a/Build +++ /dev/null @@ -1,58 +0,0 @@ -#! /home/kent/perl5/perlbrew/perls/perl-5.16.0/bin/perl5.16.0 - -use strict; -use Cwd; -use File::Basename; -use File::Spec; - -sub magic_number_matches { - return 0 unless -e '_build/magicnum'; - local *FH; - open FH, '_build/magicnum' or return 0; - my $filenum = ; - close FH; - return $filenum == 382438; -} - -my $progname; -my $orig_dir; -BEGIN { - $^W = 1; # Use warnings - $progname = basename($0); - $orig_dir = Cwd::cwd(); - my $base_dir = '/home/kent/perl/Data-Handle/Data-Handle-0.02001002'; - if (!magic_number_matches()) { - unless (chdir($base_dir)) { - die ("Couldn't chdir($base_dir), aborting\n"); - } - unless (magic_number_matches()) { - die ("Configuration seems to be out of date, please re-run 'perl Build.PL' again.\n"); - } - } - unshift @INC, - ( - - ); -} - -close(*DATA) unless eof(*DATA); # ensure no open handles to this script - -use Module::Build; -Module::Build->VERSION(q{0.4002}); - -# Some platforms have problems setting $^X in shebang contexts, fix it up here -$^X = Module::Build->find_perl_interpreter; - -if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) { - warn "Warning: Build.PL has been altered. You may need to run 'perl Build.PL' again.\n"; -} - -# This should have just enough arguments to be able to bootstrap the rest. -my $build = Module::Build->resume ( - properties => { - config_dir => '_build', - orig_dir => $orig_dir, - }, -); - -$build->dispatch; diff --git a/Build.PL b/Build.PL index 5d3393a..9420cb7 100644 --- a/Build.PL +++ b/Build.PL @@ -7,23 +7,17 @@ use Module::Build 0.3601; my %module_build_args = ( "build_requires" => { - "Data::Dumper" => 0, - "File::Find" => 0, - "File::Temp" => 0, - "IO::Handle" => 0, - "Module::Build" => "0.4002", - "Test::Fatal" => 0, - "Test::More" => "0.98" + "Module::Build" => "0.4005" }, "configure_requires" => { - "Module::Build" => "0.4002" + "Module::Build" => "0.4005" }, "dist_abstract" => "A Very simple interface to the __DATA__ file handle.", "dist_author" => [ "Kent Fredric " ], "dist_name" => "Data-Handle", - "dist_version" => "0.02001002", + "dist_version" => "0.02001003", "license" => "perl", "module_name" => "Data::Handle", "recommends" => {}, @@ -31,7 +25,7 @@ my %module_build_args = ( "requires" => { "Carp" => "1.22", "IO::File" => 0, - "Package::Stash" => 0, + "Package::Stash" => "0.15", "Scalar::Util" => 0, "Symbol" => 0, "Term::ANSIColor" => 0, @@ -42,10 +36,32 @@ my %module_build_args = ( "strict" => 0, "warnings" => 0 }, - "script_files" => [] + "script_files" => [], + "test_requires" => { + "Data::Dumper" => 0, + "File::Find" => 0, + "File::Temp" => 0, + "IO::Handle" => 0, + "Test::Fatal" => 0, + "Test::More" => "0.98", + "lib" => 0 + } ); +unless ( eval { Module::Build->VERSION(0.4004) } ) { + my $tr = delete $module_build_args{test_requires}; + my $br = $module_build_args{build_requires}; + for my $mod ( keys %$tr ) { + if ( exists $br->{$mod} ) { + $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod}; + } + else { + $br->{$mod} = $tr->{$mod}; + } + } +} + my $build = Module::Build->new(%module_build_args); $build->create_build_script; diff --git a/Changes b/Changes index 7d52130..78d13a6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,42 @@ Revision history for Data-Handle +0.02001003 2013-07-26T09:11:29Z + [Bugfixes] + - No longer broken on modern Package::Stash's + + [Dependencies::Added / develop requires] + - Pod::Coverage::TrustPod + - Test::CPAN::Changes 0.19 + - Test::CPAN::Meta + - Test::Pod 1.41 + - Test::Pod::Coverage 1.08 + - version 0.9901 + + [Dependencies::Added / test requires] + - lib + + [Dependencies::Changed / build requires] + - Module::Build 0.4002 → 0.4005 + + [Dependencies::Changed / configure requires] + - Module::Build 0.4002 → 0.4005 + + [Dependencies::Changed / develop suggests] + - Dist::Zilla::PluginBundle::Author::KENTNL v1.5.0 → v1.7.4 + + [Dependencies::Changed / runtime requires] + - Package::Stash 0 → 0.15 + + [Documentation] + - Updated copyright year + - Added README.mkdn + + [Meta] + - Bug tracker moved to github + + [Packaging] + - use test_requires (mb 0.4004) + 0.02001002 2012-08-11T01:59:03Z - Minor Maintenance Release. diff --git a/Debian_CPANTS.txt b/Debian_CPANTS.txt deleted file mode 100644 index 50305ae..0000000 --- a/Debian_CPANTS.txt +++ /dev/null @@ -1,1945 +0,0 @@ -debian_pkg, CPAN_dist, CPAN_vers, N_bugs, N_patches -"cpan-listchanges", "cpan-listchanges", "0.05", "0", "0" -"cpanminus", "App-cpanminus", "1.4006", "0", "0" -"dh-make-perl", "https://alioth.debian.org/frs/download.php/3502/dh-make-perl_0.72.orig.tar.gz", "0.72", "12", "0" -"eekboek", "http://www.eekboek.nl/dl/EekBoek-2.00.03.tar.gz", "2.00.03", "2", "0" -"gearman-server", "Gearman-Server", "1.11", "1", "1" -"get-flash-videos", "http://googlecode.debian.net/p/get-flash-videos/App-get_flash_videos-1.24.tar.gz", "1.24", "0", "3" -"jifty", "Jifty", "0.91117", "1", "1" -"kephra", "Kephra", "not-uploaded", "0", "0" -"libacme-bleach-perl", "Acme-Bleach", "1.12", "0", "1" -"libacme-damn-perl", "Acme-Damn", "0.04", "0", "0" -"libacme-eyedrops-perl", "Acme-EyeDrops", "1.55", "0", "0" -"libacme-poe-knee-perl", "Acme-POE-Knee", "1.10", "0", "1" -"libalgorithm-c3-perl", "Algorithm-C3", "0.08", "0", "0" -"libalgorithm-diff-perl", "Algorithm-Diff", "1.19.02", "0", "2" -"libalgorithm-diff-xs-perl", "Algorithm-Diff-XS", "0.04", "0", "0" -"libalgorithm-merge-perl", "Algorithm-Merge", "0.08", "0", "1" -"libalgorithm-munkres-perl", "Algorithm-Munkres", "0.08", "0", "0" -"libalgorithm-permute-perl", "Algorithm-Permute", "0.12", "0", "0" -"libalias-perl", "Alias", "2.32", "0", "0" -"libaliased-perl", "aliased", "0.30", "0", "0" -"libalien-wxwidgets-perl", "Alien-wxWidgets", "0.51", "0", "1" -"libalzabo-perl", "Alzabo", "0.92", "0", "0" -"libamazon-sqs-simple-perl", "Amazon-SQS-Simple", "1.06", "0", "0" -"libany-moose-perl", "Any-Moose", "0.14", "0", "1" -"libanydata-perl", "AnyData", "0.10", "0", "3" -"libanyevent-dbi-perl", "AnyEvent-DBI", "2.1", "0", "1" -"libanyevent-http-perl", "AnyEvent-HTTP", "2.11", "0", "0" -"libanyevent-irc-perl", "AnyEvent-IRC", "0.96", "0", "1" -"libanyevent-perl", "AnyEvent", "5.340", "0", "0" -"libanyevent-redis-perl", "AnyEvent-Redis", "0.23", "0", "0" -"libapache-asp-perl", "Apache-ASP", "2.61", "1", "2" -"libapache-authenhook-perl", "Apache-AuthenHook", "2.00-04", "0", "0" -"libapache-authznetldap-perl", "Apache-AuthzNetLDAP", "0.07", "0", "2" -"libapache-configfile-perl", "Apache-ConfigFile", "1.18", "0", "4" -"libapache-db-perl", "Apache-DB", "0.14", "0", "1" -"libapache-dbi-perl", "Apache-DBI", "1.10", "0", "3" -"libapache-dbilogger-perl", "Apache-DBILogger", "0.93", "0", "1" -"libapache-htgroup-perl", "Apache-Htgroup", "1.23", "1", "0" -"libapache-session-perl", "Apache-Session", "1.89", "0", "1" -"libapache-session-wrapper-perl", "Apache-Session-Wrapper", "0.34", "0", "0" -"libapache-sessionx-perl", "Apache-SessionX", "2.01", "2", "2" -"libapache2-authcassimple-perl", "Apache2-AuthCASSimple", "0.10", "1", "0" -"libapache2-authcookie-perl", "Apache-AuthCookie", "3.18", "0", "1" -"libapache2-authenntlm-perl", "Apache2-AuthenNTLM", "0.02", "0", "0" -"libapache2-mod-perl2", "http://perl.apache.org/dist/mod_perl-2.0.5.tar.gz", "2.0.5", "11", "11" -"libapache2-reload-perl", "Apache-Reload", "0.11", "1", "1" -"libapp-cli-perl", "App-CLI", "0.313", "0", "2" -"libapp-cmd-perl", "App-Cmd", "0.311", "0", "0" -"libapp-control-perl", "App-Control", "1.02", "0", "0" -"libapp-daemon-perl", "App-Daemon", "0.11", "0", "0" -"libapp-nopaste-perl", "App-Nopaste", "0.28", "0", "0" -"libapp-options-perl", "App-Options", "1.12", "0", "0" -"libapp-rad-perl", "App-Rad", "1.04", "0", "0" -"libapp-repl-perl", "App-REPL", "0.012", "0", "0" -"libarch-perl", "Arch", "0.5.2", "0", "0" -"libarchive-any-perl", "Archive-Any", "0.0932", "0", "0" -"libarchive-ar-perl", "Archive-Ar", "1.14", "0", "0" -"libarchive-zip-perl", "Archive-Zip", "1.30", "2", "3" -"libarray-compare-perl", "Array-Compare", "2.01", "0", "0" -"libarray-diff-perl", "Array-Diff", "0.07", "0", "0" -"libarray-printcols-perl", "Array-PrintCols", "2.1", "0", "0" -"libarray-unique-perl", "Array-Unique", "0.08", "0", "0" -"libasa-perl", "asa", "0.02", "0", "0" -"libaspect-perl", "Aspect", "0.96", "0", "0" -"libastro-fits-cfitsio-perl", "Astro-FITS-CFITSIO", "1.05", "2", "0" -"libastro-fits-header-perl", "Astro-FITS-Header", "3.03", "0", "1" -"libasync-interrupt-perl", "Async-Interrupt", "1.05", "0", "0" -"libasync-mergepoint-perl", "Async-MergePoint", "0.03", "0", "0" -"libaudio-cd-perl", "http://www.vanhemert.co.uk/disc-cover.html/files/Audio-CD-0.05.tar.gz", "0.05", "0", "1" -"libaudio-ecasound-perl", "Audio-Ecasound", "1.01", "1", "1" -"libaudio-file-perl", "Audio-File", "0.11", "1", "1" -"libaudio-flac-decoder-perl", "Audio-FLAC-Decoder", "0.3", "1", "2" -"libaudio-flac-header-perl", "Audio-FLAC-Header", "2.4", "0", "0" -"libaudio-moosic-perl", "Audio-Moosic", "0.10", "1", "0" -"libaudio-mpd-common-perl", "Audio-MPD-Common", "1.110550", "0", "0" -"libaudio-mpd-perl", "Audio-MPD", "1.110560", "0", "0" -"libaudio-musepack-perl", "Audio-Musepack", "1.0.1", "0", "0" -"libaudio-rpld-perl", "Audio-RPLD", "0.003", "0", "1" -"libaudio-scan-perl", "Audio-Scan", "0.87", "0", "0" -"libaudio-wav-perl", "Audio-Wav", "0.12", "0", "1" -"libaudio-wma-perl", "Audio-WMA", "1.3", "0", "0" -"libauth-yubikey-decrypter-perl", "Auth-Yubikey_Decrypter", "0.07", "0", "0" -"libauth-yubikey-webclient-perl", "Auth-Yubikey_WebClient", "2.00", "0", "0" -"libauthen-bitcard-perl", "Authen-Bitcard", "0.89", "0", "1" -"libauthen-captcha-perl", "Authen-Captcha", "1.023", "0", "2" -"libauthen-cas-client-perl", "Authen-CAS-Client", "0.05", "0", "0" -"libauthen-dechpwd-perl", "Authen-DecHpwd", "2.005", "0", "0" -"libauthen-krb5-admin-perl", "Authen-Krb5-Admin", "0.11", "0", "2" -"libauthen-krb5-perl", "Krb5", "1.9", "0", "3" -"libauthen-krb5-simple-perl", "Authen-Krb5-Simple", "0.42", "0", "0" -"libauthen-ntlm-perl", "NTLM", "1.08", "0", "1" -"libauthen-pam-perl", "Authen-PAM", "0.16", "0", "0" -"libauthen-passphrase-perl", "Authen-Passphrase", "0.007", "0", "0" -"libauthen-radius-perl", "RadiusPerl", "0.20", "0", "3" -"libauthen-sasl-cyrus-perl", "Authen-SASL-Cyrus", "0.13-server", "0", "7" -"libauthen-sasl-perl", "Authen-SASL", "2.1500", "0", "1" -"libauthen-simple-cdbi-perl", "Authen-Simple-CDBI", "0.2", "0", "0" -"libauthen-simple-dbi-perl", "Authen-Simple-DBI", "0.2", "0", "0" -"libauthen-simple-dbm-perl", "Authen-Simple-DBM", "0.2", "0", "0" -"libauthen-simple-http-perl", "Authen-Simple-HTTP", "0.2", "0", "0" -"libauthen-simple-kerberos-perl", "Authen-Simple-Kerberos", "0.1", "0", "0" -"libauthen-simple-ldap-perl", "Authen-Simple-LDAP", "0.2", "0", "0" -"libauthen-simple-net-perl", "Authen-Simple-Net", "0.2", "0", "0" -"libauthen-simple-pam-perl", "Authen-Simple-PAM", "0.2", "0", "0" -"libauthen-simple-passwd-perl", "Authen-Simple-Passwd", "0.6", "0", "0" -"libauthen-simple-perl", "Authen-Simple", "0.4", "0", "0" -"libauthen-simple-radius-perl", "Authen-Simple-RADIUS", "0.1", "0", "0" -"libauthen-simple-smb-perl", "Authen-Simple-SMB", "0.1", "0", "0" -"libauthen-smb-perl", "Authen-Smb", "0.91", "0", "1" -"libauthen-tacacsplus-perl", "Authen-TacacsPlus", "0.20", "0", "0" -"libautobox-core-perl", "autobox-Core", "1.2", "0", "0" -"libautobox-list-util-perl", "autobox-List-Util", "20090629", "0", "0" -"libautobox-perl", "autobox", "2.72", "0", "1" -"libautodie-perl", "autodie", "2.10", "0", "0" -"libautovivification-perl", "autovivification", "0.09", "0", "0" -"libb-hooks-endofscope-perl", "B-Hooks-EndOfScope", "0.08", "0", "0" -"libb-hooks-op-annotation-perl", "B-Hooks-OP-Annotation", "0.44", "0", "0" -"libb-hooks-op-check-perl", "B-Hooks-OP-Check", "0.18", "0", "0" -"libb-hooks-op-ppaddr-perl", "B-Hooks-OP-PPAddr", "0.03", "0", "0" -"libb-hooks-parser-perl", "B-Hooks-Parser", "0.09", "0", "0" -"libb-keywords-perl", "B-Keywords", "1.09", "0", "0" -"libb-perlreq-perl", "rpm-build-perl", "0.74", "0", "1" -"libb-utils-perl", "B-Utils", "0.13", "0", "0" -"libbarcode-code128-perl", "Barcode-Code128", "2.01", "0", "1" -"libbenchmark-progressbar-perl", "Benchmark-ProgressBar", "0.00001", "0", "0" -"libbenchmark-timer-perl", "Benchmark-Timer", "0.7102", "0", "0" -"libbiblio-citation-parser-perl", "Biblio-Citation-Parser", "1.10", "0", "1" -"libbiblio-endnotestyle-perl", "Biblio-EndnoteStyle", "0.05", "0", "0" -"libbio-asn1-entrezgene-perl", "unknown", "1.091", "0", "0" -"libbio-primerdesigner-perl", "Bio-PrimerDesigner", "0.07", "0", "0" -"libbio-scf-perl", "Bio-SCF", "1.03", "1", "0" -"libbit-vector-minimal-perl", "Bit-Vector-Minimal", "1.3", "0", "0" -"libbit-vector-perl", "Bit-Vector", "7.1", "1", "0" -"libboolean-perl", "boolean", "0.26", "0", "0" -"libboulder-perl", "Boulder", "1.30", "0", "2" -"libbrowser-open-perl", "Browser-Open", "0.03", "0", "0" -"libbsd-resource-perl", "BSD-Resource", "1.2904", "0", "0" -"libbusiness-isbn-data-perl", "Business-ISBN-Data", "20081208", "0", "1" -"libbusiness-isbn-perl", "Business-ISBN", "2.05", "0", "0" -"libbusiness-issn-perl", "Business-ISSN", "0.91", "0", "0" -"libbusiness-onlinepayment-ippay-perl", "Business-OnlinePayment-IPPay", "0.06", "0", "1" -"libbusiness-onlinepayment-openecho-perl", "Business-OnlinePayment-OpenECHO", "0.03", "0", "0" -"libbusiness-onlinepayment-payflowpro-perl", "Business-OnlinePayment-PayflowPro", "1.01", "0", "0" -"libbusiness-onlinepayment-paymentech-perl", "Business-OnlinePayment-PaymenTech", "2.04", "0", "0" -"libbusiness-onlinepayment-perl", "Business-OnlinePayment", "3.01", "0", "1" -"libbusiness-paypal-api-perl", "Business-PayPal-API", "0.69", "0", "0" -"libbusiness-tax-vat-validation-perl", "Business-Tax-VAT-Validation", "0.20", "0", "0" -"libc-scan-perl", "C-Scan", "not-uploaded", "0", "0" -"libcache-cache-perl", "Cache-Cache", "1.06", "0", "0" -"libcache-fastmmap-perl", "Cache-FastMmap", "1.36", "0", "0" -"libcache-historical-perl", "Cache-Historical", "0.05", "0", "0" -"libcache-memcached-managed-perl", "Cache-Memcached-Managed", "0.20", "0", "1" -"libcache-memcached-perl", "Cache-Memcached", "1.29", "0", "1" -"libcache-mmap-perl", "Cache-Mmap", "0.11", "0", "0" -"libcache-simple-timedexpiry-perl", "Cache-Simple-TimedExpiry", "0.27", "0", "1" -"libcairo-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Cairo-1.070.tar.gz", "1.070", "0", "1" -"libcalendar-simple-perl", "Calendar-Simple", "1.21", "0", "0" -"libcaptcha-recaptcha-perl", "Captcha-reCAPTCHA", "0.94", "0", "0" -"libcapture-tiny-perl", "Capture-Tiny", "0.10", "0", "0" -"libcarp-always-perl", "Carp-Always", "0.09", "0", "0" -"libcarp-assert-more-perl", "Carp-Assert-More", "1.12", "0", "0" -"libcarp-assert-perl", "Carp-Assert", "0.20", "0", "0" -"libcarp-clan-perl", "Carp-Clan", "6.04", "0", "0" -"libcarp-clan-share-perl", "Carp-Clan-Share", "0.013", "0", "0" -"libcarp-datum-perl", "Carp-Datum", "0.1.3", "0", "1" -"libcatalyst-action-rest-perl", "Catalyst-Action-REST", "0.90", "0", "0" -"libcatalyst-controller-actionrole-perl", "Catalyst-Controller-ActionRole", "not-uploaded", "0", "0" -"libcatalyst-devel-perl", "Catalyst-Devel", "1.31", "0", "0" -"libcatalyst-engine-apache-perl", "Catalyst-Engine-Apache", "1.16", "0", "0" -"libcatalyst-engine-psgi-perl", "Catalyst-Engine-PSGI", "0.12", "0", "1" -"libcatalyst-manual-perl", "Catalyst-Manual", "5.8007", "0", "0" -"libcatalyst-model-cdbi-perl", "Catalyst-Model-CDBI", "0.12", "0", "0" -"libcatalyst-perl", "Catalyst-Runtime", "5.80032", "0", "0" -"libcatalyst-plugin-server-perl", "Catalyst-Plugin-Server", "not-uploaded", "0", "1" -"libcatalyst-plugin-session-store-memcached-perl", "Catalyst-Plugin-Session-Store-Memcached", "not-uploaded", "0", "0" -"libcatalyst-view-tt-perl", "Catalyst-View-TT", "0.36", "0", "0" -"libcatalystx-leakchecker-perl", "CatalystX-LeakChecker", "0.06", "0", "0" -"libcddb-file-perl", "CDDB-File", "1.05", "0", "0" -"libcddb-get-perl", "CDDB_get", "2.27", "1", "0" -"libcddb-perl", "CDDB", "1.220", "0", "1" -"libcdk-perl", "ftp://invisible-island.net/cdk/cdk-perl-20031210.tgz", "4.9.10", "0", "3" -"libcgi-ajax-perl", "CGI-Ajax", "0.707", "0", "0" -"libcgi-application-perl", "CGI-Application", "4.31", "0", "0" -"libcgi-application-plugin-ajaxupload-perl", "CGI-Application-Plugin-AJAXUpload", "0.0.3", "0", "0" -"libcgi-application-plugin-anytemplate-perl", "CGI-Application-Plugin-AnyTemplate", "0.18", "0", "1" -"libcgi-application-plugin-authentication-perl", "CGI-Application-Plugin-Authentication", "0.20", "0", "0" -"libcgi-application-plugin-authorization-perl", "CGI-Application-Plugin-Authorization", "0.07", "0", "1" -"libcgi-application-plugin-tt-perl", "CGI-Application-Plugin-TT", "1.05", "0", "1" -"libcgi-application-server-perl", "CGI-Application-Server", "0.062", "0", "0" -"libcgi-cookie-splitter-perl", "CGI-Cookie-Splitter", "0.02", "1", "0" -"libcgi-formalware-perl", "CGI-Formalware", "1.13", "0", "0" -"libcgi-formbuilder-source-yaml-perl", "CGI-FormBuilder-Source-YAML", "1.0.8", "0", "0" -"libcgi-minimal-perl", "CGI-Minimal", "not-uploaded", "0", "1" -"libcgi-pm-perl", "CGI", "3.53", "0", "2" -"libcgi-session-driver-memcached-perl", "CGI-Session-Driver-memcached", "0.04", "0", "0" -"libcgi-session-expiresessions-perl", "CGI-Session-ExpireSessions", "1.12", "0", "0" -"libcgi-session-perl", "CGI-Session", "4.43", "1", "1" -"libcgi-session-serialize-yaml-perl", "CGI-Session-Serialize-yaml", "4.26", "0", "0" -"libcgi-simple-perl", "CGI-Simple", "1.113", "0", "2" -"libcgi-ssi-perl", "CGI-SSI", "0.92", "0", "1" -"libcgi-untaint-date-perl", "CGI-Untaint-date", "1.00", "0", "0" -"libcgi-untaint-email-perl", "CGI-Untaint-email", "0.03", "0", "0" -"libcgi-untaint-perl", "CGI-Untaint", "1.26", "0", "0" -"libcgi-uploader-perl", "CGI-Uploader", "2.17", "0", "1" -"libcgi-validop-perl", "CGI-ValidOp", "0.56", "0", "0" -"libcgi-xml-perl", "CGI-XML", "0.1", "0", "1" -"libcgi-xmlapplication-perl", "CGI-XMLApplication", "1.1.3", "0", "0" -"libcgi-xmlform-perl", "CGI-XMLForm", "0.10", "0", "1" -"libchart-clicker-perl", "Chart-Clicker", "2.67", "0", "0" -"libchart-gnuplot-perl", "Chart-Gnuplot", "0.15", "0", "0" -"libchart-perl", "Chart", "2.4.1", "2", "2" -"libcheck-isa-perl", "Check-ISA", "0.04", "0", "0" -"libchemistry-elements-perl", "Chemistry-Elements", "1.07", "0", "1" -"libchi-perl", "CHI", "0.47", "0", "2" -"libchild-perl", "Child", "0.009", "0", "0" -"libclass-accessor-children-perl", "Class-Accessor-Children", "0.02", "0", "0" -"libclass-accessor-classy-perl", "Class-Accessor-Classy", "0.9.1", "0", "0" -"libclass-accessor-grouped-perl", "Class-Accessor-Grouped", "0.10002", "1", "0" -"libclass-accessor-lvalue-perl", "Class-Accessor-Lvalue", "0.11", "0", "0" -"libclass-accessor-named-perl", "Class-Accessor-Named", "0.008", "0", "0" -"libclass-accessor-perl", "Class-Accessor", "0.34", "0", "0" -"libclass-adapter-perl", "Class-Adapter", "1.07", "0", "0" -"libclass-autouse-perl", "Class-Autouse", "2.00", "0", "1" -"libclass-base-perl", "Class-Base", "0.03", "0", "0" -"libclass-c3-adopt-next-perl", "Class-C3-Adopt-NEXT", "0.12", "0", "0" -"libclass-c3-componentised-perl", "Class-C3-Componentised", "1.0009", "0", "2" -"libclass-c3-perl", "Class-C3", "0.23", "0", "1" -"libclass-c3-xs-perl", "Class-C3-XS", "0.13", "0", "0" -"libclass-container-perl", "Class-Container", "0.12", "0", "0" -"libclass-data-accessor-perl", "Class-Data-Accessor", "0.04004", "0", "0" -"libclass-data-inheritable-perl", "Class-Data-Inheritable", "0.08", "0", "0" -"libclass-date-perl", "Class-Date", "1.1.10", "0", "0" -"libclass-dbi-abstractsearch-perl", "Class-DBI-AbstractSearch", "0.07", "0", "1" -"libclass-dbi-asform-perl", "Class-DBI-AsForm", "2.42", "0", "2" -"libclass-dbi-fromcgi-perl", "Class-DBI-FromCGI", "1.00", "0", "0" -"libclass-dbi-fromform-perl", "Class-DBI-FromForm", "0.04", "1", "0" -"libclass-dbi-lite-perl", "Class-DBI-Lite", "1.019", "0", "0" -"libclass-dbi-loader-perl", "Class-DBI-Loader", "0.34", "0", "0" -"libclass-dbi-loader-relationship-perl", "Class-DBI-Loader-Relationship", "1.2", "0", "1" -"libclass-dbi-mysql-perl", "Class-DBI-mysql", "1.00", "0", "1" -"libclass-dbi-pager-perl", "Class-DBI-Pager", "0.08", "0", "0" -"libclass-dbi-perl", "Class-DBI", "3.0.17", "2", "0" -"libclass-dbi-pg-perl", "Class-DBI-Pg", "0.09", "0", "1" -"libclass-dbi-plugin-abstractcount-perl", "Class-DBI-Plugin-AbstractCount", "0.08", "0", "0" -"libclass-dbi-plugin-pager-perl", "Class-DBI-Plugin-Pager", "0.561", "0", "1" -"libclass-dbi-plugin-perl", "Class-DBI-Plugin", "0.03", "0", "0" -"libclass-dbi-plugin-retrieveall-perl", "Class-DBI-Plugin-RetrieveAll", "1.04", "0", "0" -"libclass-dbi-plugin-type-perl", "Class-DBI-Plugin-Type", "0.02", "0", "0" -"libclass-dbi-sqlite-perl", "Class-DBI-SQLite", "0.11", "0", "0" -"libclass-dbi-sweet-perl", "Class-DBI-Sweet", "0.10", "0", "1" -"libclass-default-perl", "Class-Default", "1.51", "0", "0" -"libclass-factory-perl", "Class-Factory", "1.06", "0", "0" -"libclass-factory-util-perl", "Class-Factory-Util", "1.7", "0", "0" -"libclass-field-perl", "Class-Field", "0.15", "0", "0" -"libclass-gomor-perl", "Class-Gomor", "1.02", "0", "1" -"libclass-handle-perl", "Class-Handle", "1.07", "0", "0" -"libclass-inner-perl", "Class-Inner", "0.200001", "0", "0" -"libclass-insideout-perl", "Class-InsideOut", "1.10", "0", "1" -"libclass-inspector-perl", "Class-Inspector", "1.25", "0", "1" -"libclass-isa-perl", "Class-ISA", "0.36", "0", "0" -"libclass-load-perl", "Class-Load", "0.06", "0", "0" -"libclass-loader-perl", "Class-Loader", "2.03", "0", "0" -"libclass-makemethods-perl", "Class-MakeMethods", "1.01", "0", "1" -"libclass-meta-perl", "Class-Meta", "0.63", "0", "1" -"libclass-method-modifiers-perl", "Class-Method-Modifiers", "1.06", "0", "0" -"libclass-methodmaker-perl", "Class-MethodMaker", "2.15", "1", "1" -"libclass-mixinfactory-perl", "Class-MixinFactory", "0.92", "0", "0" -"libclass-mop-perl", "Class-MOP", "1.12", "0", "0" -"libclass-multimethods-perl", "Class-Multimethods", "1.70", "0", "1" -"libclass-objecttemplate-perl", "Class-ObjectTemplate", "0.7", "1", "0" -"libclass-ooorno-perl", "Class-OOorNO", "0.011", "0", "0" -"libclass-perl", "CLASS", "1.00", "0", "0" -"libclass-prototyped-perl", "Class-Prototyped", "1.11", "0", "3" -"libclass-returnvalue-perl", "Class-ReturnValue", "0.55", "0", "0" -"libclass-singleton-perl", "Class-Singleton", "1.4", "0", "0" -"libclass-spiffy-perl", "Class-Spiffy", "0.15", "1", "0" -"libclass-std-fast-perl", "Class-Std-Fast", "0.0.8", "0", "0" -"libclass-std-perl", "Class-Std", "0.0.9", "0", "0" -"libclass-std-utils-perl", "Class-Std-Utils", "0.0.3", "0", "0" -"libclass-throwable-perl", "Class-Throwable", "0.10", "0", "0" -"libclass-unload-perl", "Class-Unload", "0.07", "0", "0" -"libclass-whitehole-perl", "Class-WhiteHole", "0.04", "0", "0" -"libclass-xsaccessor-perl", "Class-XSAccessor", "1.11", "0", "0" -"libclone-fast-perl", "Clone-Fast", "0.93", "0", "2" -"libclone-perl", "Clone", "0.31", "1", "0" -"libclone-pp-perl", "Clone-PP", "1.02", "0", "0" -"libclutter-perl", "Clutter", "1.002", "1", "1" -"libcoat-perl", "Coat", "0.334", "1", "1" -"libcoat-persistent-perl", "Coat-Persistent", "0.223", "0", "2" -"libcolor-calc-perl", "Color-Calc", "1.071", "0", "0" -"libcolor-library-perl", "Color-Library", "0.02", "0", "0" -"libcolor-palette-perl", "Color-Palette", "0.091400", "0", "0" -"libcommon-sense-perl", "common-sense", "3.4", "0", "0" -"libcompress-bzip2-perl", "Compress-Bzip2", "2.09", "0", "2" -"libcompress-raw-bzip2-perl", "Compress-Raw-Bzip2", "2.035", "0", "0" -"libcompress-raw-zlib-perl", "Compress-Raw-Zlib", "2.035", "0", "1" -"libconfig-any-perl", "Config-Any", "0.20", "0", "0" -"libconfig-apacheformat-perl", "Config-ApacheFormat", "1.2", "0", "1" -"libconfig-augeas-perl", "Config-Augeas", "0.701", "0", "0" -"libconfig-auto-perl", "Config-Auto", "0.34", "0", "0" -"libconfig-autoconf-perl", "Config-AutoConf", "0.16", "0", "0" -"libconfig-file-perl", "Config-File", "1.50", "0", "0" -"libconfig-gitlike-perl", "Config-GitLike", "1.05", "0", "1" -"libconfig-grammar-perl", "Config-Grammar", "1.10", "0", "0" -"libconfig-ini-perl", "Config-INI", "0.016", "0", "0" -"libconfig-inihash-perl", "Config-IniHash", "3.01.01", "0", "0" -"libconfig-jfdi-perl", "Config-JFDI", "0.065", "0", "0" -"libconfig-json-perl", "Config-JSON", "1.5100", "0", "0" -"libconfig-merge-perl", "Config-Merge", "1.01", "0", "0" -"libconfig-model-approx-perl", "Config-Model-Approx", "1.003", "0", "0" -"libconfig-model-backend-augeas-perl", "Config-Model-Backend-Augeas", "0.109", "0", "0" -"libconfig-model-cursesui-perl", "Config-Model-CursesUI", "1.104", "0", "0" -"libconfig-model-itself-perl", "Config-Model-Itself", "1.224", "0", "1" -"libconfig-model-openssh-perl", "Config-Model-OpenSsh", "1.217", "0", "1" -"libconfig-model-perl", "Config-Model", "1.244", "1", "1" -"libconfig-model-tkui-perl", "Config-Model-TkUI", "1.324", "0", "0" -"libconfig-mvp-perl", "Config-MVP", "2.200001", "0", "1" -"libconfig-mvp-reader-ini-perl", "Config-MVP-Reader-INI", "2.101461", "0", "0" -"libconfig-pit-perl", "Config-Pit", "0.04", "0", "0" -"libconfig-scoped-perl", "Config-Scoped", "0.12", "0", "0" -"libconfig-std-perl", "Config-Std", "0.9", "0", "0" -"libconfig-yaml-perl", "Config-YAML", "1.42", "0", "1" -"libconfigreader-perl", "ConfigReader", "0.5", "0", "2" -"libconfigreader-simple-perl", "ConfigReader-Simple", "1.28", "0", "0" -"libcontext-preserve-perl", "Context-Preserve", "0.01", "0", "0" -"libcontextual-return-perl", "Contextual-Return", "0.003001", "0", "0" -"libconvert-ascii-armour-perl", "Convert-ASCII-Armour", "1.4", "0", "0" -"libconvert-asn1-perl", "Convert-ASN1", "0.22", "1", "0" -"libconvert-binary-c-perl", "Convert-Binary-C", "0.76", "0", "1" -"libconvert-binhex-perl", "Convert-BinHex", "1.119", "1", "1" -"libconvert-color-perl", "Convert-Color", "0.07", "0", "0" -"libconvert-nls-date-format-perl", "Convert-NLS_DATE_FORMAT", "0.02", "0", "0" -"libconvert-pem-perl", "Convert-PEM", "0.08", "1", "0" -"libcoro-perl", "Coro", "5.372", "0", "2" -"libcoy-perl", "Coy", "0.06", "0", "1" -"libcpan-changes-perl", "CPAN-Changes", "0.17", "0", "0" -"libcpan-checksums-perl", "CPAN-Checksums", "2.03", "0", "0" -"libcpan-distnameinfo-perl", "CPAN-DistnameInfo", "0.12", "0", "0" -"libcpan-inject-perl", "CPAN-Inject", "1.13", "0", "0" -"libcpan-meta-perl", "CPAN-Meta", "2.110930", "0", "0" -"libcpan-meta-yaml-perl", "CPAN-Meta-YAML", "0.003", "0", "0" -"libcpan-mini-perl", "CPAN-Mini", "1.111003", "0", "0" -"libcpan-uploader-perl", "CPAN-Uploader", "0.103000", "0", "0" -"libcpandb-perl", "CPANDB", "0.14", "0", "0" -"libcps-perl", "CPS", "0.11", "0", "0" -"libcrypt-blowfish-perl", "Crypt-Blowfish", "2.12", "0", "1" -"libcrypt-cbc-perl", "Crypt-CBC", "2.30", "1", "0" -"libcrypt-des-perl", "Crypt-DES", "2.05", "0", "0" -"libcrypt-dh-gmp-perl", "Crypt-DH-GMP", "0.00009", "0", "1" -"libcrypt-generatepassword-perl", "Crypt-GeneratePassword", "0.03", "0", "0" -"libcrypt-mysql-perl", "Crypt-MySQL", "0.04", "0", "0" -"libcrypt-openssl-bignum-perl", "Crypt-OpenSSL-Bignum", "0.04", "1", "0" -"libcrypt-openssl-dsa-perl", "Crypt-OpenSSL-DSA", "0.13", "0", "3" -"libcrypt-openssl-random-perl", "Crypt-OpenSSL-Random", "0.04", "0", "2" -"libcrypt-openssl-rsa-perl", "Crypt-OpenSSL-RSA", "0.25", "0", "1" -"libcrypt-openssl-x509-perl", "Crypt-OpenSSL-X509", "1.8.2", "0", "0" -"libcrypt-rijndael-perl", "Crypt-Rijndael", "1.08", "0", "1" -"libcrypt-saltedhash-perl", "Crypt-SaltedHash", "0.06", "0", "0" -"libcrypt-simple-perl", "Crypt-Simple", "0.06", "0", "0" -"libcrypt-twofish-perl", "Crypt-Twofish", "2.12", "0", "0" -"libcss-dom-perl", "CSS-DOM", "0.14", "0", "0" -"libcss-minifier-perl", "CSS-Minifier", "0.01", "0", "0" -"libcss-minifier-xs-perl", "CSS-Minifier-XS", "0.07", "0", "0" -"libcss-packer-perl", "CSS-Packer", "1.000001", "0", "0" -"libcss-squish-perl", "CSS-Squish", "0.09", "0", "0" -"libcss-tiny-perl", "CSS-Tiny", "1.19", "0", "0" -"libcurses-perl", "Curses", "1.28", "0", "2" -"libcurses-ui-perl", "Curses-UI", "0.9607", "2", "2" -"libcurses-ui-poe-perl", "Curses-UI-POE", "not-uploaded", "0", "0" -"libcurses-widgets-perl", "CursesWidgets", "1.997", "0", "2" -"libcvs-perl", "Cvs", "0.07", "0", "1" -"libdancer-perl", "Dancer", "1.3040", "0", "1" -"libdancer-plugin-database-perl", "Dancer-Plugin-Database", "1.23", "0", "1" -"libdanga-socket-perl", "Danga-Socket", "1.61", "0", "0" -"libdata-alias-perl", "Data-Alias", "1.14", "0", "0" -"libdata-amf-perl", "Data-AMF", "0.09", "0", "0" -"libdata-dump-perl", "Data-Dump", "1.19", "0", "0" -"libdata-dump-streamer-perl", "Data-Dump-Streamer", "2.31", "0", "1" -"libdata-dumper-concise-perl", "Data-Dumper-Concise", "2.020", "0", "0" -"libdata-dumper-simple-perl", "Data-Dumper-Simple", "0.11", "0", "0" -"libdata-entropy-perl", "Data-Entropy", "0.007", "0", "0" -"libdata-float-perl", "Data-Float", "0.011", "0", "0" -"libdata-flow-perl", "Data-Flow", "1.02", "0", "0" -"libdata-format-html-perl", "Data-Format-HTML", "0.5", "0", "1" -"libdata-formvalidator-constraints-datetime-perl", "Data-FormValidator-Constraints-DateTime", "1.11", "0", "1" -"libdata-formvalidator-perl", "Data-FormValidator", "4.66", "0", "0" -"libdata-hexdumper-perl", "Data-Hexdumper", "2.01", "0", "0" -"libdata-ical-perl", "Data-ICal", "0.16", "1", "0" -"libdata-integer-perl", "Data-Integer", "0.004", "0", "0" -"libdata-javascript-perl", "Data-JavaScript", "1.13", "0", "0" -"libdata-miscellany-perl", "Data-Miscellany", "1.100850", "0", "0" -"libdata-optlist-perl", "Data-OptList", "0.107", "0", "1" -"libdata-pageset-perl", "Data-Pageset", "1.05", "0", "1" -"libdata-parsebinary-perl", "Data-ParseBinary", "not-uploaded", "0", "2" -"libdata-password-perl", "Data-Password", "1.07", "0", "1" -"libdata-peek-perl", "Data-Peek", "0.32", "0", "0" -"libdata-phrasebook-loader-yaml-perl", "Data-Phrasebook-Loader-YAML", "0.09", "0", "1" -"libdata-phrasebook-perl", "Data-Phrasebook", "0.31", "0", "1" -"libdata-random-perl", "Data-Random", "0.05", "0", "4" -"libdata-report-perl", "Data-Report", "0.10", "0", "0" -"libdata-section-perl", "Data-Section", "0.101621", "0", "0" -"libdata-serializer-perl", "Data-Serializer", "0.57", "0", "0" -"libdata-show-perl", "Data-Show", "0.001002", "0", "0" -"libdata-showtable-perl", "Data-ShowTable", "3.3", "0", "2" -"libdata-sorting-perl", "Data-Sorting", "0.9", "0", "2" -"libdata-stag-perl", "Data-Stag", "0.11", "1", "4" -"libdata-stream-bulk-perl", "Data-Stream-Bulk", "0.08", "0", "0" -"libdata-structure-util-perl", "Data-Structure-Util", "0.15", "0", "0" -"libdata-transformer-perl", "Data-Transformer", "0.04", "0", "0" -"libdata-treedumper-perl", "Data-TreeDumper", "0.37", "0", "3" -"libdata-treedumper-renderer-dhtml-perl", "Data-TreeDumper-Renderer-DHTML", "0.09", "0", "2" -"libdata-types-perl", "Data-Types", "0.08", "0", "0" -"libdata-uuid-libuuid-perl", "Data-UUID-LibUUID", "0.05", "0", "0" -"libdata-validate-email-perl", "Data-Validate-Email", "0.04", "1", "1" -"libdata-validate-ip-perl", "Data-Validate-IP", "0.14", "0", "0" -"libdata-visitor-perl", "Data-Visitor", "0.27", "0", "0" -"libdata-walk-perl", "Data-Walk", "1.00", "1", "1" -"libdate-calc-perl", "Date-Calc", "6.0", "0", "1" -"libdate-calc-xs-perl", "Date-Calc-XS", "not-uploaded", "0", "0" -"libdate-convert-perl", "DateConvert", "0.16", "0", "0" -"libdate-hijri-perl", "Date_Hijri", "0.02", "0", "0" -"libdate-ical-perl", "Date-ICal", "1.72", "0", "0" -"libdate-leapyear-perl", "Date-Leapyear", "1.72", "0", "0" -"libdate-manip-perl", "Date-Manip", "6.23", "5", "1" -"libdate-pcalc-perl", "Date-Pcalc", "6.1", "0", "1" -"libdate-simple-perl", "Date-Simple", "3.03.03", "1", "1" -"libdatetime-astro-sunrise-perl", "DateTime-Astro-Sunrise", "0.01.01", "1", "4" -"libdatetime-event-ical-perl", "DateTime-Event-ICal", "0.10", "0", "1" -"libdatetime-event-recurrence-perl", "DateTime-Event-Recurrence", "0.16", "0", "0" -"libdatetime-event-sunrise-perl", "DateTime-Event-Sunrise", "0.0501", "0", "0" -"libdatetime-format-builder-perl", "DateTime-Format-Builder", "0.8000", "0", "0" -"libdatetime-format-dateparse-perl", "DateTime-Format-DateParse", "0.05", "0", "0" -"libdatetime-format-db2-perl", "DateTime-Format-DB2", "0.05", "0", "0" -"libdatetime-format-dbi-perl", "DateTime-Format-DBI", "0.040", "0", "0" -"libdatetime-format-flexible-perl", "DateTime-Format-Flexible", "0.19", "0", "0" -"libdatetime-format-http-perl", "DateTime-Format-HTTP", "0.40", "0", "0" -"libdatetime-format-ical-perl", "DateTime-Format-ICal", "0.09", "0", "0" -"libdatetime-format-iso8601-perl", "DateTime-Format-ISO8601", "0.06", "0", "0" -"libdatetime-format-mail-perl", "DateTime-Format-Mail", "0.3001", "0", "0" -"libdatetime-format-mysql-perl", "DateTime-Format-MySQL", "0.04", "0", "0" -"libdatetime-format-natural-perl", "DateTime-Format-Natural", "0.95", "0", "1" -"libdatetime-format-oracle-perl", "DateTime-Format-Oracle", "0.05", "0", "0" -"libdatetime-format-pg-perl", "DateTime-Format-Pg", "0.16005", "0", "0" -"libdatetime-format-sqlite-perl", "DateTime-Format-SQLite", "0.11", "0", "0" -"libdatetime-format-strptime-perl", "DateTime-Format-Strptime", "1.5000", "0", "0" -"libdatetime-format-w3cdtf-perl", "DateTime-Format-W3CDTF", "0.06", "0", "0" -"libdatetime-locale-perl", "DateTime-Locale", "0.45", "0", "0" -"libdatetime-perl", "DateTime", "0.7000", "0", "0" -"libdatetime-set-perl", "DateTime-Set", "0.30", "0", "0" -"libdatetime-timezone-perl", "DateTime-TimeZone", "1.34", "1", "0" -"libdatetimex-easy-perl", "DateTimeX-Easy", "0.089", "0", "0" -"libdb-file-lock-perl", "DB_File-Lock", "0.05", "0", "1" -"libdbd-csv-perl", "DBD-CSV", "0.3100", "0", "1" -"libdbd-excel-perl", "DBD-Excel", "0.06", "0", "2" -"libdbd-mock-perl", "DBD-Mock", "1.39", "0", "0" -"libdbd-mysql-perl", "DBD-mysql", "4.019", "2", "2" -"libdbd-odbc-perl", "DBD-ODBC", "1.29", "0", "1" -"libdbd-oracle-perl", "DBD-Oracle", "1.28", "0", "1" -"libdbd-pg-perl", "DBD-Pg", "2.18.1", "0", "2" -"libdbd-sqlite2-perl", "DBD-SQLite2", "0.33", "0", "1" -"libdbd-sqlite3-perl", "DBD-SQLite", "1.31", "1", "2" -"libdbd-xbase-perl", "DBD-XBase", "0.241", "0", "4" -"libdbi-perl", "DBI", "1.616", "5", "3" -"libdbicx-testdatabase-perl", "DBICx-TestDatabase", "0.04", "0", "0" -"libdbix-abstract-perl", "DBIx-Abstract", "1.006", "0", "3" -"libdbix-class-candy-perl", "DBIx-Class-Candy", "0.002000", "0", "0" -"libdbix-class-cursor-cached-perl", "DBIx-Class-Cursor-Cached", "1.001001", "0", "0" -"libdbix-class-datetime-epoch-perl", "DBIx-Class-DateTime-Epoch", "0.07", "0", "0" -"libdbix-class-deploymenthandler-perl", "DBIx-Class-DeploymentHandler", "not-uploaded", "0", "0" -"libdbix-class-dynamicdefault-perl", "DBIx-Class-DynamicDefault", "0.03", "0", "0" -"libdbix-class-encodedcolumn-perl", "DBIx-Class-EncodedColumn", "0.00011", "0", "2" -"libdbix-class-fixtures-perl", "DBIx-Class-Fixtures", "not-uploaded", "0", "0" -"libdbix-class-helpers-perl", "DBIx-Class-Helpers", "not-uploaded", "0", "0" -"libdbix-class-inflatecolumn-ip-perl", "DBIx-Class-InflateColumn-IP", "0.02001", "0", "0" -"libdbix-class-introspectablem2m-perl", "DBIx-Class-IntrospectableM2M", "0.001001", "0", "0" -"libdbix-class-perl", "DBIx-Class", "0.08127", "0", "2" -"libdbix-class-resultset-recursiveupdate-perl", "DBIx-Class-ResultSet-RecursiveUpdate", "not-uploaded", "0", "0" -"libdbix-class-schema-loader-perl", "DBIx-Class-Schema-Loader", "0.07010", "0", "0" -"libdbix-class-timestamp-perl", "DBIx-Class-TimeStamp", "0.12", "0", "0" -"libdbix-contextualfetch-perl", "DBIx-ContextualFetch", "1.03", "0", "0" -"libdbix-oo-perl", "DBIx-OO", "0.0.9", "0", "1" -"libdbix-password-perl", "DBIx-Password", "1.9", "0", "2" -"libdbix-recordset-perl", "DBIx-Recordset", "0.26", "0", "6" -"libdbix-safe-perl", "DBIx-Safe", "1.2.5", "0", "0" -"libdbix-searchbuilder-perl", "DBIx-SearchBuilder", "1.59", "1", "1" -"libdbix-sequence-perl", "DBIx-Sequence", "1.5", "1", "0" -"libdbix-simple-perl", "DBIx-Simple", "1.32", "0", "0" -"libdbix-xml-rdb-perl", "DBIx-XML_RDB", "0.05", "0", "0" -"libdbix-xmlmessage-perl", "DBIx-XMLMessage", "0.05", "0", "0" -"libdbm-deep-perl", "DBM-Deep", "2.0002", "0", "1" -"libdebug-client-perl", "Debug-Client", "0.11", "0", "1" -"libdebug-trace-perl", "Debug-Trace", "0.04", "0", "0" -"libdevel-argnames-perl", "Devel-ArgNames", "0.03", "0", "0" -"libdevel-backtrace-perl", "Devel-Backtrace", "0.12", "0", "0" -"libdevel-bt-perl", "Devel-bt", "0.05", "1", "0" -"libdevel-caller-ignorenamespaces-perl", "Devel-Caller-IgnoreNamespaces", "1.0", "0", "0" -"libdevel-caller-perl", "Devel-Caller", "2.05", "0", "1" -"libdevel-calltrace-perl", "Devel-CallTrace", "1.2", "0", "0" -"libdevel-checklib-perl", "Devel-CheckLib", "0.93", "0", "0" -"libdevel-cover-perl", "Devel-Cover", "0.77", "0", "4" -"libdevel-cycle-perl", "Devel-Cycle", "1.11", "0", "0" -"libdevel-declare-perl", "Devel-Declare", "0.006004", "0", "0" -"libdevel-dprof-perl", "Devel-DProf", "20110228.00", "0", "0" -"libdevel-dumpvar-perl", "Devel-Dumpvar", "0.04", "1", "0" -"libdevel-ebug-perl", "Devel-ebug", "0.49", "0", "2" -"libdevel-findref-perl", "Devel-FindRef", "1.422", "0", "0" -"libdevel-gdb-perl", "Devel-GDB", "2.02", "0", "1" -"libdevel-globaldestruction-perl", "Devel-GlobalDestruction", "0.03", "0", "0" -"libdevel-leak-perl", "Devel-Leak", "0.03", "0", "0" -"libdevel-lexalias-perl", "Devel-LexAlias", "0.04", "1", "0" -"libdevel-nytprof-perl", "Devel-NYTProf", "4.06", "0", "2" -"libdevel-partialdump-perl", "Devel-PartialDump", "0.15", "0", "0" -"libdevel-patchperl-perl", "Devel-PatchPerl", "0.36", "0", "0" -"libdevel-profile-perl", "Devel-Profile", "1.05", "0", "0" -"libdevel-ptkdb-perl", "Devel-ptkdb", "1.1091", "0", "1" -"libdevel-refactor-perl", "Devel-Refactor", "0.05", "0", "0" -"libdevel-refcount-perl", "Devel-Refcount", "0.09", "0", "0" -"libdevel-repl-perl", "Devel-REPL", "1.003012", "0", "2" -"libdevel-simpletrace-perl", "Devel-SimpleTrace", "0.08", "0", "0" -"libdevel-size-perl", "Devel-Size", "0.77", "0", "1" -"libdevel-stacktrace-ashtml-perl", "Devel-StackTrace-AsHTML", "0.11", "0", "0" -"libdevel-stacktrace-perl", "Devel-StackTrace", "1.2700", "0", "0" -"libdevel-trace-perl", "Devel-Trace", "not-uploaded", "0", "1" -"libdevice-cdio-perl", "Device-Cdio", "0.2.4", "1", "7" -"libdevice-serialport-perl", "Device-SerialPort", "1.04", "0", "0" -"libdevice-usb-perl", "Device-USB", "0.35", "0", "3" -"libdigest-bubblebabble-perl", "Digest-BubbleBabble", "0.02", "0", "0" -"libdigest-crc-perl", "Digest-CRC", "0.16", "0", "0" -"libdigest-hmac-perl", "Digest-HMAC", "1.02", "0", "0" -"libdigest-jhash-perl", "Digest-JHash", "0.06", "0", "0" -"libdigest-md2-perl", "Digest-MD2", "2.03", "0", "0" -"libdigest-md4-perl", "Digest-MD4", "1.5.dfsg", "0", "1" -"libdigest-md5-file-perl", "Digest-MD5-File", "0.07", "0", "0" -"libdigest-md6-perl", "Digest-MD6", "not-uploaded", "0", "0" -"libdigest-perl", "Digest", "1.16", "0", "0" -"libdigest-sha-perl", "Digest-SHA", "5.62", "0", "0" -"libdigest-sha1-perl", "Digest-SHA1", "2.13", "2", "0" -"libdir-purge-perl", "Dir-Purge", "1.02", "0", "0" -"libdir-self-perl", "Dir-Self", "0.10", "0", "0" -"libdirectory-scratch-perl", "Directory-Scratch", "0.14", "0", "0" -"libdist-zilla-perl", "Dist-Zilla", "4.200006", "0", "0" -"libdist-zilla-plugin-changelogfromgit-perl", "Dist-Zilla-Plugin-ChangelogFromGit", "0.002", "0", "0" -"libdist-zilla-plugin-git-perl", "Dist-Zilla-Plugin-Git", "1.110500", "0", "0" -"libdist-zilla-plugin-podspellingtests-perl", "Dist-Zilla-Plugin-PodSpellingTests", "1.103491", "0", "0" -"libdist-zilla-plugin-podweaver-perl", "Dist-Zilla-Plugin-PodWeaver", "3.101641", "0", "0" -"libdist-zilla-plugin-prepender-perl", "Dist-Zilla-Plugin-Prepender", "1.103470", "0", "0" -"libdist-zilla-plugin-run-perl", "Dist-Zilla-Plugin-Run", "0.005", "0", "2" -"libdist-zilla-plugins-cjm-perl", "Dist-Zilla-Plugins-CJM", "3.05", "0", "0" -"libdpkg-log-perl", "DPKG-Log", "1.20", "0", "1" -"libdublincore-record-perl", "DublinCore-Record", "0.03", "0", "0" -"libelixirfm-perl", "http://qa.debian.org/watch/sf.php/elixir-fm/ElixirFM-1.1.976-Perl.tar.gz", "1.1.976", "0", "0" -"libemail-abstract-perl", "Email-Abstract", "3.004", "0", "0" -"libemail-address-perl", "Email-Address", "1.892", "1", "1" -"libemail-date-format-perl", "Email-Date-Format", "1.002", "0", "0" -"libemail-date-perl", "Email-Date", "1.103", "0", "0" -"libemail-filter-perl", "Email-Filter", "1.032", "0", "0" -"libemail-folder-perl", "Email-Folder", "0.855", "0", "0" -"libemail-localdelivery-perl", "Email-LocalDelivery", "0.217", "0", "1" -"libemail-messageid-perl", "Email-MessageID", "1.402", "0", "0" -"libemail-mime-contenttype-perl", "Email-MIME-ContentType", "1.014", "0", "0" -"libemail-mime-createhtml-perl", "Email-MIME-CreateHTML", "1.030", "0", "0" -"libemail-mime-encodings-perl", "Email-MIME-Encodings", "1.313", "0", "0" -"libemail-mime-perl", "Email-MIME", "1.907", "0", "0" -"libemail-outlook-message-perl", "Email-Outlook-Message", "0.910", "0", "0" -"libemail-received-perl", "Email-Received", "1.00", "0", "0" -"libemail-send-io-perl", "Email-Send-IO", "2.200", "1", "0" -"libemail-send-perl", "Email-Send", "2.198", "0", "2" -"libemail-sender-perl", "Email-Sender", "0.110001", "0", "0" -"libemail-sender-transport-smtp-tls-perl", "Email-Sender-Transport-SMTP-TLS", "0.07", "0", "0" -"libemail-simple-perl", "Email-Simple", "2.100", "1", "0" -"libemail-thread-perl", "Email-Thread", "0.711", "0", "0" -"libemail-valid-loose-perl", "Email-Valid-Loose", "0.05", "0", "0" -"libemail-valid-perl", "Email-Valid", "0.184", "0", "1" -"libembperl-perl", "Embperl", "2.3.0", "1", "10" -"libencode-arabic-perl", "http://qa.debian.org/watch/sf.php/encode-arabic/Encode-Arabic-1.9.tar.gz", "1.9", "0", "1" -"libencode-detect-perl", "Encode-Detect", "1.01", "0", "0" -"libencode-hanextra-perl", "Encode-HanExtra", "0.23", "0", "1" -"libencode-imaputf7-perl", "Encode-IMAPUTF7", "1.05", "0", "0" -"libencode-jis2k-perl", "Encode-JIS2K", "0.02", "0", "0" -"libencode-locale-perl", "Encode-Locale", "1.02", "0", "1" -"libencode-perl", "Encode", "2.42", "0", "1" -"libend-perl", "End", "2009040201", "0", "0" -"libenv-path-perl", "Env-Path", "0.18", "0", "0" -"libenv-ps1-perl", "Env-PS1", "0.06", "0", "0" -"libenv-sanctify-perl", "Env-Sanctify", "1.02", "0", "0" -"libev-perl", "EV", "not-uploaded", "0", "1" -"libeval-closure-perl", "Eval-Closure", "0.05", "0", "0" -"libevent-perl", "Event", "1.15", "0", "1" -"libevent-rpc-perl", "Event-RPC", "1.01", "0", "2" -"libexception-class-dbi-perl", "Exception-Class-DBI", "1.00", "0", "0" -"libexception-class-perl", "Exception-Class", "1.31", "0", "0" -"libexception-class-trycatch-perl", "Exception-Class-TryCatch", "1.12", "0", "0" -"libexception-handler-perl", "Exception-Handler", "1.004", "0", "0" -"libexpect-simple-perl", "Expect-Simple", "0.04", "2", "0" -"libexporter-lite-perl", "Exporter-Lite", "0.02", "0", "0" -"libexporter-renaming-perl", "Exporter-Renaming", "1.19", "0", "0" -"libexporter-tidy-perl", "Exporter-Tidy", "0.07", "0", "0" -"libextutils-cbuilder-perl", "ExtUtils-CBuilder", "0.280202", "0", "1" -"libextutils-cchecker-perl", "ExtUtils-CChecker", "0.07", "0", "0" -"libextutils-command-perl", "ExtUtils-Command", "1.17", "0", "0" -"libextutils-depends-perl", "ExtUtils-Depends", "0.304", "0", "0" -"libextutils-f77-perl", "ExtUtils-F77", "1.17", "0", "0" -"libextutils-install-perl", "ExtUtils-Install", "1.54", "2", "0" -"libextutils-libbuilder-perl", "ExtUtils-LibBuilder", "0.04", "0", "0" -"libextutils-parsexs-perl", "ExtUtils-ParseXS", "2.220600", "0", "0" -"libextutils-pkgconfig-perl", "ExtUtils-PkgConfig", "1.12", "0", "0" -"libextutils-xsbuilder-perl", "ExtUtils-XSBuilder", "0.28", "0", "2" -"libextutils-xspp-perl", "ExtUtils-XSpp", "0.1601", "0", "0" -"libfax-hylafax-client-perl", "Fax-Hylafax-Client", "1.02", "0", "0" -"libfcgi-perl", "FCGI", "0.71", "1", "1" -"libfcgi-procmanager-perl", "FCGI-ProcManager", "0.19", "0", "0" -"libfeed-find-perl", "Feed-Find", "0.07", "0", "1" -"libfile-basedir-perl", "File-BaseDir", "0.03", "0", "1" -"libfile-bom-perl", "File-BOM", "0.14", "0", "0" -"libfile-changenotify-perl", "File-ChangeNotify", "0.20", "0", "0" -"libfile-chmod-perl", "File-chmod", "0.32", "0", "0" -"libfile-copy-link-perl", "File-Copy-Link", "0.112", "0", "0" -"libfile-copy-recursive-perl", "File-Copy-Recursive", "0.38", "1", "0" -"libfile-counterfile-perl", "File-CounterFile", "1.04", "0", "0" -"libfile-countlines-perl", "File-CountLines", "0.0.3", "0", "0" -"libfile-desktopentry-perl", "File-DesktopEntry", "0.04", "1", "1" -"libfile-dircompare-perl", "File-DirCompare", "0.6", "0", "0" -"libfile-find-object-perl", "File-Find-Object", "0.2.1", "0", "0" -"libfile-find-object-rule-perl", "File-Find-Object-Rule", "0.0300", "0", "0" -"libfile-find-rule-perl", "File-Find-Rule", "0.32", "1", "1" -"libfile-find-rule-perl-perl", "File-Find-Rule-Perl", "1.10", "0", "1" -"libfile-find-rule-vcs-perl", "File-Find-Rule-VCS", "1.08", "0", "0" -"libfile-finder-perl", "File-Finder", "0.53", "0", "0" -"libfile-flock-perl", "File-Flock", "2008.01", "0", "0" -"libfile-fnmatch-perl", "File-FnMatch", "0.02", "0", "0" -"libfile-fu-perl", "File-Fu", "0.0.7", "0", "2" -"libfile-homedir-perl", "File-HomeDir", "0.97", "0", "0" -"libfile-libmagic-perl", "File-LibMagic", "0.96", "0", "1" -"libfile-listing-perl", "File-Listing", "6.01", "0", "0" -"libfile-localizenewlines-perl", "File-LocalizeNewlines", "1.11", "0", "0" -"libfile-mimeinfo-perl", "File-MimeInfo", "0.15", "4", "0" -"libfile-mmagic-xs-perl", "File-MMagic-XS", "0.09006", "0", "0" -"libfile-modified-perl", "File-Modified", "0.07", "0", "0" -"libfile-next-perl", "File-Next", "1.06", "1", "0" -"libfile-path-expand-perl", "File-Path-Expand", "1.02", "0", "0" -"libfile-path-perl", "File-Path", "2.08", "1", "0" -"libfile-pid-perl", "File-Pid", "1.01", "0", "1" -"libfile-policy-perl", "File-Policy", "1.005", "0", "0" -"libfile-pushd-perl", "File-pushd", "1.00", "0", "0" -"libfile-queue-perl", "File-Queue", "1.01a", "0", "0" -"libfile-read-perl", "File-Read", "0.0801", "0", "0" -"libfile-readbackwards-perl", "File-ReadBackwards", "1.04", "0", "0" -"libfile-remove-perl", "File-Remove", "1.48", "0", "0" -"libfile-scan-perl", "File-Scan", "1.43", "0", "2" -"libfile-sharedir-install-perl", "File-ShareDir-Install", "0.03", "0", "0" -"libfile-sharedir-par-perl", "File-ShareDir-PAR", "0.06", "0", "1" -"libfile-slurp-unicode-perl", "File-Slurp-Unicode", "0.7.1", "0", "0" -"libfile-spec-perl", "PathTools", "3.3300", "0", "0" -"libfile-sync-perl", "File-Sync", "0.09", "0", "0" -"libfile-temp-perl", "File-Temp", "0.22", "1", "0" -"libfile-touch-perl", "File-Touch", "0.08", "0", "0" -"libfile-type-webimages-perl", "File-Type-WebImages", "1.01", "0", "0" -"libfile-userconfig-perl", "File-UserConfig", "0.06", "0", "0" -"libfile-util-perl", "File-Util", "3.27", "0", "0" -"libfile-which-perl", "File-Which", "1.08", "0", "1" -"libfile-wildcard-perl", "File-Wildcard", "0.11", "0", "0" -"libfilehandle-fmode-perl", "FileHandle-Fmode", "0.11", "0", "0" -"libfilehandle-unget-perl", "FileHandle-Unget", "0.1623", "0", "1" -"libfilesys-df-perl", "Filesys-Df", "0.92", "1", "0" -"libfilesys-notify-simple-perl", "Filesys-Notify-Simple", "0.07", "0", "0" -"libfilesys-smbclient-perl", "Filesys-SmbClient", "3.1", "1", "1" -"libfilter-crypto-perl", "Filter-Crypto", "not-uploaded", "0", "0" -"libfilter-eof-perl", "Filter-EOF", "0.04", "0", "0" -"libfilter-template-perl", "Filter-Template", "1.040", "0", "0" -"libfinance-bank-ie-permanenttsb-perl", "Finance-Bank-IE-PermanentTSB", "0.4", "0", "0" -"libfinance-streamer-perl", "unknown", "1.10", "0", "0" -"libfind-lib-perl", "Find-Lib", "1.01", "0", "0" -"libflickr-api-perl", "Flickr-API", "1.01", "0", "1" -"libflickr-upload-perl", "Flickr-Upload", "1.32", "0", "2" -"libfont-afm-perl", "Font-AFM", "1.20", "0", "0" -"libfont-freetype-perl", "Font-FreeType", "0.03", "1", "2" -"libfont-ttf-perl", "Font-TTF", "0.48", "0", "2" -"libforest-perl", "Forest", "0.09", "0", "1" -"libforks-perl", "forks", "0.34", "1", "1" -"libformat-human-bytes-perl", "Format-Human-Bytes", "0.05", "0", "0" -"libformvalidator-simple-perl", "FormValidator-Simple", "0.28", "0", "0" -"libfortune-perl", "Fortune", "0.2", "0", "0" -"libfreezethaw-perl", "FreezeThaw", "0.5001", "0", "1" -"libfrontier-rpc-perl", "Frontier-RPC", "0.07b4", "3", "2" -"libgd-barcode-perl", "GD-Barcode", "1.15", "0", "0" -"libgd-securityimage-perl", "GD-SecurityImage", "1.68", "0", "0" -"libgd-svg-perl", "GD-SVG", "0.33", "0", "0" -"libgearman-client-async-perl", "Gearman-Client-Async", "0.94", "2", "0" -"libgearman-client-perl", "Gearman", "1.11", "1", "2" -"libgeo-coder-googlev3-perl", "Geo-Coder-Googlev3", "not-uploaded", "0", "0" -"libgeo-google-mapobject-perl", "Geo-Google-MapObject", "0.06", "0", "0" -"libgeo-ipfree-perl", "Geo-IPfree", "1.110450", "0", "0" -"libgeo-metar-perl", "Geo-METAR", "1.15", "0", "4" -"libgeo-osm-tiles-perl", "Geo-OSM-Tiles", "0.04", "0", "0" -"libgeography-countries-perl", "Geography-Countries", "2009041301", "0", "0" -"libgeometry-primitive-perl", "Geometry-Primitive", "0.22", "0", "0" -"libgetopt-argvfile-perl", "Getopt-ArgvFile", "1.11", "0", "0" -"libgetopt-declare-perl", "Getopt-Declare", "1.14", "0", "0" -"libgetopt-euclid-perl", "Getopt-Euclid", "0.2.2", "1", "0" -"libgetopt-long-descriptive-perl", "Getopt-Long-Descriptive", "0.090", "0", "0" -"libgetopt-lucid-perl", "Getopt-Lucid", "0.19", "0", "0" -"libgetopt-tabular-perl", "Getopt-Tabular", "0.3", "0", "1" -"libgetopt-usaginator-perl", "Getopt-Usaginator", "0.0012", "0", "0" -"libgit-wrapper-perl", "Git-Wrapper", "0.014", "0", "0" -"libgitalist-perl", "Gitalist", "not-uploaded", "0", "0" -"libglib-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Glib-1.223.tar.gz", "1.223", "0", "5" -"libgnome2-canvas-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-Canvas-1.002.tar.gz", "1.002", "0", "2" -"libgnome2-gconf-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-GConf-1.044.tar.gz", "1.044", "0", "1" -"libgnome2-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-1.042.tar.gz", "1.042", "1", "0" -"libgnome2-vfs-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-VFS-1.081.tar.gz", "1.081", "0", "1" -"libgnome2-wnck-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gnome2-Wnck-0.16.tar.gz", "0.16", "0", "1" -"libgnupg-interface-perl", "GnuPG-Interface", "0.44", "5", "0" -"libgnupg-perl", "GnuPG", "0.17", "0", "0" -"libgoo-canvas-perl", "Goo-Canvas", "0.06", "0", "1" -"libgps-point-perl", "GPS-Point", "0.17", "0", "1" -"libgraph-easy-as-svg-perl", "Graph-Easy-As_svg", "0.23", "0", "0" -"libgraph-easy-perl", "Graph-Easy", "0.70", "1", "0" -"libgraph-readwrite-perl", "Graph-ReadWrite", "2.00", "0", "0" -"libgraph-writer-graphviz-perl", "Graph-Writer-GraphViz", "0.10", "0", "1" -"libgraphics-color-perl", "Graphics-Color", "0.27", "0", "0" -"libgraphics-colornames-www-perl", "Graphics-ColorNames-WWW", "1.12", "0", "0" -"libgraphics-gnuplotif-perl", "Graphics-GnuplotIF", "1.6", "0", "0" -"libgraphics-libplot-perl", "Graphics-Libplot", "2.2.2", "0", "1" -"libgraphics-primitive-driver-cairo-perl", "Graphics-Primitive-Driver-Cairo", "0.43", "0", "1" -"libgraphics-primitive-perl", "Graphics-Primitive", "0.53", "0", "1" -"libgravatar-url-perl", "Gravatar-URL", "1.04", "0", "0" -"libgssapi-perl", "GSSAPI", "0.28", "0", "0" -"libgstreamer-interfaces-perl", "GStreamer-Interfaces", "0.06", "0", "0" -"libgstreamer-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/GStreamer-0.15.tar.gz", "0.15", "0", "6" -"libgtk2-ex-entry-pango-perl", "Gtk2-Ex-Entry-Pango", "0.09", "0", "0" -"libgtk2-ex-podviewer-perl", "Gtk2-Ex-PodViewer", "0.18", "0", "0" -"libgtk2-ex-printdialog-perl", "Gtk2-Ex-PrintDialog", "0.03", "0", "1" -"libgtk2-ex-simple-list-perl", "Gtk2-Ex-Simple-List", "0.50", "1", "0" -"libgtk2-ex-volumebutton-perl", "Gtk2-Ex-VolumeButton", "0.07", "0", "0" -"libgtk2-gladexml-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-GladeXML-1.007.tar.gz", "1.007", "0", "0" -"libgtk2-gladexml-simple-perl", "Gtk2-GladeXML-Simple", "0.32", "0", "0" -"libgtk2-imageview-perl", "Gtk2-ImageView", "0.05", "0", "0" -"libgtk2-mozembed-perl", "Gtk2-MozEmbed", "0.08", "1", "3" -"libgtk2-notify-perl", "Gtk2-Notify", "0.05", "0", "1" -"libgtk2-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-1.223.tar.gz", "1.223", "0", "3" -"libgtk2-sourceview2-perl", "Gtk2-SourceView2", "0.10", "0", "0" -"libgtk2-spell-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-Spell-1.03.tar.gz", "1.03", "0", "1" -"libgtk2-trayicon-perl", "http://qa.debian.org/watch/sf.php/gtk2-perl/Gtk2-TrayIcon-0.06.tar.gz", "0.06", "0", "0" -"libgtk2-traymanager-perl", "Gtk2-TrayManager", "0.05", "0", "0" -"libgtk2-unique-perl", "Gtk2-Unique", "0.05", "0", "1" -"libgtk2-webkit-perl", "Gtk2-WebKit", "not-uploaded", "0", "0" -"libguard-perl", "Guard", "1.02", "0", "0" -"libhash-asobject-perl", "Hash-AsObject", "0.13", "0", "0" -"libhash-case-perl", "Hash-Case", "1.006", "0", "0" -"libhash-fieldhash-perl", "Hash-FieldHash", "0.10", "0", "0" -"libhash-flatten-perl", "Hash-Flatten", "1.19", "0", "0" -"libhash-merge-simple-perl", "Hash-Merge-Simple", "0.051", "0", "0" -"libhash-moreutils-perl", "Hash-MoreUtils", "0.02", "0", "0" -"libhash-multivalue-perl", "Hash-MultiValue", "0.08", "0", "0" -"libhash-withdefaults-perl", "Hash-WithDefaults", "0.04", "0", "0" -"libhook-lexwrap-perl", "Hook-LexWrap", "0.24", "0", "1" -"libhook-wrapsub-perl", "Hook-WrapSub", "0.03", "0", "0" -"libhtml-autopagerize-perl", "HTML-AutoPagerize", "0.01", "0", "0" -"libhtml-calendarmonthsimple-perl", "HTML-CalendarMonthSimple", "1.25", "0", "0" -"libhtml-clean-perl", "HTML-Clean", "0.8", "0", "5" -"libhtml-copy-perl", "HTML-Copy", "1.30", "0", "0" -"libhtml-display-perl", "HTML-Display", "0.39", "0", "0" -"libhtml-encoding-perl", "HTML-Encoding", "0.61", "0", "0" -"libhtml-fillinform-perl", "HTML-FillInForm", "2.00", "0", "0" -"libhtml-form-perl", "HTML-Form", "6.00", "0", "0" -"libhtml-format-perl", "HTML-Format", "2.05", "1", "0" -"libhtml-formattext-withlinks-perl", "HTML-FormatText-WithLinks", "0.14", "0", "0" -"libhtml-formfu-model-dbic-perl", "HTML-FormFu-Model-DBIC", "0.09000", "0", "2" -"libhtml-formfu-perl", "HTML-FormFu", "0.09003", "0", "4" -"libhtml-formhandler-model-dbic-perl", "HTML-FormHandler-Model-DBIC", "not-uploaded", "0", "0" -"libhtml-formhandler-perl", "HTML-FormHandler", "not-uploaded", "0", "0" -"libhtml-highlight-perl", "HTML-Highlight", "0.20", "0", "1" -"libhtml-html5-parser-perl", "HTML-HTML5-Parser", "0.103", "0", "0" -"libhtml-lint-perl", "HTML-Lint", "2.06", "2", "0" -"libhtml-mason-perl", "HTML-Mason", "1.44", "6", "2" -"libhtml-packer-perl", "HTML-Packer", "1.000", "0", "0" -"libhtml-parser-perl", "HTML-Parser", "3.68", "0", "2" -"libhtml-prototype-perl", "HTML-Prototype", "1.48", "0", "4" -"libhtml-rewriteattributes-perl", "HTML-RewriteAttributes", "0.04", "0", "0" -"libhtml-scrubber-perl", "HTML-Scrubber", "0.09", "2", "0" -"libhtml-selector-xpath-perl", "HTML-Selector-XPath", "0.07", "0", "0" -"libhtml-simpleparse-perl", "HTML-SimpleParse", "0.12", "0", "0" -"libhtml-stream-perl", "HTML-Stream", "1.60", "0", "0" -"libhtml-strip-perl", "HTML-Strip", "1.06", "0", "1" -"libhtml-stripscripts-parser-perl", "HTML-StripScripts-Parser", "1.03", "0", "0" -"libhtml-stripscripts-perl", "HTML-StripScripts", "1.05", "0", "0" -"libhtml-tableextract-perl", "HTML-TableExtract", "2.10", "0", "1" -"libhtml-tagcloud-perl", "HTML-TagCloud", "0.36", "0", "0" -"libhtml-tagfilter-perl", "HTML-TagFilter", "1.03", "0", "0" -"libhtml-tagset-perl", "HTML-Tagset", "3.20", "1", "1" -"libhtml-template-compiled-perl", "HTML-Template-Compiled", "0.95", "0", "1" -"libhtml-template-dumper-perl", "HTML-Template-Dumper", "0.1", "0", "2" -"libhtml-template-expr-perl", "HTML-Template-Expr", "0.07", "0", "1" -"libhtml-template-perl", "HTML-Template", "2.9", "0", "3" -"libhtml-template-pluggable-perl", "HTML-Template-Pluggable", "0.17", "0", "1" -"libhtml-template-pro-perl", "HTML-Template-Pro", "0.9503", "0", "0" -"libhtml-tidy-perl", "HTML-Tidy", "1.50", "0", "2" -"libhtml-tiny-perl", "HTML-Tiny", "1.05", "0", "1" -"libhtml-toc-perl", "HTML-Toc", "1.12", "0", "0" -"libhtml-tree-perl", "HTML-Tree", "4.2", "0", "1" -"libhtml-treebuilder-xpath-perl", "HTML-TreeBuilder-XPath", "0.12", "0", "0" -"libhtml-widget-perl", "HTML-Widget", "1.11", "0", "4" -"libhtml-widgets-navmenu-perl", "HTML-Widgets-NavMenu", "1.0600", "0", "1" -"libhtml-wikiconverter-dokuwiki-perl", "HTML-WikiConverter-DokuWiki", "0.53", "0", "0" -"libhtml-wikiconverter-kwiki-perl", "HTML-WikiConverter-Kwiki", "0.51", "0", "0" -"libhtml-wikiconverter-markdown-perl", "HTML-WikiConverter-Markdown", "0.02", "2", "0" -"libhtml-wikiconverter-mediawiki-perl", "HTML-WikiConverter-MediaWiki", "0.59", "0", "0" -"libhtml-wikiconverter-moinmoin-perl", "HTML-WikiConverter-MoinMoin", "0.53", "1", "0" -"libhtml-wikiconverter-oddmuse-perl", "HTML-WikiConverter-Oddmuse", "0.52", "0", "0" -"libhtml-wikiconverter-perl", "HTML-WikiConverter", "0.68", "2", "2" -"libhtml-wikiconverter-phpwiki-perl", "HTML-WikiConverter-PhpWiki", "0.51", "0", "0" -"libhtml-wikiconverter-pmwiki-perl", "HTML-WikiConverter-PmWiki", "0.51", "0", "0" -"libhtml-wikiconverter-snipsnap-perl", "HTML-WikiConverter-SnipSnap", "0.50", "0", "0" -"libhtml-wikiconverter-tikiwiki-perl", "HTML-WikiConverter-TikiWiki", "0.50", "0", "0" -"libhtml-wikiconverter-usemod-perl", "HTML-WikiConverter-UseMod", "0.50", "0", "0" -"libhtml-wikiconverter-wakkawiki-perl", "HTML-WikiConverter-WakkaWiki", "0.50", "0", "0" -"libhtml-wikiconverter-wikkawiki-perl", "HTML-WikiConverter-WikkaWiki", "0.50", "0", "0" -"libhttp-async-perl", "HTTP-Async", "0.09", "0", "1" -"libhttp-body-perl", "HTTP-Body", "1.11", "0", "0" -"libhttp-browserdetect-perl", "HTTP-BrowserDetect", "1.24", "0", "0" -"libhttp-cookies-perl", "HTTP-Cookies", "6.00", "1", "0" -"libhttp-daemon-perl", "HTTP-Daemon", "6.00", "1", "0" -"libhttp-date-perl", "HTTP-Date", "6.00", "0", "0" -"libhttp-exception-perl", "HTTP-Exception", "0.03001", "0", "0" -"libhttp-lite-perl", "HTTP-Lite", "2.3", "0", "0" -"libhttp-message-perl", "HTTP-Message", "6.01", "2", "0" -"libhttp-negotiate-perl", "HTTP-Negotiate", "6.00", "0", "0" -"libhttp-oai-perl", "HTTP-OAI", "3.24", "0", "0" -"libhttp-parser-perl", "HTTP-Parser", "0.06", "0", "0" -"libhttp-parser-xs-perl", "HTTP-Parser-XS", "0.12", "0", "0" -"libhttp-proxy-perl", "HTTP-Proxy", "0.24", "1", "3" -"libhttp-recorder-perl", "HTTP-Recorder", "0.05", "0", "0" -"libhttp-request-ascgi-perl", "HTTP-Request-AsCGI", "1.2", "0", "0" -"libhttp-request-params-perl", "HTTP-Request-Params", "1.01", "0", "0" -"libhttp-response-encoding-perl", "HTTP-Response-Encoding", "0.05", "0", "0" -"libhttp-server-simple-mason-perl", "HTTP-Server-Simple-Mason", "0.14", "0", "1" -"libhttp-server-simple-perl", "HTTP-Server-Simple", "0.44", "1", "1" -"libhttp-server-simple-psgi-perl", "HTTP-Server-Simple-PSGI", "0.14", "0", "0" -"libhttp-server-simple-recorder-perl", "HTTP-Server-Simple-Recorder", "0.03", "0", "0" -"libhttp-server-simple-static-perl", "HTTP-Server-Simple-Static", "0.07", "0", "0" -"libhttp-tiny-perl", "HTTP-Tiny", "0.012", "0", "1" -"libi18n-acceptlanguage-perl", "I18N-AcceptLanguage", "1.04", "0", "0" -"libi18n-charset-perl", "I18N-Charset", "1.396", "0", "1" -"libical-parser-perl", "iCal-Parser", "1.16", "0", "0" -"libima-dbi-contextual-perl", "Ima-DBI-Contextual", "0.006", "0", "0" -"libima-dbi-perl", "Ima-DBI", "0.35", "0", "1" -"libimage-exif-perl", "Image-EXIF", "1.00.3", "1", "3" -"libimage-librsvg-perl", "Image-LibRSVG", "0.07", "0", "1" -"libimage-math-constrain-perl", "Image-Math-Constrain", "1.02", "0", "0" -"libimage-seek-perl", "Image-Seek", "0.02", "0", "0" -"libimage-size-perl", "Image-Size", "3.230", "0", "2" -"libimager-perl", "Imager", "0.82", "0", "1" -"libimap-admin-perl", "IMAP-Admin", "1.6.6", "0", "1" -"libindirect-perl", "indirect", "0.23", "0", "0" -"libinline-perl", "Inline", "0.47", "1", "2" -"libio-aio-perl", "IO-AIO", "3.80", "1", "1" -"libio-all-lwp-perl", "IO-All-LWP", "0.14", "0", "0" -"libio-all-perl", "IO-All", "0.41", "0", "1" -"libio-async-loop-epoll-perl", "IO-Async-Loop-Epoll", "0.11", "0", "0" -"libio-async-loop-glib-perl", "IO-Async-Loop-Glib", "0.19", "0", "0" -"libio-async-perl", "IO-Async", "0.40", "0", "0" -"libio-bufferedselect-perl", "IO-BufferedSelect", "1.0", "0", "0" -"libio-capture-perl", "IO-Capture", "0.05", "1", "1" -"libio-captureoutput-perl", "IO-CaptureOutput", "1.1102", "0", "0" -"libio-compress-perl", "IO-Compress", "2.035", "6", "0" -"libio-epoll-perl", "IO-Epoll", "0.02", "1", "1" -"libio-handle-util-perl", "IO-Handle-Util", "0.01", "0", "1" -"libio-interactive-perl", "IO-Interactive", "0.0.6", "0", "0" -"libio-interface-perl", "IO-Interface", "1.05", "0", "0" -"libio-multiplex-perl", "IO-Multiplex", "1.13", "0", "0" -"libio-prompt-perl", "IO-Prompt", "0.997001", "0", "2" -"libio-socket-ip-perl", "IO-Socket-IP", "0.07", "0", "1" -"libio-socket-multicast-perl", "IO-Socket-Multicast", "1.12", "1", "1" -"libio-socket-multicast6-perl", "IO-Socket-Multicast6", "0.03", "0", "1" -"libio-socket-socks-perl", "IO-Socket-Socks", "0.4", "0", "0" -"libio-socket-ssl-perl", "IO-Socket-SSL", "1.43", "1", "0" -"libio-string-perl", "IO-String", "1.08", "0", "0" -"libio-tee-perl", "IO-Tee", "0.64", "0", "0" -"libio-tiecombine-perl", "IO-TieCombine", "1.000", "0", "0" -"libipc-pubsub-perl", "IPC-PubSub", "0.29", "0", "0" -"libipc-run-perl", "IPC-Run", "0.89", "2", "1" -"libipc-run3-perl", "IPC-Run3", "0.044", "0", "1" -"libipc-shareable-perl", "IPC-Shareable", "0.60", "0", "2" -"libipc-sharedcache-perl", "IPC-SharedCache", "1.3", "0", "1" -"libipc-sharelite-perl", "IPC-ShareLite", "0.17", "1", "0" -"libipc-system-simple-perl", "IPC-System-Simple", "1.21", "0", "0" -"libiptables-chainmgr-perl", "http://www.cipherdyne.com/modules/IPTables-ChainMgr-0.9.tar.gz", "0.9", "0", "0" -"libiptables-parse-perl", "http://www.cipherdyne.com/modules/IPTables-Parse-0.7.tar.gz", "0.7", "0", "0" -"libjavascript-beautifier-perl", "JavaScript-Beautifier", "0.17", "0", "1" -"libjavascript-minifier-xs-perl", "JavaScript-Minifier-XS", "0.09", "0", "0" -"libjavascript-packer-perl", "JavaScript-Packer", "1.002001", "0", "0" -"libjavascript-perl", "JavaScript", "1.16", "0", "4" -"libje-perl", "JE", "0.055", "0", "0" -"libjifty-dbi-perl", "Jifty-DBI", "0.68", "0", "0" -"libjifty-plugin-authentication-bitcard-perl", "unknown", "0.053", "0", "0" -"libjifty-plugin-authentication-cas-perl", "Jifty-Plugin-Authentication-CAS", "1.00", "0", "0" -"libjifty-plugin-authentication-facebook-perl", "Jifty-Plugin-Authentication-Facebook", "0.90000", "0", "0" -"libjifty-plugin-authentication-ldap-perl", "Jifty-Plugin-Authentication-Ldap", "1.01", "0", "0" -"libjifty-plugin-authzldap-perl", "Jifty-Plugin-AuthzLDAP", "0.90000", "0", "0" -"libjifty-plugin-chart-perl", "Jifty-Plugin-Chart", "1.01", "1", "0" -"libjifty-plugin-comment-perl", "Jifty-Plugin-Comment", "1.00", "0", "0" -"libjifty-plugin-googlemap-perl", "Jifty-Plugin-GoogleMap", "1.00", "0", "0" -"libjifty-plugin-oauth-perl", "Jifty-Plugin-OAuth", "0.04", "0", "0" -"libjifty-plugin-openid-perl", "Jifty-Plugin-OpenID", "1.02", "0", "1" -"libjifty-plugin-sitenews-perl", "Jifty-Plugin-SiteNews", "0.90000", "0", "0" -"libjifty-plugin-userpic-perl", "Jifty-Plugin-Userpic", "0.90000", "0", "0" -"libjifty-plugin-wikitoolbar-perl", "Jifty-Plugin-WikiToolbar", "1.00", "0", "0" -"libjira-client-perl", "JIRA-Client", "0.28", "0", "0" -"libjson-any-perl", "JSON-Any", "1.22", "0", "0" -"libjson-perl", "JSON", "2.51", "2", "0" -"libjson-pp-perl", "JSON-PP", "2.27104", "0", "0" -"libjson-rpc-perl", "JSON-RPC", "0.96", "0", "0" -"libjson-xs-perl", "JSON-XS", "2.300", "1", "1" -"libkinosearch-perl", "KinoSearch", "0.313", "2", "1" -"libkinosearch1-perl", "KinoSearch1", "1.00", "1", "1" -"libkiokudb-perl", "KiokuDB", "not-uploaded", "0", "1" -"libkwiki-cache-perl", "Kwiki-Cache", "0.11", "0", "0" -"libkwiki-perl", "Kwiki", "0.39", "1", "1" -"liblatex-decode-perl", "LaTeX-Decode", "0.03", "0", "1" -"liblatex-driver-perl", "LaTeX-Driver", "0.08", "0", "6" -"liblatex-encode-perl", "LaTeX-Encode", "0.03", "1", "1" -"liblatex-table-perl", "LaTeX-Table", "1.0.6", "0", "0" -"liblayout-manager-perl", "Layout-Manager", "0.34", "0", "0" -"liblchown-perl", "Lchown", "1.01", "0", "0" -"liblexical-persistence-perl", "Lexical-Persistence", "0.98", "1", "0" -"liblingua-en-inflect-number-perl", "Lingua-EN-Inflect-Number", "1.1", "0", "0" -"liblingua-en-inflect-perl", "Lingua-EN-Inflect", "1.893", "0", "1" -"liblingua-en-inflect-phrase-perl", "Lingua-EN-Inflect-Phrase", "0.04", "0", "0" -"liblingua-en-nameparse-perl", "Lingua-EN-NameParse", "1.30", "0", "2" -"liblingua-en-numbers-ordinate-perl", "Lingua-EN-Numbers-Ordinate", "1.02", "0", "0" -"liblingua-en-tagger-perl", "Lingua-EN-Tagger", "0.16", "0", "3" -"liblingua-es-numeros-perl", "Lingua-ES-Numeros", "0.08", "0", "0" -"liblingua-ispell-perl", "Lingua-Ispell", "0.07", "0", "1" -"liblingua-preferred-perl", "Lingua-Preferred", "0.2.4", "0", "0" -"liblinux-distribution-packages-perl", "Linux-Distribution-Packages", "0.05", "0", "0" -"liblinux-distribution-perl", "Linux-Distribution", "0.20", "0", "0" -"liblinux-dvb-perl", "Linux-DVB", "1.01", "0", "0" -"liblinux-lvm-perl", "Linux-LVM", "0.14", "1", "2" -"liblinux-usermod-perl", "Linux-usermod", "0.69", "0", "0" -"liblist-allutils-perl", "List-AllUtils", "0.02", "0", "0" -"liblist-compare-perl", "List-Compare", "0.37", "0", "0" -"liblist-maker-perl", "List-Maker", "0.0.5", "0", "0" -"liblist-moreutils-perl", "List-MoreUtils", "0.25~02", "4", "0" -"liblist-utilsby-perl", "List-UtilsBy", "0.07", "0", "0" -"liblivejournal-perl", "http://forbidden.dough.net/~archon/lj/LiveJournal-1.3.tar.gz", "1.3", "0", "4" -"libload-perl", "load", "0.19", "0", "0" -"liblocal-lib-perl", "local-lib", "1.008004", "1", "0" -"liblocale-currency-format-perl", "Locale-Currency-Format", "1.28", "0", "1" -"liblocale-gettext-perl", "gettext", "1.05", "1", "2" -"liblocale-hebrew-perl", "Locale-Hebrew", "1.04", "0", "0" -"liblocale-maketext-fuzzy-perl", "Locale-Maketext-Fuzzy", "0.10", "0", "0" -"liblocale-maketext-gettext-perl", "Locale-Maketext-Gettext", "1.28", "0", "0" -"liblocale-maketext-lexicon-perl", "Locale-Maketext-Lexicon", "0.82", "0", "0" -"liblocale-maketext-simple-perl", "Locale-Maketext-Simple", "0.21", "0", "0" -"liblocale-msgfmt-perl", "Locale-Msgfmt", "0.14", "0", "0" -"liblocale-subcountry-perl", "Locale-SubCountry", "1.47", "0", "0" -"liblocale-us-perl", "Locale-US", "1.2", "0", "0" -"liblocales-perl", "Locales", "0.16", "0", "1" -"liblockfile-simple-perl", "LockFile-Simple", "0.207", "2", "2" -"liblog-agent-logger-perl", "Log-Agent-Logger", "0.1.1", "0", "0" -"liblog-agent-perl", "Log-Agent", "0.307", "0", "1" -"liblog-agent-rotate-perl", "Log-Agent-Rotate", "0.104", "0", "0" -"liblog-any-adapter-dispatch-perl", "Log-Any-Adapter-Dispatch", "0.06", "0", "1" -"liblog-any-adapter-perl", "Log-Any-Adapter", "0.03", "0", "1" -"liblog-contextual-perl", "Log-Contextual", "0.00304", "0", "0" -"liblog-dispatch-array-perl", "Log-Dispatch-Array", "1.001", "0", "0" -"liblog-dispatch-perl", "Log-Dispatch", "2.29", "0", "0" -"liblog-dispatchouli-perl", "Log-Dispatchouli", "2.005", "0", "0" -"liblog-handler-perl", "Log-Handler", "0.71", "0", "0" -"liblog-loglite-perl", "Log-LogLite", "0.82", "0", "1" -"liblog-trace-perl", "Log-Trace", "1.070", "1", "0" -"liblog-tracemessages-perl", "Log-TraceMessages", "1.4", "0", "0" -"liblogger-syslog-perl", "Logger-Syslog", "1.1", "1", "0" -"liblwp-authen-wsse-perl", "LWP-Authen-Wsse", "0.05", "0", "0" -"liblwp-mediatypes-perl", "LWP-MediaTypes", "6.01", "0", "0" -"liblwp-online-perl", "LWP-Online", "1.07", "1", "0" -"liblwp-protocol-http-socketunix-perl", "LWP-Protocol-http-SocketUnix", "0.02", "0", "0" -"liblwp-protocol-https-perl", "LWP-Protocol-https", "not-uploaded", "0", "2" -"liblwp-protocol-socks-perl", "LWP-Protocol-socks", "1.3", "0", "0" -"liblwp-useragent-determined-perl", "LWP-UserAgent-Determined", "1.05", "0", "1" -"libmail-box-perl", "Mail-Box", "2.098", "2", "2" -"libmail-bulkmail-perl", "Mail-Bulkmail", "3.12", "0", "0" -"libmail-cclient-perl", "Mail-Cclient", "1.12", "2", "1" -"libmail-deliverystatus-bounceparser-perl", "Mail-DeliveryStatus-BounceParser", "1.527", "0", "0" -"libmail-gnupg-perl", "Mail-GnuPG", "0.16", "0", "1" -"libmail-imapclient-perl", "Mail-IMAPClient", "3.28", "0", "0" -"libmail-imaptalk-perl", "Mail-IMAPTalk", "1.03", "0", "0" -"libmail-listdetector-perl", "Mail-ListDetector", "1.03", "0", "0" -"libmail-mbox-messageparser-perl", "Mail-Mbox-MessageParser", "1.5002", "0", "3" -"libmail-mboxparser-perl", "Mail-MboxParser", "0.55", "3", "1" -"libmail-rfc822-address-perl", "Mail-RFC822-Address", "0.3", "1", "0" -"libmail-sendeasy-perl", "Mail-SendEasy", "1.2", "1", "2" -"libmail-sendmail-perl", "Mail-Sendmail", "0.79.16", "1", "2" -"libmail-srs-perl", "Mail-SRS", "0.31", "0", "0" -"libmail-thread-perl", "Mail-Thread", "2.55", "0", "0" -"libmail-verp-perl", "Mail-Verp", "0.06", "0", "0" -"libmakefile-dom-perl", "Makefile-DOM", "0.004", "0", "1" -"libmakefile-parser-perl", "Makefile-Parser", "0.211", "0", "1" -"libmarc-charset-perl", "MARC-Charset", "1.31", "1", "0" -"libmarc-crosswalk-dublincore-perl", "MARC-Crosswalk-DublinCore", "0.02", "0", "0" -"libmarc-lint-perl", "MARC-Lint", "1.44", "0", "1" -"libmarc-perl", "MARC", "1.07", "0", "1" -"libmarc-record-perl", "MARC-Record", "2.0.3", "0", "0" -"libmarc-xml-perl", "MARC-XML", "0.92", "0", "0" -"libmasonx-interp-withcallbacks-perl", "MasonX-Interp-WithCallbacks", "1.18", "0", "0" -"libmath-algebra-symbols-perl", "Math-Algebra-Symbols", "1.21", "0", "1" -"libmath-base36-perl", "Math-Base36", "0.09", "0", "0" -"libmath-base85-perl", "Math-Base85", "0.2", "0", "0" -"libmath-basecalc-perl", "Math-BaseCalc", "1.016", "0", "0" -"libmath-basecnv-perl", "Math-BaseCnv", "1.8.B59BrZX", "0", "0" -"libmath-bezier-perl", "Math-Bezier", "0.01", "0", "0" -"libmath-bigint-fastcalc-perl", "Math-BigInt-FastCalc", "not-uploaded", "0", "0" -"libmath-bigint-gmp-perl", "Math-BigInt-GMP", "1.36", "0", "0" -"libmath-bigint-perl", "Math-BigInt", "1.993", "0", "0" -"libmath-calc-units-perl", "Math-Calc-Units", "1.07", "0", "1" -"libmath-calculus-differentiate-perl", "Math-Calculus-Differentiate", "0.3", "0", "1" -"libmath-calculus-expression-perl", "Math-Calculus-Expression", "0.2.2.ds", "0", "1" -"libmath-calculus-newtonraphson-perl", "Math-Calculus-NewtonRaphson", "0.1", "0", "1" -"libmath-combinatorics-perl", "Math-Combinatorics", "0.09", "0", "0" -"libmath-derivative-perl", "Math-Derivative", "0.01", "0", "1" -"libmath-fibonacci-perl", "Math-Fibonacci", "1.5", "0", "0" -"libmath-gmp-perl", "Math-GMP", "2.06", "0", "0" -"libmath-gradient-perl", "Math-Gradient", "0.04", "0", "1" -"libmath-nocarry-perl", "Math-NoCarry", "1.11", "0", "1" -"libmath-numbercruncher-perl", "Math-NumberCruncher", "5.00", "2", "1" -"libmath-random-isaac-perl", "Math-Random-ISAAC", "1.003", "0", "0" -"libmath-random-isaac-xs-perl", "Math-Random-ISAAC-XS", "1.003", "0", "0" -"libmath-random-mt-perl", "Math-Random-MT", "1.10", "0", "0" -"libmath-random-oo-perl", "Math-Random-OO", "0.21", "0", "0" -"libmath-random-perl", "Math-Random", "0.71", "0", "2" -"libmath-random-tt800-perl", "Math-Random-TT800", "1.01", "0", "0" -"libmath-randomorg-perl", "Math-RandomOrg", "0.04", "0", "0" -"libmath-round-perl", "Math-Round", "0.06", "0", "0" -"libmath-sparsematrix-perl", "Math-SparseMatrix", "0.03", "0", "0" -"libmath-sparsevector-perl", "Math-SparseVector", "0.04", "0", "0" -"libmath-spline-perl", "Math-Spline", "0.01", "0", "0" -"libmath-symbolic-perl", "Math-Symbolic", "0.606", "0", "1" -"libmath-vec-perl", "Math-Vec", "1.01", "0", "0" -"libmecab-perl", "http://qa.debian.org/watch/sf.php/mecab/mecab-perl-0.98.tar.gz", "0.98", "0", "0" -"libmediawiki-api-perl", "MediaWiki-API", "0.35", "0", "0" -"libmemoize-expirelru-perl", "Memoize-ExpireLRU", "0.55", "0", "0" -"libmemoize-memcached-perl", "Memoize-Memcached", "0.03", "0", "1" -"libmethod-alias-perl", "Method-Alias", "1.03", "0", "0" -"libmethod-signatures-simple-perl", "Method-Signatures-Simple", "0.06", "0", "1" -"libmime-base32-perl", "MIME-Base32", "1.02a", "0", "0" -"libmime-base64-urlsafe-perl", "MIME-Base64-URLSafe", "0.01", "0", "0" -"libmime-charset-perl", "MIME-Charset", "1.008.1", "0", "1" -"libmime-encwords-perl", "MIME-EncWords", "1.012", "0", "1" -"libmime-explode-perl", "MIME-Explode", "0.38", "0", "0" -"libmime-lite-perl", "MIME-Lite", "3.027", "4", "0" -"libmime-tools-perl", "MIME-tools", "5.502", "2", "1" -"libmime-types-perl", "MIME-Types", "1.30", "1", "0" -"libmixin-extrafields-param-perl", "Mixin-ExtraFields-Param", "0.011", "0", "0" -"libmixin-extrafields-perl", "Mixin-ExtraFields", "0.008", "0", "0" -"libmixin-linewise-perl", "Mixin-Linewise", "0.003", "0", "0" -"libmkdoc-xml-perl", "MKDoc-XML", "0.75", "0", "0" -"libmldbm-perl", "MLDBM", "2.04", "0", "0" -"libmldbm-sync-perl", "MLDBM-Sync", "0.30", "0", "0" -"libmocked-perl", "mocked", "0.09", "0", "0" -"libmodern-perl-perl", "Modern-Perl", "1.03", "1", "0" -"libmodule-build-perl", "Module-Build", "0.380000", "0", "2" -"libmodule-corelist-perl", "Module-CoreList", "2.49", "0", "0" -"libmodule-cpants-analyse-perl", "Module-CPANTS-Analyse", "0.85", "1", "3" -"libmodule-depends-perl", "Module-Depends", "0.15", "1", "4" -"libmodule-extract-perl", "Module-Extract", "0.01", "0", "0" -"libmodule-extract-use-perl", "Module-Extract-Use", "1.01", "0", "0" -"libmodule-extractuse-perl", "Module-ExtractUse", "0.23", "0", "0" -"libmodule-find-perl", "Module-Find", "0.10", "0", "0" -"libmodule-info-perl", "Module-Info", "0.32", "0", "4" -"libmodule-inspector-perl", "Module-Inspector", "1.05", "0", "0" -"libmodule-install-perl", "Module-Install", "1.01", "0", "1" -"libmodule-install-xsutil-perl", "Module-Install-XSUtil", "0.37", "0", "0" -"libmodule-load-conditional-perl", "Module-Load-Conditional", "0.44", "0", "0" -"libmodule-manifest-perl", "Module-Manifest", "0.07", "0", "0" -"libmodule-math-depends-perl", "Module-Math-Depends", "0.02", "0", "0" -"libmodule-metadata-perl", "Module-Metadata", "1.000003", "0", "0" -"libmodule-optional-perl", "Module-Optional", "0.03", "0", "0" -"libmodule-packaged-perl", "Module-Packaged", "0.86", "1", "1" -"libmodule-pluggable-fast-perl", "Module-Pluggable-Fast", "0.19", "0", "0" -"libmodule-pluggable-ordered-perl", "Module-Pluggable-Ordered", "1.5", "0", "0" -"libmodule-pluggable-perl", "Module-Pluggable", "3.9", "1", "2" -"libmodule-refresh-perl", "Module-Refresh", "0.16", "0", "0" -"libmodule-runtime-perl", "Module-Runtime", "0.007", "0", "0" -"libmodule-scandeps-perl", "Module-ScanDeps", "1.02", "0", "1" -"libmodule-signature-perl", "Module-Signature", "0.68", "1", "0" -"libmodule-starter-pbp-perl", "Module-Starter-PBP", "0.0.3", "0", "0" -"libmodule-starter-perl", "Module-Starter", "1.560", "1", "1" -"libmodule-starter-plugin-simplestore-perl", "Module-Starter-Plugin-SimpleStore", "0.143", "0", "0" -"libmodule-starter-plugin-tt2-perl", "Module-Starter-Plugin-TT2", "0.125", "0", "2" -"libmodule-starter-smart-perl", "Module-Starter-Smart", "0.0.2", "0", "0" -"libmodule-used-perl", "Module-Used", "1.2.0", "0", "0" -"libmodule-util-perl", "Module-Util", "1.07", "0", "0" -"libmodule-versions-report-perl", "Module-Versions-Report", "1.06", "0", "0" -"libmojolicious-perl", "Mojolicious", "1.21", "1", "0" -"libmojomojo-perl", "MojoMojo", "1.04", "0", "1" -"libmonkey-patch-perl", "Monkey-Patch", "0.03", "0", "1" -"libmoo-perl", "Moo", "0.009007", "0", "0" -"libmoose-autobox-perl", "Moose-Autobox", "0.11", "0", "0" -"libmoose-perl", "Moose", "2.0007", "0", "1" -"libmoosex-aliases-perl", "MooseX-Aliases", "0.10", "0", "0" -"libmoosex-app-cmd-perl", "MooseX-App-Cmd", "0.06", "0", "0" -"libmoosex-async-perl", "MooseX-Async", "0.07", "0", "0" -"libmoosex-attributehelpers-perl", "MooseX-AttributeHelpers", "0.23", "0", "1" -"libmoosex-blessed-reconstruct-perl", "MooseX-Blessed-Reconstruct", "0.04", "0", "0" -"libmoosex-chainedaccessors-perl", "MooseX-ChainedAccessors", "0.02", "0", "0" -"libmoosex-clone-perl", "MooseX-Clone", "0.05", "0", "1" -"libmoosex-compiletime-traits-perl", "MooseX-CompileTime-Traits", "1.102570", "0", "0" -"libmoosex-configfromfile-perl", "MooseX-ConfigFromFile", "0.03", "0", "0" -"libmoosex-daemonize-perl", "MooseX-Daemonize", "0.12", "0", "2" -"libmoosex-declare-perl", "MooseX-Declare", "0.34", "0", "1" -"libmoosex-emulate-class-accessor-fast-perl", "MooseX-Emulate-Class-Accessor-Fast", "0.00903", "0", "0" -"libmoosex-followpbp-perl", "MooseX-FollowPBP", "0.05", "0", "0" -"libmoosex-getopt-perl", "MooseX-Getopt", "0.37", "0", "1" -"libmoosex-has-sugar-perl", "MooseX-Has-Sugar", "0.05055616", "0", "0" -"libmoosex-insideout-perl", "MooseX-InsideOut", "0.106", "0", "1" -"libmoosex-lazyrequire-perl", "MooseX-LazyRequire", "0.07", "0", "0" -"libmoosex-log-log4perl-perl", "MooseX-Log-Log4perl", "0.42", "0", "1" -"libmoosex-meta-typeconstraint-forcecoercion-perl", "MooseX-Meta-TypeConstraint-ForceCoercion", "0.01", "0", "0" -"libmoosex-method-signatures-perl", "MooseX-Method-Signatures", "0.36", "0", "0" -"libmoosex-methodattributes-perl", "MooseX-MethodAttributes", "0.24", "0", "0" -"libmoosex-multiinitarg-perl", "MooseX-MultiInitArg", "0.01", "0", "0" -"libmoosex-multimethods-perl", "MooseX-MultiMethods", "0.10", "0", "0" -"libmoosex-nonmoose-perl", "MooseX-NonMoose", "0.22", "0", "0" -"libmoosex-object-pluggable-perl", "MooseX-Object-Pluggable", "0.0011", "1", "0" -"libmoosex-oneargnew-perl", "MooseX-OneArgNew", "0.001", "0", "0" -"libmoosex-params-validate-perl", "MooseX-Params-Validate", "0.16", "0", "0" -"libmoosex-poe-perl", "MooseX-POE", "0.214", "0", "1" -"libmoosex-role-parameterized-perl", "MooseX-Role-Parameterized", "0.26", "0", "0" -"libmoosex-role-withoverloading-perl", "MooseX-Role-WithOverloading", "0.09", "0", "0" -"libmoosex-semiaffordanceaccessor-perl", "MooseX-SemiAffordanceAccessor", "0.09", "0", "1" -"libmoosex-setonce-perl", "MooseX-SetOnce", "0.200000", "0", "0" -"libmoosex-simpleconfig-perl", "MooseX-SimpleConfig", "not-uploaded", "0", "1" -"libmoosex-singleton-perl", "MooseX-Singleton", "0.26", "0", "0" -"libmoosex-storage-perl", "MooseX-Storage", "0.28", "0", "0" -"libmoosex-strictconstructor-perl", "MooseX-StrictConstructor", "0.16", "0", "0" -"libmoosex-traits-perl", "MooseX-Traits", "0.11", "0", "0" -"libmoosex-traits-pluggable-perl", "MooseX-Traits-Pluggable", "0.10", "0", "0" -"libmoosex-types-common-perl", "MooseX-Types-Common", "0.001002", "0", "0" -"libmoosex-types-datetime-perl", "MooseX-Types-DateTime", "0.03", "0", "1" -"libmoosex-types-json-perl", "MooseX-Types-JSON", "0.02", "0", "0" -"libmoosex-types-netaddr-ip-perl", "MooseX-Types-NetAddr-IP", "0.04", "0", "0" -"libmoosex-types-path-class-perl", "MooseX-Types-Path-Class", "0.05", "0", "0" -"libmoosex-types-perl", "MooseX-Types", "0.25", "0", "0" -"libmoosex-types-perl-perl", "MooseX-Types-Perl", "0.101340", "0", "0" -"libmoosex-types-set-object-perl", "MooseX-Types-Set-Object", "0.03", "0", "0" -"libmoosex-types-structured-perl", "MooseX-Types-Structured", "0.27", "0", "0" -"libmoosex-types-varianttable-perl", "MooseX-Types-VariantTable", "0.04", "0", "2" -"libmoosex-yaml-perl", "MooseX-YAML", "0.04", "0", "0" -"libmouse-perl", "Mouse", "0.93", "0", "0" -"libmousex-getopt-perl", "MouseX-Getopt", "0.33", "0", "1" -"libmousex-nativetraits-perl", "MouseX-NativeTraits", "1.04", "0", "0" -"libmousex-strictconstructor-perl", "MouseX-StrictConstructor", "0.02", "0", "0" -"libmousex-types-path-class-perl", "MouseX-Types-Path-Class", "0.06", "0", "0" -"libmousex-types-perl", "MouseX-Types", "0.05", "0", "0" -"libmqdb-perl", "MQdb", "0.954", "0", "1" -"libmro-compat-perl", "MRO-Compat", "0.11", "0", "0" -"libmsgcat-perl", "Msgcat", "1.03", "0", "0" -"libmusicbrainz-discid-perl", "MusicBrainz-DiscID", "0.03", "1", "0" -"libmysql-diff-perl", "MySQL-Diff", "0.33", "0", "0" -"libnagios-object-perl", "Nagios-Object", "0.21.15", "0", "1" -"libnagios-plugin-perl", "Nagios-Plugin", "0.35", "0", "0" -"libnamespace-autoclean-perl", "namespace-autoclean", "0.12", "0", "0" -"libnamespace-clean-perl", "namespace-clean", "0.20", "0", "1" -"libnet-akamai-perl", "Net-Akamai", "0.14", "0", "0" -"libnet-akismet-perl", "Net-Akismet", "0.05", "0", "0" -"libnet-amazon-ec2-perl", "Net-Amazon-EC2", "0.14", "0", "1" -"libnet-amazon-perl", "Net-Amazon", "0.59", "0", "0" -"libnet-amazon-s3-perl", "Net-Amazon-S3", "0.53", "1", "2" -"libnet-amazon-s3-tools-perl", "Net-Amazon-S3-Tools", "0.08", "0", "2" -"libnet-arp-perl", "Net-ARP", "1.0.4", "0", "2" -"libnet-bluetooth-perl", "Net-Bluetooth", "0.40", "1", "1" -"libnet-bonjour-perl", "Net-Bonjour", "0.96", "0", "0" -"libnet-cidr-lite-perl", "Net-CIDR-Lite", "0.21", "0", "0" -"libnet-cups-perl", "Net-CUPS", "0.60", "0", "0" -"libnet-daap-dmap-perl", "Net-DAAP-DMAP", "1.26", "0", "1" -"libnet-dhcp-perl", "Net-DHCP", "0.67", "0", "1" -"libnet-dns-async-perl", "Net-DNS-Async", "1.07", "0", "0" -"libnet-domain-tld-perl", "Net-Domain-TLD", "1.69", "1", "0" -"libnet-dpap-client-perl", "Net-DPAP-Client", "0.26", "0", "0" -"libnet-dri-perl", "Net-DRI", "0.96", "0", "1" -"libnet-easytcp-perl", "EasyTCP", "0.26", "0", "0" -"libnet-epp-perl", "Net-EPP", "0.16", "1", "1" -"libnet-frame-perl", "Net-Frame", "1.07", "0", "1" -"libnet-freedb-perl", "Net-FreeDB", "0.08", "1", "2" -"libnet-github-perl", "Net-GitHub", "0.28", "0", "0" -"libnet-google-authsub-perl", "Net-Google-AuthSub", "0.5", "0", "0" -"libnet-google-code-perl", "Net-Google-Code", "0.19", "0", "0" -"libnet-gpsd3-perl", "Net-GPSD3", "0.11", "0", "1" -"libnet-hiveminder-perl", "Net-Hiveminder", "0.08", "0", "0" -"libnet-hotline-perl", "Net-Hotline", "0.83", "0", "1" -"libnet-http-perl", "Net-HTTP", "6.01", "2", "0" -"libnet-https-any-perl", "Net-HTTPS-Any", "0.10", "0", "0" -"libnet-ident-perl", "Net-Ident", "1.23", "0", "3" -"libnet-imap-client-perl", "Net-IMAP-Client", "0.95", "0", "1" -"libnet-imap-simple-perl", "Net-IMAP-Simple", "1.2022", "1", "1" -"libnet-imap-simple-ssl-perl", "Net-IMAP-Simple-SSL", "1.3", "0", "0" -"libnet-ip-perl", "Net-IP", "1.25", "0", "3" -"libnet-irc-perl", "Net-IRC", "0.75", "1", "6" -"libnet-jabber-loudmouth-perl", "Net-Jabber-Loudmouth", "0.07", "0", "2" -"libnet-jabber-perl", "Net-Jabber", "2.0", "2", "2" -"libnet-jifty-perl", "Net-Jifty", "0.12", "0", "0" -"libnet-ldap-perl", "perl-ldap", "0.4001", "2", "3" -"libnet-libdnet-perl", "Net-Libdnet", "0.94", "0", "1" -"libnet-libidn-perl", "Net-LibIDN", "0.12.ds", "0", "0" -"libnet-mac-perl", "Net-MAC", "2.103622", "0", "0" -"libnet-mac-vendor-perl", "Net-MAC-Vendor", "1.18", "0", "2" -"libnet-managesieve-perl", "Net-ManageSieve", "0.10", "0", "2" -"libnet-nationalrail-livedepartureboards-perl", "Net-NationalRail-LiveDepartureBoards", "0.02", "1", "0" -"libnet-netmask-perl", "Net-Netmask", "1.9015", "0", "1" -"libnet-nis-perl", "Net-NIS", "0.43", "0", "0" -"libnet-nslookup-perl", "Net-Nslookup", "1.19", "1", "0" -"libnet-ntp-perl", "Net-NTP", "1.2", "0", "0" -"libnet-oauth-perl", "Net-OAuth", "0.27", "0", "0" -"libnet-opensrs-perl", "Net-OpenSRS", "0.06", "0", "0" -"libnet-patricia-perl", "Net-Patricia", "1.19", "0", "1" -"libnet-pcap-perl", "Net-Pcap", "0.16", "0", "1" -"libnet-ph-perl", "Net-PH", "2.21", "0", "0" -"libnet-rawip-perl", "Net-RawIP", "0.25", "1", "2" -"libnet-rblclient-perl", "Net-RBLClient", "0.5", "1", "0" -"libnet-rendezvous-publish-backend-avahi-perl", "Net-Rendezvous-Publish-Backend-Avahi", "0.03", "0", "0" -"libnet-rendezvous-publish-perl", "Net-Rendezvous-Publish", "0.04", "0", "1" -"libnet-scp-expect-perl", "Net-SCP-Expect", "0.16", "0", "0" -"libnet-server-coro-perl", "Net-Server-Coro", "not-uploaded", "0", "0" -"libnet-server-perl", "Net-Server", "0.99", "2", "5" -"libnet-sftp-foreign-perl", "Net-SFTP-Foreign", "1.65", "0", "1" -"libnet-sieve-perl", "Net-Sieve", "0.07", "0", "0" -"libnet-sieve-script-perl", "Net-Sieve-Script", "0.08", "0", "0" -"libnet-sip-perl", "Net-SIP", "0.62", "0", "2" -"libnet-smpp-perl", "Net-SMPP", "1.18", "0", "0" -"libnet-smtp-server-perl", "SMTP-Server", "1.1", "2", "0" -"libnet-smtp-ssl-perl", "Net-SMTP-SSL", "1.01", "0", "0" -"libnet-snpp-perl", "Net-SNPP", "1.17", "0", "1" -"libnet-ssh2-perl", "Net-SSH2", "0.35", "1", "1" -"libnet-ssleay-perl", "Net-SSLeay", "1.36", "2", "3" -"libnet-stomp-perl", "Net-Stomp", "0.41", "1", "0" -"libnet-subnets-perl", "unknown", "1.0", "0", "0" -"libnet-telnet-perl", "Net-Telnet", "3.03", "0", "0" -"libnet-tftp-perl", "Net-TFTP", "0.19", "0", "0" -"libnet-tftpd-perl", "Net-TFTPd", "0.04", "1", "0" -"libnet-trac-perl", "Net-Trac", "0.14", "1", "0" -"libnet-twitter-lite-perl", "Net-Twitter-Lite", "0.10004", "0", "0" -"libnet-twitter-perl", "Net-Twitter", "3.17001", "0", "2" -"libnet-vnc-perl", "Net-VNC", "0.38", "0", "0" -"libnet-write-perl", "Net-Write", "1.05", "0", "0" -"libnet-xmpp-perl", "Net-XMPP", "1.02", "2", "1" -"libnet-xwhois-perl", "Net-XWhois", "0.90", "0", "0" -"libnet-z3950-zoom-perl", "Net-Z3950-ZOOM", "1.26", "0", "0" -"libnetaddr-ip-perl", "/NetAddr-IP", "4.044", "0", "1" -"libnetapp-perl", "NetApp", "1.1.2", "0", "0" -"libnetpacket-perl", "NetPacket", "1.1.1", "0", "1" -"libnetserver-generic-perl", "NetServer-Generic", "1.03", "0", "1" -"libnetwork-ipv4addr-perl", "Net-IPv4Addr", "0.10.ds", "0", "1" -"libnetxap-perl", "NetxAP", "0.02", "0", "9" -"libnews-newsrc-perl", "News-Newsrc", "1.09", "0", "0" -"libnews-nntpclient-perl", "NNTPClient", "0.37", "0", "0" -"libnews-scan-perl", "News-Scan", "0.53", "0", "1" -"libnumber-compare-perl", "Number-Compare", "0.01", "0", "0" -"libnumber-format-perl", "Number-Format", "1.73", "0", "0" -"libnumber-range-perl", "Number-Range", "0.07", "0", "0" -"libnumber-recordlocator-perl", "Number-RecordLocator", "0.005", "0", "0" -"libobject-declare-perl", "Object-Declare", "0.22", "0", "0" -"libobject-destroyer-perl", "Object-Destroyer", "2.00", "0", "0" -"libobject-event-perl", "Object-Event", "1.220", "0", "0" -"libobject-id-perl", "Object-ID", "0.1.1", "0", "1" -"libobject-insideout-perl", "Object-InsideOut", "3.81", "0", "0" -"libobject-multitype-perl", "Object-MultiType", "0.05", "0", "0" -"libobject-pluggable-perl", "Object-Pluggable", "1.29", "0", "0" -"libobject-realize-later-perl", "Object-Realize-Later", "0.18", "0", "0" -"libobject-signature-perl", "Object-Signature", "1.05", "1", "0" -"libobject-tiny-perl", "Object-Tiny", "1.06", "0", "0" -"libogg-vorbis-decoder-perl", "Ogg-Vorbis-Decoder", "0.9", "0", "0" -"libogg-vorbis-header-perl", "Ogg-Vorbis-Header", "0.03", "2", "1" -"libogg-vorbis-header-pureperl-perl", "Ogg-Vorbis-Header-PurePerl", "1.0", "1", "1" -"libogre-perl", "Ogre", "0.50", "0", "1" -"libois-perl", "OIS", "0.05", "0", "0" -"libole-storage-lite-perl", "OLE-Storage_Lite", "0.19", "0", "0" -"libopengl-perl", "OpenGL", "0.62", "0", "4" -"libopengl-xscreensaver-perl", "OpenGL-XScreenSaver", "0.04", "0", "0" -"libopenoffice-oodoc-perl", "OpenOffice-OODoc", "2.125", "0", "1" -"liborlite-migrate-perl", "ORLite-Migrate", "1.07", "0", "0" -"liborlite-mirror-perl", "ORLite-Mirror", "1.20", "0", "0" -"liborlite-perl", "ORLite", "1.48", "0", "1" -"liborlite-statistics-perl", "ORLite-Statistics", "0.03", "0", "0" -"libouch-perl", "Ouch", "0.0401", "0", "0" -"libpackage-deprecationmanager-perl", "Package-DeprecationManager", "0.10", "0", "0" -"libpackage-pkg-perl", "Package-Pkg", "0.0019", "0", "0" -"libpackage-stash-perl", "Package-Stash", "0.29", "0", "1" -"libpackage-stash-xs-perl", "Package-Stash-XS", "0.22", "0", "0" -"libpadwalker-perl", "PadWalker", "1.92", "0", "1" -"libpalm-perl", "p5-Palm", "1.012", "0", "2" -"libpango-perl", "Pango", "1.221", "0", "1" -"libpar-dist-perl", "PAR-Dist", "0.45", "0", "0" -"libpar-packer-perl", "PAR-Packer", "1.008", "0", "2" -"libpar-perl", "PAR", "1.002", "0", "1" -"libparallel-iterator-perl", "Parallel-Iterator", "1.00", "0", "0" -"libparams-callbackrequest-perl", "Params-CallbackRequest", "1.19", "0", "0" -"libparams-classify-perl", "Params-Classify", "0.013", "0", "0" -"libparams-coerce-perl", "Params-Coerce", "0.14", "0", "0" -"libparams-validate-perl", "Params-Validate", "0.97", "0", "1" -"libparanoid-perl", "Paranoid", "0.29", "0", "3" -"libparent-perl", "parent", "0.224", "0", "0" -"libparse-cpan-meta-perl", "Parse-CPAN-Meta", "1.4401", "0", "0" -"libparse-cpan-packages-perl", "Parse-CPAN-Packages", "2.31", "0", "1" -"libparse-debian-packages-perl", "Parse-Debian-Packages", "0.01", "1", "1" -"libparse-dia-sql-perl", "Parse-Dia-SQL", "0.17", "0", "0" -"libparse-dmidecode-perl", "Parse-DMIDecode", "0.03", "0", "1" -"libparse-errorstring-perl-perl", "Parse-ErrorString-Perl", "0.15", "0", "0" -"libparse-exuberantctags-perl", "Parse-ExuberantCTags", "1.01", "0", "0" -"libparse-http-useragent-perl", "Parse-HTTP-UserAgent", "0.20", "0", "1" -"libparse-mediawikidump-perl", "Parse-MediaWikiDump", "1.0.6", "0", "0" -"libparse-method-signatures-perl", "Parse-Method-Signatures", "1.003013", "0", "0" -"libparse-plainconfig-perl", "Parse-PlainConfig", "2.06", "0", "0" -"libparse-recdescent-perl", "Parse-RecDescent", "1.965001", "0", "0" -"libparse-syslog-perl", "Parse-Syslog", "1.10", "0", "0" -"libparse-yapp-perl", "Parse-Yapp", "1.05", "0", "3" -"libpath-class-perl", "Path-Class", "0.23", "0", "0" -"libpath-dispatcher-declarative-perl", "Path-Dispatcher-Declarative", "0.03", "0", "0" -"libpath-dispatcher-perl", "Path-Dispatcher", "1.02", "0", "1" -"libpdf-api2-perl", "PDF-API2", "2.019", "4", "1" -"libpdf-api2-simple-perl", "PDF-API2-Simple", "1.1.4u", "0", "0" -"libpdf-create-perl", "PDF-Create", "1.06", "0", "0" -"libpdf-report-perl", "PDF-Report", "1.33", "0", "1" -"libpdf-reuse-barcode-perl", "PDF-Reuse-Barcode", "0.05", "0", "0" -"libpdf-reuse-perl", "PDF-Reuse", "0.35", "1", "2" -"libpdf-table-perl", "PDF-Table", "0.9.3", "0", "1" -"libperl-apireference-perl", "Perl-APIReference", "0.05", "0", "0" -"libperl-critic-perl", "Perl-Critic", "1.116", "0", "0" -"libperl-destruct-level-perl", "Perl-Destruct-Level", "0.02", "0", "0" -"libperl-metrics-simple-perl", "Perl-Metrics-Simple", "0.15", "0", "0" -"libperl-minimumversion-perl", "Perl-MinimumVersion", "1.28", "1", "0" -"libperl-ostype-perl", "Perl-OSType", "1.002", "0", "0" -"libperl-prereqscanner-perl", "Perl-PrereqScanner", "1.002", "0", "0" -"libperl-version-perl", "Perl-Version", "1.010", "0", "0" -"libperl4-corelibs-perl", "Perl4-CoreLibs", "0.003", "1", "0" -"libperl5i-perl", "perl5i", "2.6.1", "0", "1" -"libperl6-export-perl", "Perl6-Export", "0.07", "0", "0" -"libperl6-form-perl", "Perl6-Form", "0.04", "0", "0" -"libperl6-junction-perl", "Perl6-Junction", "1.40000", "0", "0" -"libperl6-slurp-perl", "Perl6-Slurp", "0.03", "0", "0" -"libperldoc-search-perl", "Perldoc-Search", "0.01", "1", "1" -"libperlio-gzip-perl", "PerlIO-gzip", "0.18", "0", "0" -"libperlspeak-perl", "PerlSpeak", "2.01", "0", "0" -"libpetal-perl", "Petal", "2.19", "3", "0" -"libpetal-utils-perl", "Petal-Utils", "0.06", "1", "0" -"libpgplot-perl", "PGPLOT", "2.21", "0", "1" -"libphp-serialization-perl", "PHP-Serialization", "0.34", "0", "0" -"libplack-perl", "Plack", "0.9979", "0", "0" -"libpod-2-docbook-perl", "Pod-2-DocBook", "0.03", "0", "0" -"libpod-abstract-perl", "Pod-Abstract", "0.20", "0", "1" -"libpod-constants-perl", "Pod-Constants", "0.16", "0", "0" -"libpod-coverage-moose-perl", "Pod-Coverage-Moose", "not-uploaded", "0", "0" -"libpod-coverage-perl", "Pod-Coverage", "0.21", "0", "0" -"libpod-coverage-trustpod-perl", "Pod-Coverage-TrustPod", "0.092830", "0", "0" -"libpod-elemental-perl", "Pod-Elemental", "0.102360", "0", "0" -"libpod-elemental-perlmunger-perl", "Pod-Elemental-PerlMunger", "0.093330", "0", "0" -"libpod-eventual-perl", "Pod-Eventual", "0.093170", "0", "0" -"libpod-index-perl", "Pod-Index", "0.14", "0", "0" -"libpod-markdown-perl", "Pod-Markdown", "1.110730", "0", "0" -"libpod-plainer-perl", "Pod-Plainer", "1.03", "0", "0" -"libpod-pom-perl", "Pod-POM", "0.27", "1", "1" -"libpod-readme-perl", "Pod-Readme", "0.11", "0", "0" -"libpod-sax-perl", "Pod-SAX", "0.14", "0", "0" -"libpod-simple-perl", "Pod-Simple", "3.16", "0", "1" -"libpod-spell-perl", "Pod-Spell", "1.01", "0", "0" -"libpod-strip-perl", "Pod-Strip", "1.02", "0", "0" -"libpod-tree-perl", "Pod-Tree", "1.17", "0", "1" -"libpod-weaver-perl", "Pod-Weaver", "3.101631", "0", "0" -"libpod-wordlist-hanekomu-perl", "Pod-Wordlist-hanekomu", "1.110090", "0", "0" -"libpod-wsdl-perl", "Pod-WSDL", "0.061", "0", "0" -"libpod-xhtml-perl", "Pod-Xhtml", "1.60", "0", "0" -"libpod2-base-perl", "POD2-Base", "0.043", "0", "2" -"libpoe-api-peek-perl", "POE-API-Peek", "2.1600", "1", "0" -"libpoe-component-client-dns-perl", "POE-Component-Client-DNS", "1.051", "0", "1" -"libpoe-component-client-http-perl", "POE-Component-Client-HTTP", "0.942", "0", "2" -"libpoe-component-client-keepalive-perl", "POE-Component-Client-Keepalive", "0.2660", "0", "1" -"libpoe-component-client-mpd-perl", "POE-Component-Client-MPD", "1.100430", "0", "0" -"libpoe-component-client-ping-perl", "POE-Component-Client-Ping", "1.163", "0", "0" -"libpoe-component-dbiagent-perl", "POE-Component-DBIAgent", "0.26", "0", "1" -"libpoe-component-ikc-perl", "POE-Component-IKC", "0.2200", "1", "0" -"libpoe-component-irc-perl", "POE-Component-IRC", "6.54", "0", "2" -"libpoe-component-jabber-perl", "POE-Component-Jabber", "3.00", "0", "1" -"libpoe-component-jobqueue-perl", "POE-Component-JobQueue", "0.5700", "0", "1" -"libpoe-component-pcap-perl", "POE-Component-Pcap", "0.04", "0", "0" -"libpoe-component-pubsub-perl", "POE-Component-PubSub", "0.05", "1", "0" -"libpoe-component-resolver-perl", "POE-Component-Resolver", "0.911", "0", "1" -"libpoe-component-server-http-perl", "POE-Component-Server-HTTP", "0.09", "1", "0" -"libpoe-component-server-simplehttp-perl", "POE-Component-Server-SimpleHTTP", "2.08", "0", "1" -"libpoe-component-server-soap-perl", "POE-Component-Server-SOAP", "1.14", "0", "0" -"libpoe-component-sslify-perl", "POE-Component-SSLify", "1.005", "0", "1" -"libpoe-filter-http-parser-perl", "POE-Filter-HTTP-Parser", "1.04", "0", "0" -"libpoe-filter-ircd-perl", "POE-Filter-IRCD", "2.42", "0", "0" -"libpoe-filter-xml-perl", "POE-Filter-XML", "0.38", "0", "0" -"libpoe-loop-event-perl", "POE-Loop-Event", "1.304", "0", "0" -"libpoe-loop-tk-perl", "POE-Loop-Tk", "1.304", "0", "1" -"libpoe-perl", "POE", "1.3100", "0", "2" -"libpoe-test-loops-perl", "POE-Test-Loops", "1.050", "0", "0" -"libpoex-role-sessioninstantiation-perl", "POEx-Role-SessionInstantiation", "1.102610", "1", "1" -"libpoex-types-perl", "POEx-Types", "1.100910", "0", "0" -"libposix-strptime-perl", "POSIX-strptime", "0.10", "0", "0" -"libpostfix-parse-mailq-perl", "Postfix-Parse-Mailq", "1.001", "0", "0" -"libpostscript-file-perl", "PostScript-File", "2.02", "0", "1" -"libpostscript-perl", "PostScript", "0.06", "0", "2" -"libppi-html-perl", "PPI-HTML", "1.08", "0", "0" -"libppi-perl", "PPI", "1.215", "0", "0" -"libppi-xs-perl", "PPI-XS", "0.901", "0", "0" -"libppix-editortools-perl", "PPIx-EditorTools", "0.13", "0", "0" -"libppix-regexp-perl", "PPIx-Regexp", "0.020", "0", "0" -"libppix-utilities-perl", "PPIx-Utilities", "1.001000", "0", "0" -"libpragmatic-perl", "Pragmatic", "1.7", "0", "0" -"libprobe-perl-perl", "Probe-Perl", "0.01", "0", "0" -"libproc-background-perl", "Proc-Background", "1.10", "0", "1" -"libproc-daemon-perl", "Proc-Daemon", "0.10", "0", "0" -"libproc-fork-perl", "Proc-Fork", "0.71", "0", "0" -"libproc-invokeeditor-perl", "Proc-InvokeEditor", "1.06", "0", "0" -"libproc-processtable-perl", "Proc-ProcessTable", "0.45", "0", "1" -"libproc-reliable-perl", "Proc-Reliable", "1.16", "0", "2" -"libproc-simple-perl", "Proc-Simple", "1.27", "0", "2" -"libprpc-perl", "pRPC-modules", "0.1005", "0", "3" -"libquantum-superpositions-perl", "Quantum-Superpositions", "2.02", "0", "1" -"libquota-perl", "Quota", "1.6.5", "0", "2" -"librcs-perl", "Rcs", "1.05", "0", "1" -"libreadonly-perl", "Readonly", "1.03", "0", "0" -"libreadonly-xs-perl", "Readonly-XS", "1.04", "0", "0" -"libredis-perl", "Redis", "1.9040", "0", "0" -"libregexp-common-email-address-perl", "Regexp-Common-Email-Address", "1.01", "0", "0" -"libregexp-common-perl", "Regexp-Common", "2011041701", "0", "1" -"libregexp-common-time-perl", "Regexp-Common-time", "0.04", "0", "0" -"libregexp-grammars-perl", "Regexp-Grammars", "1.012", "0", "0" -"libregexp-optimizer-perl", "Regexp-Optimizer", "0.15", "0", "1" -"libregexp-reggrp-perl", "Regexp-RegGrp", "1.000001", "0", "0" -"librelative-perl", "relative", "0.04", "0", "0" -"librest-application-perl", "REST-Application", "0.992", "0", "2" -"libreturn-value-perl", "Return-Value", "1.666001", "0", "0" -"librivescript-perl", "RiveScript", "1.20", "0", "2" -"librole-hasmessage-perl", "Role-HasMessage", "0.005", "0", "0" -"librole-identifiable-perl", "Role-Identifiable", "0.005", "0", "0" -"libroman-perl", "Roman", "1.23", "0", "0" -"librose-datetime-perl", "Rose-DateTime", "0.537", "0", "0" -"librose-db-object-perl", "Rose-DB-Object", "0.794", "0", "0" -"librose-db-perl", "Rose-DB", "0.763", "0", "0" -"librose-object-perl", "Rose-Object", "0.859", "0", "0" -"librpc-xml-perl", "RPC-XML", "0.74", "1", "1" -"librrdtool-oo-perl", "RRDTool-OO", "0.31", "0", "1" -"librt-client-rest-perl", "RT-Client-REST", "0.4", "1", "0" -"librtf-writer-perl", "RTF-Writer", "1.11", "0", "0" -"librunapp-perl", "RunApp", "0.13", "0", "1" -"libsane-perl", "Sane", "0.03", "1", "0" -"libscalar-defer-perl", "Scalar-Defer", "0.23", "0", "0" -"libscalar-list-utils-perl", "Scalar-List-Utils", "1.23", "0", "0" -"libscalar-number-perl", "Scalar-Number", "0.006", "0", "0" -"libscalar-string-perl", "Scalar-String", "0.002", "0", "0" -"libscalar-util-numeric-perl", "Scalar-Util-Numeric", "0.22", "0", "0" -"libschedule-at-perl", "Schedule-At", "1.11", "0", "1" -"libschedule-ratelimiter-perl", "Schedule-RateLimiter", "0.01", "0", "0" -"libscope-guard-perl", "Scope-Guard", "0.20", "0", "0" -"libscope-upper-perl", "Scope-Upper", "0.13", "0", "0" -"libscriptalicious-perl", "Scriptalicious", "1.16", "0", "1" -"libsearch-gin-perl", "Search-GIN", "0.08", "0", "0" -"libsearch-xapian-perl", "http://oligarchy.co.uk/xapian/1.2.5/Search-Xapian-1.2.5.0.tar.gz", "1.2.5.0", "0", "0" -"libset-infinite-perl", "Set-Infinite", "0.63", "0", "0" -"libset-intspan-perl", "Set-IntSpan", "1.16", "1", "0" -"libset-nestedgroups-perl", "Set-NestedGroups", "0.01", "0", "0" -"libset-object-perl", "Set-Object", "1.27", "0", "0" -"libset-scalar-perl", "Set-Scalar", "1.25", "0", "0" -"libset-tiny-perl", "Set-Tiny", "not-uploaded", "0", "0" -"libsgml-parser-opensp-perl", "SGML-Parser-OpenSP", "0.994", "0", "2" -"libsgmls-perl", "SGMLSpm", "1.03ii", "1", "0" -"libshell-perl", "Shell", "0.72", "1", "0" -"libshell-perl-perl", "Shell-Perl", "0.0022", "0", "0" -"libshell-posix-select-perl", "Shell-POSIX-Select", "0.05", "0", "0" -"libsignatures-perl", "signatures", "0.05", "0", "0" -"libsmart-comments-perl", "Smart-Comments", "1.0.4", "0", "0" -"libsms-send-perl", "SMS-Send", "0.05", "0", "1" -"libsnmp-extension-passpersist-perl", "SNMP-Extension-PassPersist", "0.05", "0", "0" -"libsnmp-info-perl", "SNMP-Info", "2.04", "0", "0" -"libsoap-lite-perl", "SOAP-Lite", "0.712", "2", "2" -"libsoap-wsdl-perl", "SOAP-WSDL", "2.00.10", "0", "2" -"libsocialtext-resting-perl", "Socialtext-Resting", "0.28", "0", "0" -"libsocialtext-resting-utils-perl", "Socialtext-Resting-Utils", "0.21", "0", "0" -"libsocialtext-wikitest-perl", "Socialtext-WikiTest", "0.07", "0", "0" -"libsocket-getaddrinfo-perl", "Socket-GetAddrInfo", "0.20", "0", "2" -"libsocket-multicast6-perl", "Socket-Multicast6", "0.04", "0", "1" -"libsoftware-license-perl", "Software-License", "0.103001", "0", "0" -"libsort-naturally-perl", "Sort-Naturally", "1.02", "0", "0" -"libsort-versions-perl", "Sort-Versions", "1.5", "0", "0" -"libspiffy-perl", "Spiffy", "0.30", "1", "0" -"libspoon-perl", "Spoon", "0.24", "1", "0" -"libspork-perl", "Spork", "0.20", "1", "0" -"libspreadsheet-parseexcel-perl", "Spreadsheet-ParseExcel", "0.5800", "1", "2" -"libspreadsheet-parseexcel-simple-perl", "Spreadsheet-ParseExcel-Simple", "1.04", "0", "1" -"libspreadsheet-read-perl", "Spreadsheet-Read", "0.41", "0", "1" -"libspreadsheet-writeexcel-perl", "Spreadsheet-WriteExcel", "2.37", "0", "0" -"libspreadsheet-xlsx-perl", "unknown", "0.13", "0", "1" -"libsql-abstract-limit-perl", "SQL-Abstract-Limit", "0.14.1", "1", "0" -"libsql-abstract-perl", "SQL-Abstract", "1.72", "0", "0" -"libsql-reservedwords-perl", "SQL-ReservedWords", "0.7", "0", "0" -"libsql-statement-perl", "SQL-Statement", "1.33", "0", "0" -"libsql-translator-perl", "SQL-Translator", "not-uploaded", "0", "0" -"libstar-parser-perl", "http://pdb.sdsc.edu/STAR/STAR-Parser-0.59.tar.gz", "0.59", "0", "0" -"libstat-lsmode-perl", "http://perl.plover.com/lsMode/Stat-lsMode-0.50.tar.gz", "0.50", "0", "0" -"libstatistics-basic-perl", "Statistics-Basic", "1.6601", "0", "1" -"libstatistics-descriptive-perl", "Statistics-Descriptive", "3.0201", "0", "0" -"libstatistics-online-perl", "Statistics-OnLine", "0.02", "0", "0" -"libstatistics-test-randomwalk-perl", "Statistics-Test-RandomWalk", "0.02", "0", "1" -"libstatistics-test-sequence-perl", "Statistics-Test-Sequence", "0.01", "0", "0" -"libstrictures-perl", "strictures", "1.002002", "0", "0" -"libstring-bufferstack-perl", "String-BufferStack", "1.15", "0", "0" -"libstring-camelcase-perl", "String-CamelCase", "0.02", "0", "0" -"libstring-crc32-perl", "String-CRC32", "1.4", "0", "0" -"libstring-dirify-perl", "String-Dirify", "1.02", "0", "0" -"libstring-errf-perl", "String-Errf", "0.006", "0", "0" -"libstring-escape-perl", "String-Escape", "2010.002", "0", "1" -"libstring-flogger-perl", "String-Flogger", "1.101241", "0", "0" -"libstring-format-perl", "String-Format", "1.16", "0", "0" -"libstring-formatter-perl", "String-Formatter", "0.102082", "0", "0" -"libstring-koremutake-perl", "String-Koremutake", "0.30", "0", "0" -"libstring-mkpasswd-perl", "String-MkPasswd", "0.03", "0", "1" -"libstring-random-perl", "String-Random", "0.22", "0", "0" -"libstring-rewriteprefix-perl", "String-RewritePrefix", "0.006", "0", "0" -"libstring-truncate-perl", "String-Truncate", "1.100600", "0", "0" -"libsub-current-perl", "Sub-Current", "0.02", "0", "0" -"libsub-delete-perl", "Sub-Delete", "1.00002", "0", "0" -"libsub-exporter-formethods-perl", "Sub-Exporter-ForMethods", "0.091970", "0", "0" -"libsub-exporter-globexporter-perl", "Sub-Exporter-GlobExporter", "0.002", "0", "0" -"libsub-exporter-perl", "Sub-Exporter", "0.982", "0", "1" -"libsub-identify-perl", "Sub-Identify", "0.04", "0", "0" -"libsub-install-perl", "Sub-Install", "0.924", "0", "0" -"libsub-name-perl", "Sub-Name", "0.05", "0", "0" -"libsub-override-perl", "Sub-Override", "0.08", "0", "1" -"libsub-prototype-perl", "Sub-Prototype", "0.02", "0", "0" -"libsub-uplevel-perl", "Sub-Uplevel", "0.2200", "0", "1" -"libsub-wrappackages-perl", "Sub-WrapPackages", "2.0", "0", "0" -"libsuper-perl", "SUPER", "1.17", "0", "0" -"libsvg-graph-perl", "SVG-Graph", "0.02", "0", "1" -"libsvg-perl", "SVG", "2.50", "0", "1" -"libsvg-tt-graph-perl", "SVG-TT-Graph", "0.16", "0", "0" -"libsvn-dump-perl", "SVN-Dump", "0.05", "0", "1" -"libsvn-hooks-perl", "SVN-Hooks", "0.90", "0", "0" -"libsvn-look-perl", "SVN-Look", "0.20", "0", "0" -"libsvn-notify-mirror-perl", "SVN-Notify-Mirror", "0.03800", "0", "1" -"libsvn-svnlook-perl", "SVN-SVNLook", "0.04", "0", "0" -"libswish-api-common-perl", "SWISH-API-Common", "0.03", "1", "2" -"libswitch-perl", "Switch", "2.16", "0", "0" -"libsyntax-highlight-engine-kate-perl", "Syntax-Highlight-Engine-Kate", "0.05", "0", "2" -"libsyntax-highlight-engine-simple-languages-perl", "Syntax-Highlight-Engine-Simple-Perl", "1", "0", "2" -"libsyntax-highlight-engine-simple-perl", "Syntax-Highlight-Engine-Simple", "0.08", "0", "1" -"libsyntax-highlight-perl-improved-perl", "Syntax-Highlight-Perl-Improved", "1.01", "0", "1" -"libsyntax-keyword-gather-perl", "Syntax-Keyword-Gather", "1.001000", "0", "1" -"libsyntax-perl", "syntax", "0.003", "0", "0" -"libsys-filesystem-perl", "Sys-Filesystem", "1.28", "0", "0" -"libsys-gamin-perl", "Sys-Gamin", "0.1", "0", "2" -"libsys-hostname-long-perl", "Sys-Hostname-Long", "1.4", "0", "0" -"libsys-sigaction-perl", "Sys-SigAction", "0.11", "0", "0" -"libsys-statistics-linux-perl", "Sys-Statistics-Linux", "0.59", "0", "0" -"libsys-syscall-perl", "Sys-Syscall", "0.23", "0", "0" -"libsys-syslog-perl", "Sys-Syslog", "0.29", "0", "0" -"libsys-utmp-perl", "Sys-Utmp", "1.6", "0", "1" -"libsys-virt-perl", "Sys-Virt", "0.2.6", "0", "0" -"libsysadm-install-perl", "Sysadm-Install", "0.36", "0", "1" -"libtap-harness-archive-perl", "TAP-Harness-Archive", "not-uploaded", "0", "0" -"libtemplate-alloy-perl", "Template-Alloy", "1.016", "0", "1" -"libtemplate-declare-perl", "Template-Declare", "0.45", "0", "0" -"libtemplate-multilingual-perl", "Template-Multilingual", "1.00", "0", "0" -"libtemplate-plugin-calendar-simple-perl", "Template-Plugin-Calendar-Simple", "0.02", "0", "0" -"libtemplate-plugin-class-perl", "Template-Plugin-Class", "0.13", "0", "1" -"libtemplate-plugin-clickable-email-perl", "Template-Plugin-Clickable-Email", "0.01", "0", "0" -"libtemplate-plugin-clickable-perl", "Template-Plugin-Clickable", "0.06", "0", "0" -"libtemplate-plugin-cycle-perl", "Template-Plugin-Cycle", "not-uploaded", "0", "1" -"libtemplate-plugin-javascript-perl", "Template-Plugin-JavaScript", "0.02", "0", "0" -"libtemplate-plugin-number-format-perl", "Template-Plugin-Number-Format", "1.02", "0", "0" -"libtemplate-plugin-textile2-perl", "Template-Plugin-Textile2", "1.21", "0", "0" -"libtemplate-plugin-yaml-perl", "Template-Plugin-YAML", "1.23", "0", "0" -"libtemplate-provider-encoding-perl", "Template-Provider-Encoding", "0.10", "0", "0" -"libtemplate-provider-fromdata-perl", "Template-Provider-FromDATA", "0.10", "0", "0" -"libtemplate-timer-perl", "Template-Timer", "1.00", "1", "0" -"libtemplate-tiny-perl", "Template-Tiny", "0.11", "0", "0" -"libterm-encoding-perl", "Term-Encoding", "0.02", "0", "0" -"libterm-progressbar-perl", "Term-ProgressBar", "2.09", "0", "1" -"libterm-prompt-perl", "Term-Prompt", "1.04", "0", "0" -"libterm-query-perl", "Term-Query", "2.0", "0", "1" -"libterm-readkey-perl", "TermReadKey", "2.30", "0", "2" -"libterm-readline-gnu-perl", "Term-ReadLine-Gnu", "1.20", "2", "3" -"libterm-readline-perl-perl", "Term-ReadLine-Perl", "1.0303", "0", "0" -"libterm-readpassword-perl", "Term-ReadPassword", "0.11", "0", "0" -"libterm-shell-perl", "Term-Shell", "0.02", "1", "0" -"libterm-size-perl", "Term-Size", "0.2", "0", "0" -"libterm-sk-perl", "Term-Sk", "0.07", "0", "1" -"libterm-slang-perl", "Term-Slang", "0.07", "0", "1" -"libterm-twiddle-perl", "Term-Twiddle", "2.71", "0", "0" -"libterm-visual-perl", "Term-Visual", "0.08", "1", "0" -"libterm-vt102-perl", "Term-VT102", "0.91", "0", "1" -"libtest-apocalypse-perl", "Test-Apocalypse", "0.05", "0", "0" -"libtest-assertions-perl", "Test-Assertions", "1.054", "0", "0" -"libtest-autoloader-perl", "Test-AutoLoader", "0.03", "0", "1" -"libtest-base-perl", "Test-Base", "0.59", "0", "0" -"libtest-block-perl", "Test-Block", "0.11", "0", "0" -"libtest-cgi-multipart-perl", "Test-CGI-Multipart", "0.0.3", "0", "0" -"libtest-checkchanges-perl", "Test-CheckChanges", "0.14", "0", "0" -"libtest-checkmanifest-perl", "Test-CheckManifest", "1.24", "0", "2" -"libtest-class-perl", "Test-Class", "0.36", "0", "0" -"libtest-command-perl", "Test-Command", "0.08", "0", "0" -"libtest-compile-perl", "Test-Compile", "0.13", "0", "0" -"libtest-consistentversion-perl", "Test-ConsistentVersion", "0.2.3", "0", "0" -"libtest-corpus-audio-mpd-perl", "Test-Corpus-Audio-MPD", "1.110710", "0", "0" -"libtest-cpan-meta-perl", "Test-CPAN-Meta", "0.17", "0", "1" -"libtest-cpan-meta-yaml-perl", "Test-CPAN-Meta-YAML", "0.17", "0", "1" -"libtest-cukes-perl", "Test-Cukes", "0.10", "0", "0" -"libtest-database-perl", "Test-Database", "1.11", "0", "0" -"libtest-deep-perl", "Test-Deep", "0.108", "1", "0" -"libtest-dependencies-perl", "Test-Dependencies", "0.12", "0", "0" -"libtest-differences-perl", "Test-Differences", "0.50.0", "0", "0" -"libtest-dir-perl", "Test-Dir", "1.013", "0", "0" -"libtest-distmanifest-perl", "Test-DistManifest", "1.009", "0", "0" -"libtest-distribution-perl", "Test-Distribution", "2.00", "0", "0" -"libtest-email-perl", "Test-Email", "0.07", "0", "0" -"libtest-eol-perl", "Test-EOL", "0.9", "0", "0" -"libtest-exception-perl", "Test-Exception", "0.31", "0", "0" -"libtest-exit-perl", "Test-Exit", "0.03", "0", "0" -"libtest-expect-perl", "Test-Expect", "0.31", "1", "0" -"libtest-fatal-perl", "Test-Fatal", "0.005", "0", "0" -"libtest-file-contents-perl", "Test-File-Contents", "0.20", "0", "0" -"libtest-file-perl", "Test-File", "1.29", "0", "0" -"libtest-fixme-perl", "Test-Fixme", "0.04", "0", "0" -"libtest-harness-perl", "Test-Harness", "3.23", "0", "2" -"libtest-hasversion-perl", "Test-HasVersion", "0.012", "0", "1" -"libtest-html-w3c-perl", "Test-HTML-W3C", "0.03", "0", "2" -"libtest-http-server-simple-perl", "Test-HTTP-Server-Simple", "0.10", "0", "0" -"libtest-http-server-simple-stashwarnings-perl", "Test-HTTP-Server-Simple-StashWarnings", "0.04", "0", "0" -"libtest-identity-perl", "Test-Identity", "0.01", "0", "0" -"libtest-image-gd-perl", "Test-Image-GD", "0.03", "0", "0" -"libtest-inter-perl", "Test-Inter", "1.01", "0", "0" -"libtest-json-perl", "Test-JSON", "0.11", "0", "0" -"libtest-kwalitee-perl", "Test-Kwalitee", "1.01", "0", "0" -"libtest-leaktrace-perl", "Test-LeakTrace", "0.13", "0", "1" -"libtest-lectrotest-perl", "Test-LectroTest", "0.3600", "0", "2" -"libtest-log-dispatch-perl", "Test-Log-Dispatch", "0.03", "0", "0" -"libtest-log4perl-perl", "Test-Log4perl", "0.1001", "0", "1" -"libtest-longstring-perl", "Test-LongString", "0.15", "0", "1" -"libtest-manifest-perl", "Test-Manifest", "1.23", "0", "0" -"libtest-memory-cycle-perl", "Test-Memory-Cycle", "1.04", "0", "0" -"libtest-minimumversion-perl", "Test-MinimumVersion", "0.101080", "0", "0" -"libtest-mock-lwp-perl", "Test-Mock-LWP", "0.05", "0", "0" -"libtest-mockclass-perl", "Test-MockClass", "1.04", "0", "1" -"libtest-mockmodule-perl", "Test-MockModule", "0.05", "0", "0" -"libtest-mockobject-perl", "Test-MockObject", "1.09", "0", "1" -"libtest-mockrandom-perl", "Test-MockRandom", "1.00", "0", "0" -"libtest-mocktime-datecalc-perl", "Test-MockTime-DateCalc", "5", "0", "0" -"libtest-mocktime-perl", "Test-MockTime", "0.09", "0", "0" -"libtest-module-used-perl", "Test-Module-Used", "0.2.3", "0", "0" -"libtest-most-perl", "Test-Most", "0.23", "0", "0" -"libtest-needsdisplay-perl", "Test-NeedsDisplay", "1.07", "0", "0" -"libtest-nobreakpoints-perl", "Test-NoBreakpoints", "0.13", "0", "1" -"libtest-notabs-perl", "Test-NoTabs", "1.0", "0", "0" -"libtest-nowarnings-perl", "Test-NoWarnings", "1.02", "0", "0" -"libtest-number-delta-perl", "Test-Number-Delta", "1.03", "0", "0" -"libtest-object-perl", "Test-Object", "0.07", "0", "0" -"libtest-output-perl", "Test-Output", "1.01", "0", "1" -"libtest-perl-critic-perl", "Test-Perl-Critic", "1.02", "0", "0" -"libtest-pod-content-perl", "Test-Pod-Content", "0.0.5", "0", "0" -"libtest-pod-coverage-perl", "Test-Pod-Coverage", "1.08", "0", "0" -"libtest-pod-no404s-perl", "Test-Pod-No404s", "0.01", "0", "0" -"libtest-pod-perl", "Test-Pod", "1.44", "0", "0" -"libtest-poe-client-tcp-perl", "Test-POE-Client-TCP", "1.06", "0", "0" -"libtest-poe-server-tcp-perl", "Test-POE-Server-TCP", "1.14", "0", "0" -"libtest-portability-files-perl", "Test-Portability-Files", "0.05", "0", "1" -"libtest-prereq-perl", "Test-Prereq", "1.037", "0", "1" -"libtest-refcount-perl", "Test-Refcount", "0.07", "0", "0" -"libtest-regression-perl", "Test-Regression", "0.05", "0", "0" -"libtest-reporter-perl", "Test-Reporter", "1.57", "0", "0" -"libtest-requires-perl", "Test-Requires", "0.05", "0", "0" -"libtest-script-perl", "Test-Script", "1.07", "0", "0" -"libtest-script-run-perl", "Test-Script-Run", "0.05", "0", "0" -"libtest-sharedfork-perl", "Test-SharedFork", "0.15", "0", "0" -"libtest-signature-perl", "Test-Signature", "1.10", "0", "0" -"libtest-simple-perl", "Test-Simple", "0.98", "0", "0" -"libtest-simpleunit-perl", "unknown", "1.21", "0", "0" -"libtest-spelling-perl", "Test-Spelling", "0.13", "0", "0" -"libtest-strict-perl", "Test-Strict", "0.14", "1", "0" -"libtest-subcalls-perl", "Test-SubCalls", "1.09", "0", "0" -"libtest-synopsis-perl", "Test-Synopsis", "0.06", "0", "0" -"libtest-taint-perl", "Test-Taint", "1.04", "0", "0" -"libtest-tcp-perl", "Test-TCP", "1.12", "0", "0" -"libtest-tempdir-perl", "Test-TempDir", "0.05", "0", "0" -"libtest-tester-perl", "Test-Tester", "0.107", "1", "0" -"libtest-trap-perl", "Test-Trap", "0.2.1", "0", "0" -"libtest-unit-perl", "Test-Unit", "0.25", "0", "1" -"libtest-use-ok-perl", "Test-use-ok", "0.02", "0", "0" -"libtest-useallmodules-perl", "Test-UseAllModules", "0.12", "0", "0" -"libtest-valgrind-perl", "Test-Valgrind", "1.12", "0", "0" -"libtest-warn-perl", "Test-Warn", "0.22", "0", "1" -"libtest-weaken-perl", "Test-Weaken", "3.004000", "0", "0" -"libtest-without-module-perl", "Test-Without-Module", "0.17", "0", "0" -"libtest-www-declare-perl", "Test-WWW-Declare", "0.02", "0", "0" -"libtest-www-mechanize-catalyst-perl", "Test-WWW-Mechanize-Catalyst", "0.53", "0", "0" -"libtest-www-mechanize-cgiapp-perl", "Test-WWW-Mechanize-CGIApp", "0.05", "0", "0" -"libtest-www-mechanize-mojo-perl", "Test-WWW-Mechanize-Mojo", "0.0.8", "0", "0" -"libtest-www-mechanize-perl", "Test-WWW-Mechanize", "1.30", "1", "0" -"libtest-www-selenium-perl", "Test-WWW-Selenium", "1.25", "0", "0" -"libtest-xml-simple-perl", "Test-XML-Simple", "1.00", "0", "2" -"libtest-yaml-meta-perl", "Test-YAML-Meta", "0.19", "0", "1" -"libtest-yaml-valid-perl", "Test-YAML-Valid", "0.04", "0", "0" -"libtex-encode-perl", "TeX-Encode", "1.1", "0", "0" -"libtext-affixes-perl", "Text-Affixes", "0.07", "0", "0" -"libtext-asciitable-perl", "Text-ASCIITable", "0.18", "1", "0" -"libtext-autoformat-perl", "Text-Autoformat", "1.669002", "0", "0" -"libtext-bidi-perl", "Text-Bidi", "0.03", "0", "1" -"libtext-context-eitherside-perl", "Text-Context-EitherSide", "1.4", "0", "0" -"libtext-context-perl", "Text-Context", "3.7", "0", "0" -"libtext-csv-encoded-perl", "Text-CSV-Encoded", "0.10", "0", "0" -"libtext-csv-perl", "Text-CSV", "1.21", "0", "0" -"libtext-csv-xs-perl", "Text-CSV_XS", "0.81", "0", "0" -"libtext-dhcpleases-perl", "Text-DHCPLeases", "0.9", "0", "0" -"libtext-diff-perl", "Text-Diff", "1.41", "0", "0" -"libtext-findindent-perl", "Text-FindIndent", "0.10", "0", "0" -"libtext-flow-perl", "Text-Flow", "0.01", "0", "1" -"libtext-format-perl", "Text-Format", "0.53", "0", "0" -"libtext-formattable-perl", "Text-FormatTable", "1.03", "0", "0" -"libtext-glob-perl", "Text-Glob", "0.09", "0", "0" -"libtext-greeking-perl", "Text-Greeking", "0.12", "0", "1" -"libtext-levenshtein-perl", "Text-Levenshtein", "0.06~01", "0", "1" -"libtext-levenshteinxs-perl", "Text-LevenshteinXS", "0.03", "0", "0" -"libtext-lorem-perl", "Text-Lorem", "0.3", "0", "0" -"libtext-markdown-perl", "Text-Markdown", "1.0.26", "0", "1" -"libtext-mediawikiformat-perl", "Text-MediawikiFormat", "1.0", "0", "0" -"libtext-micromason-perl", "Text-MicroMason", "2.13", "0", "0" -"libtext-microtemplate-perl", "Text-MicroTemplate", "0.18", "0", "0" -"libtext-multimarkdown-perl", "Text-MultiMarkdown", "1.0.30", "1", "1" -"libtext-password-pronounceable-perl", "Text-Password-Pronounceable", "0.30", "0", "0" -"libtext-patch-perl", "Text-Patch", "1.8", "0", "0" -"libtext-pdf-perl", "Text-PDF", "0.29a", "0", "1" -"libtext-qrcode-perl", "Text-QRCode", "0.01", "0", "1" -"libtext-quoted-perl", "Text-Quoted", "2.06", "0", "0" -"libtext-recordparser-perl", "Text-RecordParser", "1.5.0", "0", "0" -"libtext-reflow-perl", "Text-Reflow", "1.09", "0", "2" -"libtext-reform-perl", "Text-Reform", "1.20", "0", "0" -"libtext-roman-perl", "Text-Roman", "3.3", "0", "0" -"libtext-simpletable-perl", "Text-SimpleTable", "1.2", "0", "0" -"libtext-tabulardisplay-perl", "Text-TabularDisplay", "1.22", "0", "0" -"libtext-template-perl", "Text-Template", "1.45", "0", "2" -"libtext-textile-perl", "Text-Textile", "2.12", "0", "0" -"libtext-trim-perl", "Text-Trim", "1.02", "0", "0" -"libtext-typography-perl", "Text-Typography", "0.01", "0", "1" -"libtext-wrapper-perl", "Text-Wrapper", "1.02", "0", "0" -"libthread-pool-simple-perl", "Thread-Pool-Simple", "0.25", "0", "0" -"libthread-queue-any-perl", "Thread-Queue-Any", "0.09", "0", "0" -"libthread-queue-perl", "Thread-Queue", "2.12", "0", "0" -"libthread-serialize-perl", "Thread-Serialize", "0.11", "0", "0" -"libthrowable-perl", "Throwable", "0.102080", "0", "0" -"libticket-simple-perl", "http://release.cipux.org//Ticket-Simple-0.0.2.tar.gz", "0.0.2", "0", "0" -"libtie-array-sorted-perl", "Tie-Array-Sorted", "1.41", "0", "0" -"libtie-cphash-perl", "Tie-CPHash", "1.04", "0", "0" -"libtie-dbi-perl", "Tie-DBI", "1.04", "0", "2" -"libtie-encryptedhash-perl", "Tie-EncryptedHash", "1.24", "0", "0" -"libtie-hash-regex-perl", "Tie-Hash-Regex", "1.02", "0", "0" -"libtie-ical-perl", "Tie-iCal", "0.13", "1", "1" -"libtie-persistent-perl", "Tie-Persistent", "1.00", "0", "0" -"libtie-refhash-weak-perl", "Tie-RefHash-Weak", "0.09", "0", "0" -"libtie-regexphash-perl", "Tie-RegexpHash", "0.15", "0", "0" -"libtie-toobject-perl", "Tie-ToObject", "0.03", "0", "0" -"libtime-clock-perl", "Time-Clock", "1.01", "0", "0" -"libtime-duration-parse-perl", "Time-Duration-Parse", "0.06", "0", "1" -"libtime-duration-perl", "Time-Duration", "1.06", "0", "0" -"libtime-fake-perl", "Time-Fake", "0.11", "0", "0" -"libtime-human-perl", "Time-Human", "1.03", "0", "0" -"libtime-local-perl", "Time-Local", "1.2000", "0", "0" -"libtime-modules-perl", "Time-modules", "2006.0814", "1", "1" -"libtime-piece-mysql-perl", "Time-Piece-MySQL", "0.06", "0", "0" -"libtime-piece-perl", "Time-Piece", "1.20", "1", "2" -"libtime-progress-perl", "Time-Progress", "1.7", "0", "0" -"libtime-stopwatch-perl", "Time-Stopwatch", "1.00", "0", "0" -"libtime-warp-perl", "Time-Warp", "0.5", "0", "0" -"libtime-y2038-perl", "Time-y2038", "20100403", "0", "0" -"libtimedate-perl", "TimeDate", "1.2000", "7", "3" -"libtitanium-perl", "Titanium", "1.04", "0", "0" -"libtk-dirselect-perl", "Tk-DirSelect", "1.12", "0", "0" -"libtk-filedialog-perl", "Tk-FileDialog", "1.3", "0", "2" -"libtk-gbarr-perl", "Tk-GBARR", "2.08", "0", "2" -"libtk-histentry-perl", "Tk-HistEntry", "0.43", "0", "0" -"libtk-objscanner-perl", "Tk-ObjScanner", "2.012", "0", "1" -"libtk-pod-perl", "Tk-Pod", "0.9939", "0", "1" -"libtk-splashscreen-perl", "Tk-Splashscreen", "1.0", "0", "0" -"libtokyocabinet-perl", "http://1978th.net/tokyocabinet/perlpkg/tokyocabinet-perl-1.34.tar.gz", "1.34", "0", "0" -"libtoolkit-perl", "Toolkit", "0.0.2", "0", "0" -"libtree-dagnode-perl", "Tree-DAG_Node", "1.06", "0", "0" -"libtree-redblack-perl", "Tree-RedBlack", "0.5", "0", "0" -"libtree-simple-perl", "Tree-Simple", "1.18", "0", "0" -"libtree-simple-visitorfactory-perl", "Tree-Simple-VisitorFactory", "0.10", "0", "1" -"libtrue-perl", "true", "0.18", "0", "0" -"libtry-tiny-perl", "Try-Tiny", "0.09", "0", "0" -"libunicode-collate-perl", "unknown", "0.66", "0", "0" -"libunicode-japanese-perl", "Unicode-Japanese", "0.47", "1", "0" -"libunicode-map-perl", "Unicode-Map", "0.112", "1", "2" -"libunicode-map8-perl", "Unicode-Map8", "0.13", "0", "3" -"libunicode-maputf8-perl", "Unicode-MapUTF8", "1.11", "0", "0" -"libunicode-string-perl", "Unicode-String", "2.09", "0", "0" -"libuniversal-can-perl", "UNIVERSAL-can", "1.16", "0", "0" -"libuniversal-exports-perl", "unknown", "0.05", "0", "0" -"libuniversal-isa-perl", "UNIVERSAL-isa", "1.02", "0", "0" -"libuniversal-moniker-perl", "UNIVERSAL-moniker", "0.08", "0", "0" -"libuniversal-require-perl", "UNIVERSAL-require", "0.13", "0", "0" -"libunix-syslog-perl", "Unix-Syslog", "1.1", "0", "0" -"liburi-perl", "URI", "1.58", "1", "0" -"liburi-query-perl", "URI-Query", "0.08", "0", "1" -"liburi-todisk-perl", "URI-ToDisk", "1.12", "0", "0" -"libuser-identity-perl", "User-Identity", "0.93", "0", "0" -"libuser-simple-perl", "User-Simple", "1.43", "1", "0" -"libutf8-all-perl", "utf8-all", "0.002", "0", "0" -"libuuid-perl", "UUID", "0.02", "0", "0" -"libuuid-tiny-perl", "UUID-Tiny", "1.0300", "0", "0" -"libv-perl", "V", "0.13", "0", "0" -"libvalidate-net-perl", "Validate-Net", "0.6", "0", "0" -"libvariable-magic-perl", "Variable-Magic", "0.46", "0", "0" -"libvendorlib-perl", "vendorlib", "0.10", "0", "0" -"libverilog-perl", "Verilog-Perl", "3.306", "2", "0" -"libversion-next-perl", "Version-Next", "0.002", "0", "0" -"libversion-perl", "version", "0.8800", "0", "0" -"libversion-requirements-perl", "Version-Requirements", "0.101020", "0", "0" -"libvi-quickfix-perl", "Vi-QuickFix", "1.134", "0", "0" -"libvideo-capture-v4l-perl", "Video-Capture-V4l", "0.902", "1", "4" -"libvideo-fourcc-info-perl", "Video-FourCC-Info", "1.005", "0", "0" -"libvideo-info-perl", "Video-Info", "0.993", "0", "6" -"libvitacilina-perl", "Vitacilina", "0.2", "0", "0" -"libwant-perl", "Want", "0.18", "0", "0" -"libwarnings-illegalproto-perl", "warnings-illegalproto", "0.001000", "0", "0" -"libweather-google-perl", "Weather-Google", "0.05", "0", "1" -"libweb-scraper-perl", "Web-Scraper", "0.34", "0", "0" -"libweb-simple-perl", "Web-Simple", "0.002", "0", "1" -"libwebservice-cia-perl", "WebService-CIA", "1.4", "0", "0" -"libwebservice-solr-perl", "WebService-Solr", "0.12", "0", "0" -"libwebservice-validator-css-w3c-perl", "WebService-Validator-CSS-W3C", "0.2", "0", "0" -"libwebservice-validator-html-w3c-perl", "WebService-Validator-HTML-W3C", "0.24", "0", "0" -"libwebservice-youtube-perl", "WebService-YouTube", "1.0.3", "0", "2" -"libwordnet-querydata-perl", "WordNet-QueryData", "1.48", "0", "0" -"libwww-bugzilla-perl", "WWW-Bugzilla", "1.5", "0", "1" -"libwww-cnic-perl", "WWW-CNic", "0.38", "0", "2" -"libwww-curl-perl", "WWW-Curl", "4.15", "0", "0" -"libwww-facebook-api-perl", "WWW-Facebook-API", "0.4.18", "2", "3" -"libwww-freshmeat-perl", "WWW-Freshmeat", "0.21", "0", "1" -"libwww-google-auth-clientlogin-perl", "WWW-Google-Auth-ClientLogin", "0.04", "0", "0" -"libwww-google-calculator-perl", "WWW-Google-Calculator", "0.07", "0", "0" -"libwww-mechanize-autopager-perl", "WWW-Mechanize-AutoPager", "0.02", "0", "0" -"libwww-mechanize-decodedcontent-perl", "WWW-Mechanize-DecodedContent", "0.02", "1", "0" -"libwww-mechanize-formfiller-perl", "WWW-Mechanize-FormFiller", "0.10", "0", "1" -"libwww-mechanize-gzip-perl", "WWW-Mechanize-GZip", "0.12", "0", "0" -"libwww-mechanize-perl", "WWW-Mechanize", "1.68", "0", "1" -"libwww-mechanize-shell-perl", "WWW-Mechanize-Shell", "0.52", "0", "0" -"libwww-mechanize-treebuilder-perl", "WWW-Mechanize-TreeBuilder", "1.10003", "0", "2" -"libwww-nicovideo-download-perl", "WWW-NicoVideo-Download", "0.06", "0", "0" -"libwww-perl", "libwww-perl", "6.01", "13", "0" -"libwww-robotrules-perl", "WWW-RobotRules", "6.01", "0", "0" -"libwww-search-perl", "WWW-Search", "2.50.70.debian.2", "0", "0" -"libwww-topica-perl", "WWW-Topica", "0.6", "0", "0" -"libwww-wikipedia-perl", "WWW-Wikipedia", "2.00", "0", "0" -"libwww-youtube-download-perl", "WWW-YouTube-Download", "0.26", "0", "0" -"libwwwbrowser-perl", "http://user.cs.tu-berlin.de/~eserte/src/perl/WWWBrowser/WWWBrowser-2.23.tar.gz", "2.23", "0", "2" -"libwx-perl", "Wx", "0.98", "0", "2" -"libwx-perl-datawalker-perl", "Wx-Perl-DataWalker", "0.02", "0", "0" -"libwx-perl-processstream-perl", "Wx-Perl-ProcessStream", "0.29", "0", "1" -"libx11-freedesktop-desktopentry-perl", "X11-FreeDesktop-DesktopEntry", "0.04", "0", "1" -"libx11-xcb-perl", "X11-XCB", "not-uploaded", "0", "0" -"libx500-dn-perl", "X500-DN", "0.29", "0", "1" -"libxml-atom-perl", "XML-Atom", "0.37", "1", "0" -"libxml-atom-service-perl", "XML-Atom-Service", "0.16.1", "0", "0" -"libxml-atom-simplefeed-perl", "XML-Atom-SimpleFeed", "0.86", "0", "0" -"libxml-autowriter-perl", "XML-AutoWriter", "0.40", "1", "1" -"libxml-bare-perl", "XML-Bare", "0.45", "0", "0" -"libxml-checker-perl", "XML-Checker", "0.13", "0", "0" -"libxml-csv-perl", "XML-CSV", "0.15", "0", "0" -"libxml-dom-perl", "XML-DOM", "1.44", "1", "2" -"libxml-dom-xpath-perl", "XML-DOM-XPath", "0.14", "0", "0" -"libxml-dtdparser-perl", "XML-DTDParser", "2.01", "0", "0" -"libxml-easyobj-perl", "XML-EasyOBJ", "1.12", "0", "1" -"libxml-encoding-perl", "XML-Encoding", "2.07", "0", "1" -"libxml-feed-perl", "XML-Feed", "0.43", "1", "2" -"libxml-feedpp-mediarss-perl", "XML-FeedPP-MediaRSS", "0.02", "0", "0" -"libxml-feedpp-perl", "XML-FeedPP", "0.43", "0", "0" -"libxml-filter-buffertext-perl", "XML-Filter-BufferText", "1.01", "0", "0" -"libxml-filter-detectws-perl", "XML-Filter-DetectWS", "0.01", "0", "0" -"libxml-filter-reindent-perl", "XML-Filter-Reindent", "0.03", "0", "1" -"libxml-filter-saxt-perl", "XML-Filter-SAXT", "0.01", "0", "0" -"libxml-filter-sort-perl", "XML-Filter-Sort", "1.01", "1", "0" -"libxml-filter-xslt-perl", "XML-Filter-XSLT", "0.03", "0", "0" -"libxml-generator-perl", "XML-Generator", "1.01", "0", "1" -"libxml-grove-perl", "XML-Grove", "0.46alpha", "0", "3" -"libxml-handler-composer-perl", "XML-Handler-Composer", "0.01", "0", "0" -"libxml-handler-printevents-perl", "XML-Handler-PrintEvents", "0.01", "0", "0" -"libxml-handler-trees-perl", "XML-Handler-Trees", "0.02", "0", "0" -"libxml-handler-yawriter-perl", "XML-Handler-YAWriter", "0.23", "0", "1" -"libxml-libxml-iterator-perl", "XML-LibXML-Iterator", "1.04", "0", "0" -"libxml-libxml-perl", "XML-LibXML", "1.70.ds", "7", "2" -"libxml-libxml-simple-perl", "XML-LibXML-Simple", "0.14", "0", "0" -"libxml-libxslt-perl", "XML-LibXSLT", "1.70", "3", "1" -"libxml-mini-perl", "XML-Mini", "1.38", "0", "4" -"libxml-namespacesupport-perl", "XML-NamespaceSupport", "1.09", "0", "0" -"libxml-node-perl", "XML-Node", "0.11", "0", "0" -"libxml-nodefilter-perl", "XML-NodeFilter", "0.01", "0", "0" -"libxml-opml-perl", "XML-OPML", "0.26", "0", "0" -"libxml-opml-simplegen-perl", "XML-OPML-SimpleGen", "0.04", "0", "0" -"libxml-parser-lite-tree-perl", "XML-Parser-Lite-Tree", "0.12", "0", "1" -"libxml-parser-perl", "XML-Parser", "2.40", "3", "3" -"libxml-perl", "libxml-perl", "0.08", "0", "3" -"libxml-quote-perl", "XML-Quote", "1.02", "0", "0" -"libxml-regexp-perl", "XML-RegExp", "0.03", "0", "0" -"libxml-rss-libxml-perl", "XML-RSS-LibXML", "0.3100", "0", "1" -"libxml-rss-perl", "XML-RSS", "1.49", "0", "0" -"libxml-rss-simplegen-perl", "XML-RSS-SimpleGen", "11.11", "0", "1" -"libxml-rsslite-perl", "XML-RSSLite", "0.15", "1", "1" -"libxml-sax-expat-incremental-perl", "XML-SAX-Expat-Incremental", "0.05", "1", "0" -"libxml-sax-expat-perl", "XML-SAX-Expat", "0.40", "1", "0" -"libxml-sax-expatxs-perl", "XML-SAX-ExpatXS", "1.32", "0", "2" -"libxml-sax-machines-perl", "XML-SAX-Machines", "0.42", "0", "2" -"libxml-sax-perl", "XML-SAX", "0.96", "0", "4" -"libxml-sax-writer-perl", "XML-SAX-Writer", "0.53", "1", "4" -"libxml-simple-perl", "XML-Simple", "2.18", "0", "1" -"libxml-simpleobject-perl", "XML-SimpleObject", "0.53", "0", "1" -"libxml-smart-perl", "XML-Smart", "1.6.9", "0", "1" -"libxml-stream-perl", "XML-Stream", "1.23", "0", "2" -"libxml-tidy-perl", "XML-Tidy", "1.12.B55J2qn", "0", "1" -"libxml-treebuilder-perl", "XML-TreeBuilder", "4.0", "0", "1" -"libxml-um-perl", "XML-UM", "0.01", "0", "1" -"libxml-validator-schema-perl", "XML-Validator-Schema", "1.10", "0", "2" -"libxml-writer-perl", "XML-Writer", "0.612", "0", "0" -"libxml-writer-simple-perl", "XML-Writer-Simple", "0.07", "0", "0" -"libxml-xpath-perl", "XML-XPath", "1.13", "4", "4" -"libxml-xpathengine-perl", "XML-XPathEngine", "0.12", "0", "1" -"libxml-xql-perl", "XML-XQL", "0.68", "0", "2" -"libxml-xslt-perl", "XML-XSLT", "0.48", "0", "2" -"libyaml-appconfig-perl", "YAML-AppConfig", "0.16", "0", "2" -"libyaml-libyaml-perl", "YAML-LibYAML", "0.35", "0", "0" -"libyaml-perl", "YAML", "0.72", "2", "1" -"libyaml-syck-perl", "YAML-Syck", "1.17", "1", "0" -"libzeromq-perl", "ZeroMQ", "not-uploaded", "0", "0" -"nama", "Audio-Nama", "1.073", "0", "1" -"perlbrew", "App-perlbrew", "0.21", "0", "0" -"perlconsole", "perlconsole", "0.4", "1", "1" -"perlindex", "perlindex", "1.605", "1", "2" -"perlipq", "perlipq", "1.25", "0", "3" -"pmtools", "pmtools", "1.10", "0", "0" -"pperl", "PPerl", "0.25", "3", "7" -"starman", "Starman", "0.2010", "0", "0" -"twiggy", "Twiggy", "0.1010", "0", "0" -"w3c-linkchecker", "W3C-LinkChecker", "4.8", "2", "2" -"xacobeo", "Xacobeo", "0.13", "0", "1" -"ylastic-costagent", "App-Ylastic-CostAgent", "not-uploaded", "0", "0" diff --git a/LICENSE b/LICENSE index 063135e..d100b80 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -This software is copyright (c) 2012 by Kent Fredric . +This software is copyright (c) 2013 by Kent Fredric . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. @@ -12,7 +12,7 @@ b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- -This software is Copyright (c) 2012 by Kent Fredric . +This software is Copyright (c) 2013 by Kent Fredric . This is free software, licensed under: @@ -272,7 +272,7 @@ That's all there is to it! --- The Artistic License 1.0 --- -This software is Copyright (c) 2012 by Kent Fredric . +This software is Copyright (c) 2013 by Kent Fredric . This is free software, licensed under: diff --git a/META.json b/META.json index 686c78d..226c7b4 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Kent Fredric " ], "dynamic_config" : 0, - "generated_by" : "Dist::Zilla version 4.300021, CPAN::Meta::Converter version 2.120921", + "generated_by" : "Dist::Zilla version 4.300035, CPAN::Meta::Converter version 2.131560", "license" : [ "perl_5" ], @@ -16,12 +16,12 @@ "prereqs" : { "build" : { "requires" : { - "Module::Build" : "0.4002" + "Module::Build" : "0.4005" } }, "configure" : { "requires" : { - "Module::Build" : "0.4002" + "Module::Build" : "0.4005" } }, "develop" : { @@ -29,17 +29,23 @@ "Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "v1.3.0" }, "requires" : { - "Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "0" + "Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "0", + "Pod::Coverage::TrustPod" : "0", + "Test::CPAN::Changes" : "0.19", + "Test::CPAN::Meta" : "0", + "Test::Pod" : "1.41", + "Test::Pod::Coverage" : "1.08", + "version" : "0.9901" }, "suggests" : { - "Dist::Zilla::PluginBundle::Author::KENTNL" : "v1.5.0" + "Dist::Zilla::PluginBundle::Author::KENTNL" : "v1.7.4" } }, "runtime" : { "requires" : { "Carp" : "1.22", "IO::File" : "0", - "Package::Stash" : "0", + "Package::Stash" : "0.15", "Scalar::Util" : "0", "Symbol" : "0", "Term::ANSIColor" : "0", @@ -58,26 +64,30 @@ "File::Temp" : "0", "IO::Handle" : "0", "Test::Fatal" : "0", - "Test::More" : "0.98" + "Test::More" : "0.98", + "lib" : "0" } } }, "provides" : { "Data::Handle" : { "file" : "lib/Data/Handle.pm", - "version" : "0.02001002" + "version" : "0.02001003" }, "Data::Handle::Exception" : { "file" : "lib/Data/Handle/Exception.pm", - "version" : "0.02001002" + "version" : "0.02001003" }, "Data::Handle::IO" : { "file" : "lib/Data/Handle/IO.pm", - "version" : "0.02001002" + "version" : "0.02001003" } }, "release_status" : "stable", "resources" : { + "bugtracker" : { + "web" : "https://github.com/kentfredric/Data-Handle/issues" + }, "homepage" : "https://github.com/kentfredric/Data-Handle", "repository" : { "type" : "git", @@ -85,59 +95,69 @@ "web" : "https://github.com/kentfredric/Data-Handle" } }, - "version" : "0.02001002", + "version" : "0.02001003", "x_BuiltWith" : { "modules" : { - "Carp" : "1.26", - "Data::Dumper" : "2.135_06", - "Dist::Zilla::PluginBundle::Author::KENTNL" : "1.5.0", + "Carp" : "1.29", + "Data::Dumper" : "2.145", + "Dist::Zilla::PluginBundle::Author::KENTNL" : "1.7.4", "Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "NA(possibly not installed)", - "File::Find" : "1.20", - "File::Temp" : "0.22", + "File::Find" : "1.23", + "File::Temp" : "0.2301", "IO::File" : "1.16", - "IO::Handle" : "1.33", - "Module::Build" : "0.4002", - "Package::Stash" : "0.33", - "Scalar::Util" : "1.25", + "IO::Handle" : "1.34", + "Module::Build" : "0.4005", + "Package::Stash" : "0.34", + "Pod::Coverage::TrustPod" : "0.100002", + "Scalar::Util" : "1.27", "Symbol" : "1.07", - "Term::ANSIColor" : "3.02", + "Term::ANSIColor" : "4.02", + "Test::CPAN::Changes" : "0.20", + "Test::CPAN::Meta" : "0.23", "Test::Fatal" : "0.010", "Test::More" : "0.98", - "Try::Tiny" : "0.11", - "overload" : "1.18", + "Test::Pod" : "1.48", + "Test::Pod::Coverage" : "1.08", + "Try::Tiny" : "0.15", + "lib" : "0.63", + "overload" : "1.22", "parent" : "0.225", "perl" : "NA(skipped: perl)", "strict" : "1.07", - "warnings" : "1.13" + "version" : "0.9902", + "warnings" : "1.18" }, "perl" : { - "original" : "v5.16.0", + "original" : "v5.18.0", "qv" : 1, "version" : [ 5, - 16, + 18, 0 ] }, "perl-config" : { - "gccversion" : "4.6.3", + "gccversion" : "4.7.2", "myarchname" : "x86_64-linux", "osname" : "linux" }, "platform" : "linux", - "uname" : "Linux 3.5.0-gentoo x86_64 GenuineIntel GNU/Linux" + "uname" : "Linux 3.10.0-gentoo x86_64 GenuineIntel GNU/Linux" }, "x_Dist_Zilla" : { + "perl" : { + "version" : "5.018000" + }, "plugins" : [ { "class" : "Dist::Zilla::Plugin::Git::NextVersion", "name" : "@Author::KENTNL/Git::NextVersion", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "@Author::KENTNL/MetaConfig", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::GithubMeta", @@ -147,7 +167,7 @@ { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", "name" : "@Author::KENTNL/MetaProvides::Package", - "version" : "1.14000001" + "version" : "1.14000002" }, { "class" : "Dist::Zilla::Plugin::MetaData::BuiltWith", @@ -174,47 +194,47 @@ { "class" : "Dist::Zilla::Plugin::Git::GatherDir", "name" : "@Author::KENTNL/Git::GatherDir", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Author::KENTNL/License", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "@Author::KENTNL/MetaJSON", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Author::KENTNL/MetaYAML", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Author::KENTNL/Manifest", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "@Author::KENTNL/MetaTests", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::PodCoverageTests", "name" : "@Author::KENTNL/PodCoverageTests", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "@Author::KENTNL/PodSyntaxTests", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::ReportVersions::Tiny", "name" : "@Author::KENTNL/ReportVersions::Tiny", - "version" : "1.05" + "version" : "1.08" }, { "class" : "Dist::Zilla::Plugin::Test::Kwalitee", @@ -229,12 +249,12 @@ { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "name" : "@Author::KENTNL/Test::MinimumVersion", - "version" : "2.000002" + "version" : "2.000005" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", "name" : "@Author::KENTNL/Test::Compile", - "version" : "1.112820" + "version" : "2.002" }, { "class" : "Dist::Zilla::Plugin::Test::Perl::Critic", @@ -244,17 +264,17 @@ { "class" : "Dist::Zilla::Plugin::PruneCruft", "name" : "@Author::KENTNL/PruneCruft", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::ManifestSkip", "name" : "@Author::KENTNL/ManifestSkip", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::PkgVersion", "name" : "@Author::KENTNL/PkgVersion", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::PodWeaver", @@ -264,12 +284,12 @@ { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "@Author::KENTNL/NextRelease", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::AutoPrereqs", "name" : "@Author::KENTNL/AutoPrereqs", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -280,7 +300,7 @@ } }, "name" : "@Author::KENTNL/Prereqs/BundleDevelNeeds", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -291,7 +311,7 @@ } }, "name" : "@Author::KENTNL/Prereqs/BundleDevelRecommends", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Prereqs", @@ -302,12 +322,12 @@ } }, "name" : "@Author::KENTNL/Prereqs/BundleDevelSuggests", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl", "name" : "@Author::KENTNL/Author::KENTNL::MinimumPerl", - "version" : "1.5.0" + "version" : "1.7.4" }, { "class" : "Dist::Zilla::Plugin::Author::KENTNL::Prereqs::Latest::Selective", @@ -317,102 +337,107 @@ { "class" : "Dist::Zilla::Plugin::Authority", "name" : "@Author::KENTNL/Authority", - "version" : "1.006" + "version" : "1.007" }, { "class" : "Dist::Zilla::Plugin::ModuleBuild", "name" : "@Author::KENTNL/ModuleBuild", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::ReadmeFromPod", "name" : "@Author::KENTNL/ReadmeFromPod", - "version" : "0.16" + "version" : "0.18" + }, + { + "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", + "name" : "@Author::KENTNL/ReadmeAnyFromPod", + "version" : "0.131500" }, { "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", "name" : "@Author::KENTNL/Test::CPAN::Changes", - "version" : "0.005" + "version" : "0.008" }, { "class" : "Dist::Zilla::Plugin::CheckExtraTests", "name" : "@Author::KENTNL/CheckExtraTests", - "version" : "0.007" + "version" : "0.011" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::KENTNL/TestRelease", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Author::KENTNL/ConfirmRelease", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Git::Check", "name" : "@Author::KENTNL/Git::Check", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "name" : "@Author::KENTNL/Git::Tag/tag_master", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "name" : "@Author::KENTNL/Git::Commit", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::Git::CommitBuild", "name" : "@Author::KENTNL/Git::CommitBuild", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "name" : "@Author::KENTNL/Git::Tag/tag_release", - "version" : "1.121820" + "version" : "2.014" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Author::KENTNL/UploadToCPAN", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::Twitter", "name" : "@Author::KENTNL/Twitter", - "version" : "0.017" + "version" : "0.021" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", - "version" : "4.300021" + "version" : "4.300035" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", - "version" : "4.300021" + "version" : "4.300035" } ], "zilla" : { @@ -420,7 +445,7 @@ "config" : { "is_trial" : "0" }, - "version" : "4.300021" + "version" : "4.300035" } }, "x_authority" : "cpan:KENTNL" diff --git a/META.yml b/META.yml index 08bd473..0b606ab 100644 --- a/META.yml +++ b/META.yml @@ -7,13 +7,14 @@ build_requires: File::Find: 0 File::Temp: 0 IO::Handle: 0 - Module::Build: 0.4002 + Module::Build: 0.4005 Test::Fatal: 0 Test::More: 0.98 + lib: 0 configure_requires: - Module::Build: 0.4002 + Module::Build: 0.4005 dynamic_config: 0 -generated_by: 'Dist::Zilla version 4.300021, CPAN::Meta::Converter version 2.120921' +generated_by: 'Dist::Zilla version 4.300035, CPAN::Meta::Converter version 2.131560' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -22,17 +23,17 @@ name: Data-Handle provides: Data::Handle: file: lib/Data/Handle.pm - version: 0.02001002 + version: 0.02001003 Data::Handle::Exception: file: lib/Data/Handle/Exception.pm - version: 0.02001002 + version: 0.02001003 Data::Handle::IO: file: lib/Data/Handle/IO.pm - version: 0.02001002 + version: 0.02001003 requires: Carp: 1.22 IO::File: 0 - Package::Stash: 0 + Package::Stash: 0.15 Scalar::Util: 0 Symbol: 0 Term::ANSIColor: 0 @@ -43,55 +44,65 @@ requires: strict: 0 warnings: 0 resources: + bugtracker: https://github.com/kentfredric/Data-Handle/issues homepage: https://github.com/kentfredric/Data-Handle repository: https://github.com/kentfredric/Data-Handle.git -version: 0.02001002 +version: 0.02001003 x_BuiltWith: modules: - Carp: 1.26 - Data::Dumper: 2.135_06 - Dist::Zilla::PluginBundle::Author::KENTNL: 1.5.0 + Carp: 1.29 + Data::Dumper: 2.145 + Dist::Zilla::PluginBundle::Author::KENTNL: 1.7.4 Dist::Zilla::PluginBundle::Author::KENTNL::Lite: 'NA(possibly not installed)' - File::Find: 1.20 - File::Temp: 0.22 + File::Find: 1.23 + File::Temp: 0.2301 IO::File: 1.16 - IO::Handle: 1.33 - Module::Build: 0.4002 - Package::Stash: 0.33 - Scalar::Util: 1.25 + IO::Handle: 1.34 + Module::Build: 0.4005 + Package::Stash: 0.34 + Pod::Coverage::TrustPod: 0.100002 + Scalar::Util: 1.27 Symbol: 1.07 - Term::ANSIColor: 3.02 + Term::ANSIColor: 4.02 + Test::CPAN::Changes: 0.20 + Test::CPAN::Meta: 0.23 Test::Fatal: 0.010 Test::More: 0.98 - Try::Tiny: 0.11 - overload: 1.18 + Test::Pod: 1.48 + Test::Pod::Coverage: 1.08 + Try::Tiny: 0.15 + lib: 0.63 + overload: 1.22 parent: 0.225 perl: 'NA(skipped: perl)' strict: 1.07 - warnings: 1.13 + version: 0.9902 + warnings: 1.18 perl: - original: v5.16.0 + original: v5.18.0 qv: 1 version: - 5 - - 16 + - 18 - 0 perl-config: - gccversion: 4.6.3 + gccversion: 4.7.2 myarchname: x86_64-linux osname: linux platform: linux - uname: 'Linux 3.5.0-gentoo x86_64 GenuineIntel GNU/Linux' + uname: 'Linux 3.10.0-gentoo x86_64 GenuineIntel GNU/Linux' x_Dist_Zilla: + perl: + version: 5.018000 plugins: - class: Dist::Zilla::Plugin::Git::NextVersion name: '@Author::KENTNL/Git::NextVersion' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::MetaConfig name: '@Author::KENTNL/MetaConfig' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::GithubMeta name: '@Author::KENTNL/GithubMeta' @@ -99,7 +110,7 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::MetaProvides::Package name: '@Author::KENTNL/MetaProvides::Package' - version: 1.14000001 + version: 1.14000002 - class: Dist::Zilla::Plugin::MetaData::BuiltWith config: @@ -120,39 +131,39 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::Git::GatherDir name: '@Author::KENTNL/Git::GatherDir' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::License name: '@Author::KENTNL/License' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::MetaJSON name: '@Author::KENTNL/MetaJSON' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::MetaYAML name: '@Author::KENTNL/MetaYAML' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Manifest name: '@Author::KENTNL/Manifest' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::MetaTests name: '@Author::KENTNL/MetaTests' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::PodCoverageTests name: '@Author::KENTNL/PodCoverageTests' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::PodSyntaxTests name: '@Author::KENTNL/PodSyntaxTests' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::ReportVersions::Tiny name: '@Author::KENTNL/ReportVersions::Tiny' - version: 1.05 + version: 1.08 - class: Dist::Zilla::Plugin::Test::Kwalitee name: '@Author::KENTNL/Test::Kwalitee' @@ -164,11 +175,11 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::Test::MinimumVersion name: '@Author::KENTNL/Test::MinimumVersion' - version: 2.000002 + version: 2.000005 - class: Dist::Zilla::Plugin::Test::Compile name: '@Author::KENTNL/Test::Compile' - version: 1.112820 + version: 2.002 - class: Dist::Zilla::Plugin::Test::Perl::Critic name: '@Author::KENTNL/Test::Perl::Critic' @@ -176,15 +187,15 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::PruneCruft name: '@Author::KENTNL/PruneCruft' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::ManifestSkip name: '@Author::KENTNL/ManifestSkip' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::PkgVersion name: '@Author::KENTNL/PkgVersion' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::PodWeaver name: '@Author::KENTNL/PodWeaver' @@ -192,11 +203,11 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::NextRelease name: '@Author::KENTNL/NextRelease' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::AutoPrereqs name: '@Author::KENTNL/AutoPrereqs' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Prereqs config: @@ -204,7 +215,7 @@ x_Dist_Zilla: phase: develop type: requires name: '@Author::KENTNL/Prereqs/BundleDevelNeeds' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Prereqs config: @@ -212,7 +223,7 @@ x_Dist_Zilla: phase: develop type: recommends name: '@Author::KENTNL/Prereqs/BundleDevelRecommends' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Prereqs config: @@ -220,11 +231,11 @@ x_Dist_Zilla: phase: develop type: suggests name: '@Author::KENTNL/Prereqs/BundleDevelSuggests' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl name: '@Author::KENTNL/Author::KENTNL::MinimumPerl' - version: 1.5.0 + version: 1.7.4 - class: Dist::Zilla::Plugin::Author::KENTNL::Prereqs::Latest::Selective name: '@Author::KENTNL/Author::KENTNL::Prereqs::Latest::Selective' @@ -232,86 +243,90 @@ x_Dist_Zilla: - class: Dist::Zilla::Plugin::Authority name: '@Author::KENTNL/Authority' - version: 1.006 + version: 1.007 - class: Dist::Zilla::Plugin::ModuleBuild name: '@Author::KENTNL/ModuleBuild' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::ReadmeFromPod name: '@Author::KENTNL/ReadmeFromPod' - version: 0.16 + version: 0.18 + - + class: Dist::Zilla::Plugin::ReadmeAnyFromPod + name: '@Author::KENTNL/ReadmeAnyFromPod' + version: 0.131500 - class: Dist::Zilla::Plugin::Test::CPAN::Changes name: '@Author::KENTNL/Test::CPAN::Changes' - version: 0.005 + version: 0.008 - class: Dist::Zilla::Plugin::CheckExtraTests name: '@Author::KENTNL/CheckExtraTests' - version: 0.007 + version: 0.011 - class: Dist::Zilla::Plugin::TestRelease name: '@Author::KENTNL/TestRelease' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Author::KENTNL/ConfirmRelease' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Git::Check name: '@Author::KENTNL/Git::Check' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::Git::Tag name: '@Author::KENTNL/Git::Tag/tag_master' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::Git::Commit name: '@Author::KENTNL/Git::Commit' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::Git::CommitBuild name: '@Author::KENTNL/Git::CommitBuild' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::Git::Tag name: '@Author::KENTNL/Git::Tag/tag_release' - version: 1.121820 + version: 2.014 - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Author::KENTNL/UploadToCPAN' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::Twitter name: '@Author::KENTNL/Twitter' - version: 0.017 + version: 0.021 - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' - version: 4.300021 + version: 4.300035 - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' - version: 4.300021 + version: 4.300035 zilla: class: Dist::Zilla::Dist::Builder config: is_trial: 0 - version: 4.300021 + version: 4.300035 x_authority: cpan:KENTNL diff --git a/MYMETA.json b/MYMETA.json deleted file mode 100644 index bb16612..0000000 --- a/MYMETA.json +++ /dev/null @@ -1,410 +0,0 @@ -{ - "abstract" : "A Very simple interface to the __DATA__ file handle.", - "author" : [ - "Kent Fredric " - ], - "dynamic_config" : 0, - "generated_by" : "Module::Build version 0.4002, CPAN::Meta::Converter version 2.120921", - "license" : [ - "perl_5" - ], - "meta-spec" : { - "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" - }, - "name" : "Data-Handle", - "prereqs" : { - "build" : { - "requires" : { - "Data::Dumper" : "0", - "File::Find" : "0", - "File::Temp" : "0", - "IO::Handle" : "0", - "Module::Build" : "0.4002", - "Test::Fatal" : "0", - "Test::More" : "0.98" - } - }, - "configure" : { - "requires" : { - "Module::Build" : "0.4002" - } - }, - "runtime" : { - "requires" : { - "Carp" : "1.22", - "IO::File" : "0", - "Package::Stash" : "0", - "Scalar::Util" : "0", - "Symbol" : "0", - "Term::ANSIColor" : "0", - "Try::Tiny" : "0", - "overload" : "0", - "parent" : "0", - "perl" : "5.008", - "strict" : "0", - "warnings" : "0" - } - } - }, - "provides" : { - "Data::Handle" : { - "file" : "lib/Data/Handle.pm", - "version" : "0.02001002" - }, - "Data::Handle::Exception" : { - "file" : "lib/Data/Handle/Exception.pm", - "version" : "0.02001002" - }, - "Data::Handle::IO" : { - "file" : "lib/Data/Handle/IO.pm", - "version" : "0.02001002" - } - }, - "release_status" : "stable", - "resources" : { - "homepage" : "https://github.com/kentfredric/Data-Handle", - "repository" : { - "url" : "https://github.com/kentfredric/Data-Handle.git" - } - }, - "version" : "0.02001002", - "x_BuiltWith" : { - "modules" : { - "Carp" : "1.26", - "Data::Dumper" : "2.135_06", - "Dist::Zilla::PluginBundle::Author::KENTNL" : "1.5.0", - "Dist::Zilla::PluginBundle::Author::KENTNL::Lite" : "NA(possibly not installed)", - "File::Find" : "1.20", - "File::Temp" : "0.22", - "IO::File" : "1.16", - "IO::Handle" : "1.33", - "Module::Build" : "0.4002", - "Package::Stash" : "0.33", - "Scalar::Util" : "1.25", - "Symbol" : "1.07", - "Term::ANSIColor" : "3.02", - "Test::Fatal" : "0.010", - "Test::More" : "0.98", - "Try::Tiny" : "0.11", - "overload" : "1.18", - "parent" : "0.225", - "perl" : "NA(skipped: perl)", - "strict" : "1.07", - "warnings" : "1.13" - }, - "perl" : { - "original" : "v5.16.0", - "qv" : "1", - "version" : [ - "5", - "16", - "0" - ] - }, - "perl-config" : { - "gccversion" : "4.6.3", - "myarchname" : "x86_64-linux", - "osname" : "linux" - }, - "platform" : "linux", - "uname" : "Linux 3.5.0-gentoo x86_64 GenuineIntel GNU/Linux" - }, - "x_Dist_Zilla" : { - "plugins" : [ - { - "class" : "Dist::Zilla::Plugin::Git::NextVersion", - "name" : "@Author::KENTNL/Git::NextVersion", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::MetaConfig", - "name" : "@Author::KENTNL/MetaConfig", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::GithubMeta", - "name" : "@Author::KENTNL/GithubMeta", - "version" : "0.28" - }, - { - "class" : "Dist::Zilla::Plugin::MetaProvides::Package", - "name" : "@Author::KENTNL/MetaProvides::Package", - "version" : "1.14000001" - }, - { - "class" : "Dist::Zilla::Plugin::MetaData::BuiltWith", - "config" : { - "Dist::Zilla::Plugin::MetaData::BuiltWith" : { - "_stash_key" : "x_BuiltWith", - "show_config" : "1", - "show_uname" : "1", - "uname" : { - "uname_args" : [ - "-s", - "-o", - "-r", - "-m", - "-i" - ], - "uname_call" : "uname" - } - } - }, - "name" : "@Author::KENTNL/MetaData::BuiltWith", - "version" : "0.03000100" - }, - { - "class" : "Dist::Zilla::Plugin::Git::GatherDir", - "name" : "@Author::KENTNL/Git::GatherDir", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::License", - "name" : "@Author::KENTNL/License", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::MetaJSON", - "name" : "@Author::KENTNL/MetaJSON", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::MetaYAML", - "name" : "@Author::KENTNL/MetaYAML", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Manifest", - "name" : "@Author::KENTNL/Manifest", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::MetaTests", - "name" : "@Author::KENTNL/MetaTests", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::PodCoverageTests", - "name" : "@Author::KENTNL/PodCoverageTests", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::PodSyntaxTests", - "name" : "@Author::KENTNL/PodSyntaxTests", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::ReportVersions::Tiny", - "name" : "@Author::KENTNL/ReportVersions::Tiny", - "version" : "1.05" - }, - { - "class" : "Dist::Zilla::Plugin::Test::Kwalitee", - "name" : "@Author::KENTNL/Test::Kwalitee", - "version" : "2.03" - }, - { - "class" : "Dist::Zilla::Plugin::EOLTests", - "name" : "@Author::KENTNL/EOLTests", - "version" : "0.02" - }, - { - "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", - "name" : "@Author::KENTNL/Test::MinimumVersion", - "version" : "2.000002" - }, - { - "class" : "Dist::Zilla::Plugin::Test::Compile", - "name" : "@Author::KENTNL/Test::Compile", - "version" : "1.112820" - }, - { - "class" : "Dist::Zilla::Plugin::Test::Perl::Critic", - "name" : "@Author::KENTNL/Test::Perl::Critic", - "version" : "2.112410" - }, - { - "class" : "Dist::Zilla::Plugin::PruneCruft", - "name" : "@Author::KENTNL/PruneCruft", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::ManifestSkip", - "name" : "@Author::KENTNL/ManifestSkip", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::PkgVersion", - "name" : "@Author::KENTNL/PkgVersion", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::PodWeaver", - "name" : "@Author::KENTNL/PodWeaver", - "version" : "3.101641" - }, - { - "class" : "Dist::Zilla::Plugin::NextRelease", - "name" : "@Author::KENTNL/NextRelease", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::AutoPrereqs", - "name" : "@Author::KENTNL/AutoPrereqs", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Prereqs", - "config" : { - "Dist::Zilla::Plugin::Prereqs" : { - "phase" : "develop", - "type" : "requires" - } - }, - "name" : "@Author::KENTNL/Prereqs/BundleDevelNeeds", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Prereqs", - "config" : { - "Dist::Zilla::Plugin::Prereqs" : { - "phase" : "develop", - "type" : "recommends" - } - }, - "name" : "@Author::KENTNL/Prereqs/BundleDevelRecommends", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Prereqs", - "config" : { - "Dist::Zilla::Plugin::Prereqs" : { - "phase" : "develop", - "type" : "suggests" - } - }, - "name" : "@Author::KENTNL/Prereqs/BundleDevelSuggests", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl", - "name" : "@Author::KENTNL/Author::KENTNL::MinimumPerl", - "version" : "1.5.0" - }, - { - "class" : "Dist::Zilla::Plugin::Author::KENTNL::Prereqs::Latest::Selective", - "name" : "@Author::KENTNL/Author::KENTNL::Prereqs::Latest::Selective", - "version" : "0.1.0" - }, - { - "class" : "Dist::Zilla::Plugin::Authority", - "name" : "@Author::KENTNL/Authority", - "version" : "1.006" - }, - { - "class" : "Dist::Zilla::Plugin::ModuleBuild", - "name" : "@Author::KENTNL/ModuleBuild", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::ReadmeFromPod", - "name" : "@Author::KENTNL/ReadmeFromPod", - "version" : "0.16" - }, - { - "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes", - "name" : "@Author::KENTNL/Test::CPAN::Changes", - "version" : "0.005" - }, - { - "class" : "Dist::Zilla::Plugin::CheckExtraTests", - "name" : "@Author::KENTNL/CheckExtraTests", - "version" : "0.007" - }, - { - "class" : "Dist::Zilla::Plugin::TestRelease", - "name" : "@Author::KENTNL/TestRelease", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::ConfirmRelease", - "name" : "@Author::KENTNL/ConfirmRelease", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Git::Check", - "name" : "@Author::KENTNL/Git::Check", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::Git::Tag", - "name" : "@Author::KENTNL/Git::Tag/tag_master", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::Git::Commit", - "name" : "@Author::KENTNL/Git::Commit", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::Git::CommitBuild", - "name" : "@Author::KENTNL/Git::CommitBuild", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::Git::Tag", - "name" : "@Author::KENTNL/Git::Tag/tag_release", - "version" : "1.121820" - }, - { - "class" : "Dist::Zilla::Plugin::UploadToCPAN", - "name" : "@Author::KENTNL/UploadToCPAN", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::Twitter", - "name" : "@Author::KENTNL/Twitter", - "version" : "0.017" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":InstallModules", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":IncModules", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":TestFiles", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":ExecFiles", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":ShareFiles", - "version" : "4.300021" - }, - { - "class" : "Dist::Zilla::Plugin::FinderCode", - "name" : ":MainModule", - "version" : "4.300021" - } - ], - "zilla" : { - "class" : "Dist::Zilla::Dist::Builder", - "config" : { - "is_trial" : "0" - }, - "version" : "4.300021" - } - }, - "x_authority" : "cpan:KENTNL" -} diff --git a/MYMETA.yml b/MYMETA.yml deleted file mode 100644 index 2851062..0000000 --- a/MYMETA.yml +++ /dev/null @@ -1,317 +0,0 @@ ---- -abstract: 'A Very simple interface to the __DATA__ file handle.' -author: - - 'Kent Fredric ' -build_requires: - Data::Dumper: 0 - File::Find: 0 - File::Temp: 0 - IO::Handle: 0 - Module::Build: 0.4002 - Test::Fatal: 0 - Test::More: 0.98 -configure_requires: - Module::Build: 0.4002 -dynamic_config: 0 -generated_by: 'Module::Build version 0.4002, CPAN::Meta::Converter version 2.120921' -license: perl -meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 -name: Data-Handle -provides: - Data::Handle: - file: lib/Data/Handle.pm - version: 0.02001002 - Data::Handle::Exception: - file: lib/Data/Handle/Exception.pm - version: 0.02001002 - Data::Handle::IO: - file: lib/Data/Handle/IO.pm - version: 0.02001002 -requires: - Carp: 1.22 - IO::File: 0 - Package::Stash: 0 - Scalar::Util: 0 - Symbol: 0 - Term::ANSIColor: 0 - Try::Tiny: 0 - overload: 0 - parent: 0 - perl: 5.008 - strict: 0 - warnings: 0 -resources: - homepage: https://github.com/kentfredric/Data-Handle - repository: https://github.com/kentfredric/Data-Handle.git -version: 0.02001002 -x_BuiltWith: - modules: - Carp: 1.26 - Data::Dumper: 2.135_06 - Dist::Zilla::PluginBundle::Author::KENTNL: 1.5.0 - Dist::Zilla::PluginBundle::Author::KENTNL::Lite: 'NA(possibly not installed)' - File::Find: 1.20 - File::Temp: 0.22 - IO::File: 1.16 - IO::Handle: 1.33 - Module::Build: 0.4002 - Package::Stash: 0.33 - Scalar::Util: 1.25 - Symbol: 1.07 - Term::ANSIColor: 3.02 - Test::Fatal: 0.010 - Test::More: 0.98 - Try::Tiny: 0.11 - overload: 1.18 - parent: 0.225 - perl: 'NA(skipped: perl)' - strict: 1.07 - warnings: 1.13 - perl: - original: v5.16.0 - qv: 1 - version: - - 5 - - 16 - - 0 - perl-config: - gccversion: 4.6.3 - myarchname: x86_64-linux - osname: linux - platform: linux - uname: 'Linux 3.5.0-gentoo x86_64 GenuineIntel GNU/Linux' -x_Dist_Zilla: - plugins: - - - class: Dist::Zilla::Plugin::Git::NextVersion - name: '@Author::KENTNL/Git::NextVersion' - version: 1.121820 - - - class: Dist::Zilla::Plugin::MetaConfig - name: '@Author::KENTNL/MetaConfig' - version: 4.300021 - - - class: Dist::Zilla::Plugin::GithubMeta - name: '@Author::KENTNL/GithubMeta' - version: 0.28 - - - class: Dist::Zilla::Plugin::MetaProvides::Package - name: '@Author::KENTNL/MetaProvides::Package' - version: 1.14000001 - - - class: Dist::Zilla::Plugin::MetaData::BuiltWith - config: - Dist::Zilla::Plugin::MetaData::BuiltWith: - _stash_key: x_BuiltWith - show_config: 1 - show_uname: 1 - uname: - uname_args: - - '-s' - - '-o' - - '-r' - - '-m' - - '-i' - uname_call: uname - name: '@Author::KENTNL/MetaData::BuiltWith' - version: 0.03000100 - - - class: Dist::Zilla::Plugin::Git::GatherDir - name: '@Author::KENTNL/Git::GatherDir' - version: 1.121820 - - - class: Dist::Zilla::Plugin::License - name: '@Author::KENTNL/License' - version: 4.300021 - - - class: Dist::Zilla::Plugin::MetaJSON - name: '@Author::KENTNL/MetaJSON' - version: 4.300021 - - - class: Dist::Zilla::Plugin::MetaYAML - name: '@Author::KENTNL/MetaYAML' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Manifest - name: '@Author::KENTNL/Manifest' - version: 4.300021 - - - class: Dist::Zilla::Plugin::MetaTests - name: '@Author::KENTNL/MetaTests' - version: 4.300021 - - - class: Dist::Zilla::Plugin::PodCoverageTests - name: '@Author::KENTNL/PodCoverageTests' - version: 4.300021 - - - class: Dist::Zilla::Plugin::PodSyntaxTests - name: '@Author::KENTNL/PodSyntaxTests' - version: 4.300021 - - - class: Dist::Zilla::Plugin::ReportVersions::Tiny - name: '@Author::KENTNL/ReportVersions::Tiny' - version: 1.05 - - - class: Dist::Zilla::Plugin::Test::Kwalitee - name: '@Author::KENTNL/Test::Kwalitee' - version: 2.03 - - - class: Dist::Zilla::Plugin::EOLTests - name: '@Author::KENTNL/EOLTests' - version: 0.02 - - - class: Dist::Zilla::Plugin::Test::MinimumVersion - name: '@Author::KENTNL/Test::MinimumVersion' - version: 2.000002 - - - class: Dist::Zilla::Plugin::Test::Compile - name: '@Author::KENTNL/Test::Compile' - version: 1.112820 - - - class: Dist::Zilla::Plugin::Test::Perl::Critic - name: '@Author::KENTNL/Test::Perl::Critic' - version: 2.112410 - - - class: Dist::Zilla::Plugin::PruneCruft - name: '@Author::KENTNL/PruneCruft' - version: 4.300021 - - - class: Dist::Zilla::Plugin::ManifestSkip - name: '@Author::KENTNL/ManifestSkip' - version: 4.300021 - - - class: Dist::Zilla::Plugin::PkgVersion - name: '@Author::KENTNL/PkgVersion' - version: 4.300021 - - - class: Dist::Zilla::Plugin::PodWeaver - name: '@Author::KENTNL/PodWeaver' - version: 3.101641 - - - class: Dist::Zilla::Plugin::NextRelease - name: '@Author::KENTNL/NextRelease' - version: 4.300021 - - - class: Dist::Zilla::Plugin::AutoPrereqs - name: '@Author::KENTNL/AutoPrereqs' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Prereqs - config: - Dist::Zilla::Plugin::Prereqs: - phase: develop - type: requires - name: '@Author::KENTNL/Prereqs/BundleDevelNeeds' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Prereqs - config: - Dist::Zilla::Plugin::Prereqs: - phase: develop - type: recommends - name: '@Author::KENTNL/Prereqs/BundleDevelRecommends' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Prereqs - config: - Dist::Zilla::Plugin::Prereqs: - phase: develop - type: suggests - name: '@Author::KENTNL/Prereqs/BundleDevelSuggests' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Author::KENTNL::MinimumPerl - name: '@Author::KENTNL/Author::KENTNL::MinimumPerl' - version: 1.5.0 - - - class: Dist::Zilla::Plugin::Author::KENTNL::Prereqs::Latest::Selective - name: '@Author::KENTNL/Author::KENTNL::Prereqs::Latest::Selective' - version: 0.1.0 - - - class: Dist::Zilla::Plugin::Authority - name: '@Author::KENTNL/Authority' - version: 1.006 - - - class: Dist::Zilla::Plugin::ModuleBuild - name: '@Author::KENTNL/ModuleBuild' - version: 4.300021 - - - class: Dist::Zilla::Plugin::ReadmeFromPod - name: '@Author::KENTNL/ReadmeFromPod' - version: 0.16 - - - class: Dist::Zilla::Plugin::Test::CPAN::Changes - name: '@Author::KENTNL/Test::CPAN::Changes' - version: 0.005 - - - class: Dist::Zilla::Plugin::CheckExtraTests - name: '@Author::KENTNL/CheckExtraTests' - version: 0.007 - - - class: Dist::Zilla::Plugin::TestRelease - name: '@Author::KENTNL/TestRelease' - version: 4.300021 - - - class: Dist::Zilla::Plugin::ConfirmRelease - name: '@Author::KENTNL/ConfirmRelease' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Git::Check - name: '@Author::KENTNL/Git::Check' - version: 1.121820 - - - class: Dist::Zilla::Plugin::Git::Tag - name: '@Author::KENTNL/Git::Tag/tag_master' - version: 1.121820 - - - class: Dist::Zilla::Plugin::Git::Commit - name: '@Author::KENTNL/Git::Commit' - version: 1.121820 - - - class: Dist::Zilla::Plugin::Git::CommitBuild - name: '@Author::KENTNL/Git::CommitBuild' - version: 1.121820 - - - class: Dist::Zilla::Plugin::Git::Tag - name: '@Author::KENTNL/Git::Tag/tag_release' - version: 1.121820 - - - class: Dist::Zilla::Plugin::UploadToCPAN - name: '@Author::KENTNL/UploadToCPAN' - version: 4.300021 - - - class: Dist::Zilla::Plugin::Twitter - name: '@Author::KENTNL/Twitter' - version: 0.017 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':InstallModules' - version: 4.300021 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':IncModules' - version: 4.300021 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':TestFiles' - version: 4.300021 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':ExecFiles' - version: 4.300021 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':ShareFiles' - version: 4.300021 - - - class: Dist::Zilla::Plugin::FinderCode - name: ':MainModule' - version: 4.300021 - zilla: - class: Dist::Zilla::Dist::Builder - config: - is_trial: 0 - version: 4.300021 -x_authority: cpan:KENTNL diff --git a/README b/README index f9aab52..76e09c0 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Data::Handle - A Very simple interface to the __DATA__ file handle. VERSION - version 0.02001002 + version 0.02001003 SYNOPSIS package Foo; @@ -104,7 +104,7 @@ AUTHOR Kent Fredric COPYRIGHT AND LICENSE - This software is copyright (c) 2012 by Kent Fredric . + This software is copyright (c) 2013 by Kent Fredric . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. diff --git a/_build/auto_features b/_build/auto_features deleted file mode 100644 index 2df4e46..0000000 --- a/_build/auto_features +++ /dev/null @@ -1,2 +0,0 @@ -do{ my $x = {}; -$x; } \ No newline at end of file diff --git a/_build/build_params b/_build/build_params deleted file mode 100644 index 504ae33..0000000 --- a/_build/build_params +++ /dev/null @@ -1,139 +0,0 @@ -do{ my $x = [ - { - 'ARGV' => [] - }, - {}, - { - 'verbose' => undef, - 'dist_suffix' => undef, - 'PL_files' => undef, - 'pollute' => undef, - 'metafile2' => 'META.json', - 'bindoc_dirs' => [ - 'blib/script' - ], - 'conflicts' => {}, - 'scripts' => undef, - 'recommends' => {}, - 'pod_files' => undef, - 'config_dir' => '_build', - 'dist_version' => '0.02001002', - 'sign' => undef, - 'recurse_into' => [], - 'build_bat' => 0, - 'extra_linker_flags' => [], - 'build_class' => 'Module::Build', - 'prereq_action_types' => [ - 'requires', - 'build_requires', - 'conflicts', - 'recommends' - ], - 'base_dir' => '/home/kent/perl/Data-Handle/Data-Handle-0.02001002', - 'allow_mb_mismatch' => 0, - 'xs_files' => undef, - 'destdir' => undef, - 'metafile' => 'META.yml', - 'mb_version' => '0.4002', - 'use_tap_harness' => 0, - 'test_file_exts' => [ - '.t' - ], - 'has_config_data' => undef, - 'dist_name' => 'Data-Handle', - 'install_base' => undef, - 'module_name' => 'Data::Handle', - 'recursive_test_files' => 1, - 'libdoc_dirs' => [ - 'blib/lib', - 'blib/arch' - ], - 'perl' => '/home/kent/perl5/perlbrew/perls/perl-5.16.0/bin/perl5.16.0', - 'dist_author' => [ - 'Kent Fredric ' - ], - 'bundle_inc' => [], - 'use_rcfile' => 1, - 'configure_requires' => { - 'Module::Build' => '0.4002' - }, - 'test_files' => undef, - 'dist_abstract' => 'A Very simple interface to the __DATA__ file handle.', - 'create_readme' => undef, - 'prefix_relpaths' => {}, - 'share_dir' => undef, - 'debug' => undef, - 'meta_merge' => {}, - 'get_options' => {}, - 'dist_version_from' => undef, - '_added_to_INC' => [], - 'auto_configure_requires' => 1, - 'create_license' => undef, - 'debugger' => undef, - 'html_css' => '', - 'cpan_client' => 'cpan', - 'mymetafile2' => 'MYMETA.json', - 'bundle_inc_preload' => [], - 'build_elements' => [ - 'PL', - 'support', - 'pm', - 'xs', - 'share_dir', - 'pod', - 'script' - ], - 'release_status' => 'stable', - 'needs_compiler' => '', - 'orig_dir' => '/home/kent/perl/Data-Handle/Data-Handle-0.02001002', - 'include_dirs' => [], - 'installdirs' => 'site', - 'mymetafile' => 'MYMETA.yml', - 'create_makefile_pl' => undef, - 'magic_number' => undef, - 'dynamic_config' => 1, - 'install_sets' => {}, - 'tap_harness_args' => {}, - 'install_base_relpaths' => {}, - 'create_packlist' => 1, - 'meta_add' => {}, - 'requires' => { - 'warnings' => 0, - 'Try::Tiny' => 0, - 'Scalar::Util' => 0, - 'parent' => 0, - 'Term::ANSIColor' => 0, - 'IO::File' => 0, - 'Package::Stash' => 0, - 'overload' => 0, - 'Symbol' => 0, - 'Carp' => '1.22', - 'strict' => 0, - 'perl' => '5.008' - }, - 'install_path' => {}, - 'pm_files' => undef, - 'quiet' => undef, - 'extra_compiler_flags' => [], - 'script_files' => [], - 'build_script' => 'Build', - 'original_prefix' => {}, - 'c_source' => undef, - 'program_name' => undef, - 'autosplit' => undef, - 'license' => 'perl', - 'build_requires' => { - 'Test::More' => '0.98', - 'File::Find' => 0, - 'IO::Handle' => 0, - 'File::Temp' => 0, - 'Data::Dumper' => 0, - 'Test::Fatal' => 0, - 'Module::Build' => '0.4002' - }, - 'config' => undef, - 'blib' => 'blib', - 'prefix' => undef - } - ]; -$x; } \ No newline at end of file diff --git a/_build/cleanup b/_build/cleanup deleted file mode 100644 index 8399601..0000000 --- a/_build/cleanup +++ /dev/null @@ -1,4 +0,0 @@ -do{ my $x = { - 'blib' => 1 - }; -$x; } \ No newline at end of file diff --git a/_build/config_data b/_build/config_data deleted file mode 100644 index 2df4e46..0000000 --- a/_build/config_data +++ /dev/null @@ -1,2 +0,0 @@ -do{ my $x = {}; -$x; } \ No newline at end of file diff --git a/_build/features b/_build/features deleted file mode 100644 index 2df4e46..0000000 --- a/_build/features +++ /dev/null @@ -1,2 +0,0 @@ -do{ my $x = {}; -$x; } \ No newline at end of file diff --git a/_build/magicnum b/_build/magicnum deleted file mode 100644 index b72db14..0000000 --- a/_build/magicnum +++ /dev/null @@ -1 +0,0 @@ -382438 \ No newline at end of file diff --git a/_build/notes b/_build/notes deleted file mode 100644 index 2df4e46..0000000 --- a/_build/notes +++ /dev/null @@ -1,2 +0,0 @@ -do{ my $x = {}; -$x; } \ No newline at end of file diff --git a/_build/prereqs b/_build/prereqs deleted file mode 100644 index 26c0bf8..0000000 --- a/_build/prereqs +++ /dev/null @@ -1,28 +0,0 @@ -do{ my $x = { - 'build_requires' => { - 'Test::More' => '0.98', - 'File::Find' => 0, - 'IO::Handle' => 0, - 'File::Temp' => 0, - 'Data::Dumper' => 0, - 'Test::Fatal' => 0, - 'Module::Build' => '0.4002' - }, - 'conflicts' => {}, - 'requires' => { - 'warnings' => 0, - 'Try::Tiny' => 0, - 'Scalar::Util' => 0, - 'parent' => 0, - 'Term::ANSIColor' => 0, - 'IO::File' => 0, - 'Package::Stash' => 0, - 'overload' => 0, - 'Symbol' => 0, - 'Carp' => '1.22', - 'strict' => 0, - 'perl' => '5.008' - }, - 'recommends' => {} - }; -$x; } \ No newline at end of file diff --git a/_build/runtime_params b/_build/runtime_params deleted file mode 100644 index 2df4e46..0000000 --- a/_build/runtime_params +++ /dev/null @@ -1,2 +0,0 @@ -do{ my $x = {}; -$x; } \ No newline at end of file diff --git a/blib/lib/Data/Handle.pm b/blib/lib/Data/Handle.pm deleted file mode 100644 index cd439a5..0000000 --- a/blib/lib/Data/Handle.pm +++ /dev/null @@ -1,402 +0,0 @@ -use strict; -use warnings; - -package Data::Handle; -BEGIN { - $Data::Handle::AUTHORITY = 'cpan:KENTNL'; -} -{ - $Data::Handle::VERSION = '0.02001002'; -} - -# ABSTRACT: A Very simple interface to the __DATA__ file handle. - - - - - -my %datastash; -use Symbol qw( gensym ); -use Scalar::Util qw( weaken ); -use parent qw( IO::File ); -use Package::Stash; -use Carp (); -use Data::Handle::Exception; -use Data::Handle::IO; -use Try::Tiny; - - -sub new { - my ( $class, $targetpackage ) = @_; - - _e('NoSymbol')->throw("$targetpackage has no DATA symbol") - if ( !$class->_has_data_symbol($targetpackage) ); - - if ( !$class->_is_valid_data_tell($targetpackage) ) { - _e('BadFilePos') - ->throw( "$targetpackage has a DATA symbol, but the filepointer" - . " is well beyond the __DATA__ section.\n" - . " We can't work out safely where it is.\n" - . $class->_stringify_metadata($targetpackage) - . "\n" ); - } - - my $sym = gensym(); - my $xsym = $sym; - weaken($xsym); - - ## no critic( ProhibitTies ) - tie *{$sym}, 'Data::Handle::IO', { self => $xsym }; - ${ *{$sym} }{stash} = {}; - bless $sym, $class; - $sym->_stash->{start_offset} = $class->_get_start_offset($targetpackage); - $sym->_stash->{targetpackage} = $targetpackage; - $sym->_stash->{current_offset} = $class->_get_start_offset($targetpackage); - $sym->_stash->{filehandle} = $class->_get_data_symbol($targetpackage); - return $sym; - -} - -sub _has_data_symbol { - my ( $self, $package ) = @_; - my $rval = undef; - try { - my $object = Package::Stash->new($package); - return unless $object->has_package_symbol('DATA'); - my $fh = $object->get_package_symbol('DATA'); - $rval = defined fileno *{$fh}; - } - catch { - if ( $_ =~ /is not a module name/ ) { - $rval = undef; - return; - } - ## no critic (RequireCarping) - die $_; - }; - return $rval; -} - -sub _get_data_symbol { - my ( $self, $package ) = @_; - if ( !$self->_has_data_symbol($package) ) { - _e('Internal::BadGet') - ->throw( - '_get_data_symbol was called when there is no data_symbol to get'); - } - return Package::Stash->new($package)->get_package_symbol('DATA'); -} - -sub _get_start_offset { - my ( $self, $package ) = @_; - - return $datastash{$package}->{offset} - if ( exists $datastash{$package}->{offset} ); - - if ( !$self->_has_data_symbol($package) ) { - _e('Internal::BadGet') - ->throw( - '_get_start_offset was called when there is no data_symbol to get'); - } - my $fd = $self->_get_data_symbol($package); - my $position = tell $fd; - - $datastash{$package}->{offset} = $position; - - return $position; -} - -sub _is_valid_data_tell { - my ( $self, $package ) = @_; - return 1 - if ( exists $datastash{$package} && $datastash{$package}->{valid} == 1 ); - if ( !$self->_has_data_symbol($package) ) { - _e('Internal::BadGet') - ->throw( - '_is_valid_data_tell was called when there is no data_symbol to get'); - } - - my $fh = $self->_get_data_symbol($package); - my $offset = $self->_get_start_offset($package); - - # The offset to the start of __DATA__ is 9 bytes because it includes the - # trailing \n - # - my $checkfor = qq{__DATA__\n}; - seek $fh, ( $offset - length $checkfor ), 0; - read $fh, my ($buffer), length $checkfor; - seek $fh, $offset, 0; - - $datastash{$package}->{previous_bytes} = $buffer; - - if ( $buffer eq $checkfor ) { - $datastash{$package}->{valid} = 1; - return 1; - } - else { - $datastash{$package}->{valid} = 0; - return; - } -} - -sub _stringify_metadata { - my ( $self, $package ) = @_; - my @lines = (); - if ( not exists $datastash{$package} ) { - push @lines, "Nothing known about $package\n"; - return join "\n", @lines; - } - else { - push @lines, q{Offset : } . $datastash{$package}->{offset}; - push @lines, q{Prelude : '} . $datastash{$package}->{previous_bytes} . q{'}; - push @lines, q{Valid: } . $datastash{$package}->{valid}; - return join "\n", @lines; - } -} - -sub _readline { - my ( $self, @args ) = @_; - - _e('API::Invalid::Params')->throw('_readline() takes no parameters') if @args; - - my $fh = $self->_fh; - $self->_restore_pos(); - if (wantarray) { - my @result = <$fh>; - $self->_set_pos(); - return @result; - } - my $result = <$fh>; - $self->_set_pos(); - return $result; -} - -sub _read { - my ( $self, undef, $len, $offset ) = @_; - - ## no critic ( ProhibitMagicNumbers ) - _e('API::Invalid::Params')->throw('_read() takes 2 or 3 parameters.') - if ( scalar @_ < 3 or scalar @_ > 4 ); - - $self->_restore_pos(); - my $return; - if ( defined $offset ) { - $return = read $self->_fh, $_[1], $len, $offset; - } - else { - $return = read $self->_fh, $_[1], $len; - } - $self->_set_pos(); - return $return; -} - -sub _getc { - my ($self) = @_; - _e('API::Invalid::Params')->throw('_get() takes 0 parameters.') - if scalar @_ > 1; - $self->_restore_pos(); - my $return = getc $self->_fh; - $self->_set_pos(); - return $return; -} - -sub _seek { - my ( $self, $position, $whence ) = @_; - - ## no critic ( ProhibitMagicNumbers ) - - _e('API::Invalid::Params')->throw('_seek() takes 2 params.') - if scalar @_ != 3; - - my $fh = $self->_stash->{filehandle}; - - if ( $whence == 0 ) { - $position = $self->_stash->{start_offset} + $position; - } - elsif ( $whence == 1 ) { - $whence = 0; - $position = $self->_stash->{current_offset} + $position; - } - elsif ( $whence == 2 ) { - } - else { - _e('API::Invalid::Whence')->throw('Expected whence values are 0,1,2'); - } - my $return = seek $fh, $position, $whence; - $self->_set_pos(); - return $return; -} - -sub _tell { - my ($self) = shift; - _e('API::Invalid::Params')->throw('_tell() takes no params.') if @_; - return $self->_stash->{current_offset} - $self->_stash->{start_offset}; -} - -sub _eof { - my $self = shift; - _e('API::Invalid::Params')->throw("_eof() takes no params : @_ ") - if @_ && $_[0] != 1; - $self->_restore_pos(); - return eof $self->_stash->{filehandle}; -} - -sub _restore_pos { - my $self = shift; - return seek $self->_stash->{filehandle}, $self->_stash->{current_offset}, 0; -} - -sub _set_pos { - my $self = shift; - return ( $self->_stash->{current_offset} = tell $self->_stash->{filehandle} ); -} - -sub _stash { return ${ *{ $_[0] } }{stash} } -sub _fileno { return } -sub _e { return 'Data::Handle::Exception::' . shift } -sub _fh { return shift->_stash->{filehandle} } - -sub _binmode { - return _e('API::NotImplemented') - ->throw('_binmode() is difficult on Data::Handle and not implemented yet.'); -} - -sub _open { - return _e('API::Invalid')->throw('_open() is invalid on Data::Handle.'); -} - -sub _close { - return _e('API::Invalid')->throw('_close() is invalid on Data::Handle'); -} - -sub _printf { - return _e('API::Invalid')->throw('_printf() is invalid on Data::Handle.'); -} - -sub _print { - return _e('API::Invalid')->throw('_print() is invalid on Data::Handle.'); -} - -sub _write { - return _e('API::Invalid')->throw('_write() is invalid on Data::Handle.'); -} - - -1; - - -__END__ -=pod - -=head1 NAME - -Data::Handle - A Very simple interface to the __DATA__ file handle. - -=head1 VERSION - -version 0.02001002 - -=head1 SYNOPSIS - - package Foo; - - sub bar { - my $handle = Data::Handle->new( __PACKAGE__ ); - while (<$handle>) { - print $_; - } - } - - __DATA__ - Foo - -=head1 DESCRIPTION - -This Package serves as a very I simple interface to a packages __DATA__ section. - -Its primary purposes is to make successive accesses viable without needing to -scan the file manually for the __DATA__ marker. - -It does this mostly by recording the current position of the file handle on -the first call to C<< ->new >>, and then re-using that position on every successive C<< ->new >> call, -which eliminates a bit of the logic for you. - -At present, it only does a simple heuristic ( backtracking ) to verify the current position is B -at the start of a __DATA__ section, but we may improve on this one day. - -=head1 METHODS - -=head2 new - - my $fh = Data::Handle->new( $targetpackage ) - -Where C<$targetpackage> is the package you want the __DATA__ section from. - -=head1 WARNING - -At present, this module does you no favours if something else earlier has moved the file handle position past -the __DATA__ section, or rewound it to the start of the file. This is an understood caveat, but nothing else -seems to have a good way around this either. ( You can always rewind to the start of the file and use heuristics, but that is rather pesky ). - -Hopefully, if other people B decide to go moving your file pointer, they'll use this module to do it so -you your code doesn't break. - -=head1 USAGE - -Cnew()> returns a tied file-handle, and for all intents and purposes, it should -behave as if somebody had copied __DATA__ to its own file, and then done C<< open $fh, '<' , $file >> -on it, for every instance of the Data::Handle. - -It also inherits from L, so all the methods it has that make sense to use should probably work -on this too, i.e.: - - my $handle = Data::Handle->new( __PACKAGE__ ); - my @lines = $handle->getlines(); - -Also, all offsets are proxied in transit, so you can treat the file-handle as if byte 0 is the first byte of the data section. - - my $handle = Data::Handle->new( __PACKAGE__ ); - my @lines = $handle->getlines(); - seek $handle, 0, 0; - local $/ = undef; - my $line = scalar <$handle>; # SLURPED! - -Also, the current position of each handle instance is internally tracked, so you can have as many -objects pointing to the same __DATA__ section but have their read mechanism uninterrupted by any others. - - my $handlea = Data::Handle->new( __PACKAGE__ ); - my $handleb = Data::Handle->new( __PACKAGE__ ); - - seek $handlea, 10, 0; - seek $handleb, 15, 0; - - read $handlea, my $buf, 5; - - read $handleb, my $bufa, 1; - read $handleb, my $bufb, 1; - - $bufa eq $bufb; - -Don't be fooled, it does this under the covers by a lot of C/C magic, but they shouldn't be a problem unless you are truly anal over speed. - -=head1 CREDITS - -Thanks to LeoNerd and anno, from #perl on irc.freenode.org, -they were most helpful in helping me grok the magic of C that -makes the simplicity of the interface possible. - -Thanks to Chas Owens and James Wright for their efforts with trying to get something simpler with fdup()ing the descriptor ( Sadly not working yet ). - -=head1 AUTHOR - -Kent Fredric - -=head1 COPYRIGHT AND LICENSE - -This software is copyright (c) 2012 by Kent Fredric . - -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. - -=cut - diff --git a/blib/lib/Data/Handle/Exception.pm b/blib/lib/Data/Handle/Exception.pm deleted file mode 100644 index b2f98da..0000000 --- a/blib/lib/Data/Handle/Exception.pm +++ /dev/null @@ -1,235 +0,0 @@ -use strict; -use warnings; - -package Data::Handle::Exception; -BEGIN { - $Data::Handle::Exception::AUTHORITY = 'cpan:KENTNL'; -} -{ - $Data::Handle::Exception::VERSION = '0.02001002'; -} - -# ABSTRACT: Super-light Weight Dependency Free Exception base. - - - -use overload '""' => \&stringify; -use Scalar::Util qw( blessed ); -use Carp 1.22; -use Term::ANSIColor qw( :constants ); - -if ( not defined &Carp::caller_info ) { - Carp::croak(q{Cannot load Data::Handle::Exception as your version of Carp does not have ::caller_info which we use for backtraces, Carp Version: } . - $Carp::VERSION ); -} - - - -sub new { - my ($class) = @_; - my $self = {}; - bless $self, $class; - return $self; -} - - - -sub throw { - my $self = shift; - - if ( not blessed $self ) { - $self = $self->new(); - } - my $message = shift; - - my @stack = (); - my @stacklines = (); - - # This is mostly because want to benefit from all new fixes in carp. - my $callerinfo = \&Carp::caller_info; - { # stolen parts from Carp::ret_backtrace - my ($i) = 0; - - my $tid_msg = q{}; - if ( defined &threads::tid ) { - my $tid = threads->tid; - $tid_msg = " thread $tid" if $tid; - } - - my %i = $callerinfo->($i); - - push @stack, \%i; - push @stacklines, sprintf q{Exception '%s' thrown at %s line %s%s}, blessed($self), $i{file}, $i{line}, $tid_msg; - - while ( my %j = $callerinfo->( ++$i ) ) { - push @stack, \%j; - push @stacklines, sprintf q{%s called at %s line %s%s}, $j{sub_name}, $j{file}, $j{line}, $tid_msg; - } - } - $self->{message} = $message; - $self->{stacklines} = \@stacklines; - $self->{stack} = \@stack; - Carp::confess($self); -} - -{ - ## no critic ( RequireInterpolationOfMetachars ) - my $s = q{(\x2F|\x5c)}; - my $d = q{\x2E}; - ## use critic - my $yellow = qr{ - ${s}Try${s}Tiny${d}pm - | - ${s}Test${s}Fatal${d}pm - }x; - my $green = qr{ - ${s}Data${s}Handle${d}pm - | - ${s}Data${s}Handle${s} - }x; - - sub _color_for_line { - my $line = shift; - return YELLOW if ( $line =~ $yellow ); - return GREEN if ( $line =~ $green ); - return q{}; - } -} - - -sub stringify { - ## no critic ( ProhibitPunctuationVars ) - local $@ = undef; # Term::ANSIColour clobbers $@ - my $self = shift; - my $message = $self->{message}; - my @stacklines = @{ $self->{stacklines} }; - - my $out = $message . "\n\n"; - my $throwline = shift @stacklines; - $out .= _color_for_line($throwline) . $throwline . RESET; - my $i = 2; - for (@stacklines) { - $out .= "\n " . _color_for_line($_) . "$i. " . $_ . RESET; - $i++; - } - return $out . "\n\n"; -} -my $dynaexceptions = { 'Data::Handle::Exception' => 1 }; - -sub _gen { - my ( $self, $fullclass, $parent ) = @_; - ## no critic ( RequireInterpolationOfMetachars ) - my $code = sprintf q{package %s; our @ISA=("%s"); 1;}, $fullclass, $parent; - - ## no critic ( ProhibitStringyEval RequireCarping ProhibitPunctuationVars ) - eval $code or throw(qq{ Exception generating exception :[ $@ }); - $dynaexceptions->{$fullclass} = 1; - return 1; -} - -sub _gen_tree { - my ( $self, $class ) = @_; - my $parent = $class; - - $parent =~ s{ - ::[^:]+$ - }{}x; - if ( !exists $dynaexceptions->{$parent} ) { - $self->_gen_tree($parent); - } - if ( !exists $dynaexceptions->{$class} ) { - $self->_gen( $class, $parent ); - } - return $class; -} - -for (qw( API::Invalid API::Invalid::Whence API::Invalid::Params API::NotImplemented Internal::BadGet NoSymbol BadFilePos )) { - __PACKAGE__->_gen_tree("Data::Handle::Exception::$_"); -} - -1; - - -__END__ -=pod - -=head1 NAME - -Data::Handle::Exception - Super-light Weight Dependency Free Exception base. - -=head1 VERSION - -version 0.02001002 - -=head1 SYNOPSIS - - use Data::Handle::Exception; - Data::Handle::Exception->generate_exception( - 'Foo::Bar' => 'A Bar error occurred :(' - )->throw(); - -=head1 DESCRIPTION - -L's primary goal is to be somewhat "Infrastructural" in design, much like L is, being very low-level, and doing one thing, and doing it well, solving an issue with Perl's native implementation. - -The idea is for more complex things to use this, instead of this using more complex things. - -As such, a dependency on something like Moose would be overkill, possibly even detrimental to encouraging the use of this module. - -So we've scrimped and gone really cheap ( for now at least ) in a few places to skip adding downstream dependencies, so this module is a slightly nasty but reasonably straight forward exception class. - -The actual Exception classes don't actually have their own sources, they're automatically generated when L is loaded. -And we have some really nice backtraces stolen from Carp's code, with some sexy coloured formatting. See L/stringify> for details. - -=head1 METHODS - -=head2 new - - my @stack; - my $i = Data::Handle::Exception->new( $messageString, \@stack ); - -=head2 throw - - Data::Handle::Exception->new( $messageString, \@stack )->throw(); - -=head2 stringify - -Turns this stacktrace into a string. - - $exception->stringify(); - - my $str = "hello " . $exception . " world"; - -If you have a coloured terminal, then L is used to highlight lines based on how likely they are to be relevant to diagnosis. - -=over 4 - -=item Green - From Data::Handle and is likely to be "safe", its where the error is being reported from, so its useful informationally, but the problem is probably elsewhere. - -=item Yellow - Sources we're confident its unlikely to be a source of problems, currently - -=over 4 - -=item Try::Tiny - -=item Test::Fatal - -=back - -=item White - Everything Else, the place the problem is most likely to be. - -=back - -=head1 AUTHOR - -Kent Fredric - -=head1 COPYRIGHT AND LICENSE - -This software is copyright (c) 2012 by Kent Fredric . - -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. - -=cut - diff --git a/blib/lib/Data/Handle/IO.pm b/blib/lib/Data/Handle/IO.pm deleted file mode 100644 index 02ccb5c..0000000 --- a/blib/lib/Data/Handle/IO.pm +++ /dev/null @@ -1,82 +0,0 @@ - -use strict; -use warnings; - -package Data::Handle::IO; -BEGIN { - $Data::Handle::IO::AUTHORITY = 'cpan:KENTNL'; -} -{ - $Data::Handle::IO::VERSION = '0.02001002'; -} - -# ABSTRACT: A Tie Package so Data::Handle can look and feel like a normal handle. -# - - -sub TIEHANDLE { - my $self = shift; - my $object = shift; - return bless $object, $self; -} - -sub _object { - my $self = shift; - return $self->{self}; -} - -## no critic (ProtectPrivateSubs) - -sub READLINE { return shift->_object->_readline(@_) } -sub READ { return shift->_object->_read(@_) } -sub GETC { return shift->_object->_getc(@_) } -sub WRITE { return shift->_object->_write(@_) } -sub PRINT { return shift->_object->_print(@_) } -sub PRINTF { return shift->_object->_printf(@_) } -sub EOF { return shift->_object->_eof(@_) } -sub CLOSE { return shift->_object->_close(@_) } -sub BINMODE { return shift->_object->_binmode(@_) } -sub OPEN { return shift->_object->_open(@_) } -sub FILENO { return shift->_object->_fileno(@_) } -sub SEEK { return shift->_object->_seek(@_) } -sub TELL { return shift->_object->_tell(@_) } - -1; - -__END__ -=pod - -=head1 NAME - -Data::Handle::IO - A Tie Package so Data::Handle can look and feel like a normal handle. - -=head1 VERSION - -version 0.02001002 - -=head1 DESCRIPTION - -This is an internal component used by L used as a C -target to provide accessibility to the Perl Core functions, in order to -truly emulate a file-handle. - -All the methods on this tie are essentially proxy methods that feed back to -L methods, so that all internal calls and all method calls can be coded the same way. - -For instance: C maps to being the same as if you'd done C< $fh->_getc() > - -You're not really supposed to use this package Directly though. - -=head1 AUTHOR - -Kent Fredric - -=head1 COPYRIGHT AND LICENSE - -This software is copyright (c) 2012 by Kent Fredric . - -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. - -=cut - diff --git a/blib/libdoc/Data::Handle.3 b/blib/libdoc/Data::Handle.3 deleted file mode 100644 index 0dc009d..0000000 --- a/blib/libdoc/Data::Handle.3 +++ /dev/null @@ -1,249 +0,0 @@ -.\" Automatically generated by Pod::Man 2.26 (Pod::Simple 3.22) -.\" -.\" Standard preamble: -.\" ======================================================================== -.de Sp \" Vertical space (when we can't use .PP) -.if t .sp .5v -.if n .sp -.. -.de Vb \" Begin verbatim text -.ft CW -.nf -.ne \\$1 -.. -.de Ve \" End verbatim text -.ft R -.fi -.. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' -.ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" -. ds C` "" -. ds C' "" -'br\} -.el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' -. ds C` -. ds C' -'br\} -.\" -.\" Escape single quotes in literal strings from groff's Unicode transform. -.ie \n(.g .ds Aq \(aq -.el .ds Aq ' -.\" -.\" If the F register is turned on, we'll generate index entries on stderr for -.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index -.\" entries marked with X<> in POD. Of course, you'll have to process the -.\" output yourself in some meaningful fashion. -.\" -.\" Avoid warning from groff about undefined register 'F'. -.de IX -.. -.nr rF 0 -.if \n(.g .if rF .nr rF 1 -.if (\n(rF:(\n(.g==0)) \{ -. if \nF \{ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" -.. -. if !\nF==2 \{ -. nr % 0 -. nr F 2 -. \} -. \} -.\} -.rr rF -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C -.\" ======================================================================== -.\" -.IX Title "Data::Handle 3" -.TH Data::Handle 3 "2012-08-11" "perl v5.16.0" "User Contributed Perl Documentation" -.\" For nroff, turn off justification. Always turn off hyphenation; it makes -.\" way too many mistakes in technical documents. -.if n .ad l -.nh -.SH "NAME" -Data::Handle \- A Very simple interface to the _\|_DATA_\|_ file handle. -.SH "VERSION" -.IX Header "VERSION" -version 0.02001002 -.SH "SYNOPSIS" -.IX Header "SYNOPSIS" -.Vb 1 -\& package Foo; -\& -\& sub bar { -\& my $handle = Data::Handle\->new( _\|_PACKAGE_\|_ ); -\& while (<$handle>) { -\& print $_; -\& } -\& } -\& -\& _\|_DATA_\|_ -\& Foo -.Ve -.SH "DESCRIPTION" -.IX Header "DESCRIPTION" -This Package serves as a very \fIvery\fR simple interface to a packages _\|_DATA_\|_ section. -.PP -Its primary purposes is to make successive accesses viable without needing to -scan the file manually for the _\|_DATA_\|_ marker. -.PP -It does this mostly by recording the current position of the file handle on -the first call to \f(CW\*(C`\->new\*(C'\fR, and then re-using that position on every successive \f(CW\*(C`\->new\*(C'\fR call, -which eliminates a bit of the logic for you. -.PP -At present, it only does a simple heuristic ( backtracking ) to verify the current position is \fBimmediately\fR -at the start of a _\|_DATA_\|_ section, but we may improve on this one day. -.SH "METHODS" -.IX Header "METHODS" -.SS "new" -.IX Subsection "new" -.Vb 1 -\& my $fh = Data::Handle\->new( $targetpackage ) -.Ve -.PP -Where \f(CW$targetpackage\fR is the package you want the _\|_DATA_\|_ section from. -.SH "WARNING" -.IX Header "WARNING" -At present, this module does you no favours if something else earlier has moved the file handle position past -the _\|_DATA_\|_ section, or rewound it to the start of the file. This is an understood caveat, but nothing else -seems to have a good way around this either. ( You can always rewind to the start of the file and use heuristics, but that is rather pesky ). -.PP -Hopefully, if other people \fBdo\fR decide to go moving your file pointer, they'll use this module to do it so -you your code doesn't break. -.SH "USAGE" -.IX Header "USAGE" -\&\f(CW\*(C`Data::Handle\-\*(C'\fR\fInew()\fR> returns a tied file-handle, and for all intents and purposes, it should -behave as if somebody had copied _\|_DATA_\|_ to its own file, and then done \f(CW\*(C`open $fh, \*(Aq<\*(Aq , $file\*(C'\fR -on it, for every instance of the Data::Handle. -.PP -It also inherits from IO::File, so all the methods it has that make sense to use should probably work -on this too, i.e.: -.PP -.Vb 2 -\& my $handle = Data::Handle\->new( _\|_PACKAGE_\|_ ); -\& my @lines = $handle\->getlines(); -.Ve -.PP -Also, all offsets are proxied in transit, so you can treat the file-handle as if byte 0 is the first byte of the data section. -.PP -.Vb 5 -\& my $handle = Data::Handle\->new( _\|_PACKAGE_\|_ ); -\& my @lines = $handle\->getlines(); -\& seek $handle, 0, 0; -\& local $/ = undef; -\& my $line = scalar <$handle>; # SLURPED! -.Ve -.PP -Also, the current position of each handle instance is internally tracked, so you can have as many -objects pointing to the same _\|_DATA_\|_ section but have their read mechanism uninterrupted by any others. -.PP -.Vb 2 -\& my $handlea = Data::Handle\->new( _\|_PACKAGE_\|_ ); -\& my $handleb = Data::Handle\->new( _\|_PACKAGE_\|_ ); -\& -\& seek $handlea, 10, 0; -\& seek $handleb, 15, 0; -\& -\& read $handlea, my $buf, 5; -\& -\& read $handleb, my $bufa, 1; -\& read $handleb, my $bufb, 1; -\& -\& $bufa eq $bufb; -.Ve -.PP -Don't be fooled, it does this under the covers by a lot of \f(CW\*(C`seek\*(C'\fR/\f(CW\*(C`tell\*(C'\fR magic, but they shouldn't be a problem unless you are truly anal over speed. -.SH "CREDITS" -.IX Header "CREDITS" -Thanks to LeoNerd and anno, from #perl on irc.freenode.org, -they were most helpful in helping me grok the magic of \f(CW\*(C`tie\*(C'\fR that -makes the simplicity of the interface possible. -.PP -Thanks to Chas Owens and James Wright for their efforts with trying to get something simpler with \fIfdup()\fRing the descriptor ( Sadly not working yet ). -.SH "AUTHOR" -.IX Header "AUTHOR" -Kent Fredric -.SH "COPYRIGHT AND LICENSE" -.IX Header "COPYRIGHT AND LICENSE" -This software is copyright (c) 2012 by Kent Fredric . -.PP -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. diff --git a/blib/libdoc/Data::Handle::Exception.3 b/blib/libdoc/Data::Handle::Exception.3 deleted file mode 100644 index 38b964d..0000000 --- a/blib/libdoc/Data::Handle::Exception.3 +++ /dev/null @@ -1,215 +0,0 @@ -.\" Automatically generated by Pod::Man 2.26 (Pod::Simple 3.22) -.\" -.\" Standard preamble: -.\" ======================================================================== -.de Sp \" Vertical space (when we can't use .PP) -.if t .sp .5v -.if n .sp -.. -.de Vb \" Begin verbatim text -.ft CW -.nf -.ne \\$1 -.. -.de Ve \" End verbatim text -.ft R -.fi -.. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' -.ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" -. ds C` "" -. ds C' "" -'br\} -.el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' -. ds C` -. ds C' -'br\} -.\" -.\" Escape single quotes in literal strings from groff's Unicode transform. -.ie \n(.g .ds Aq \(aq -.el .ds Aq ' -.\" -.\" If the F register is turned on, we'll generate index entries on stderr for -.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index -.\" entries marked with X<> in POD. Of course, you'll have to process the -.\" output yourself in some meaningful fashion. -.\" -.\" Avoid warning from groff about undefined register 'F'. -.de IX -.. -.nr rF 0 -.if \n(.g .if rF .nr rF 1 -.if (\n(rF:(\n(.g==0)) \{ -. if \nF \{ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" -.. -. if !\nF==2 \{ -. nr % 0 -. nr F 2 -. \} -. \} -.\} -.rr rF -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C -.\" ======================================================================== -.\" -.IX Title "Data::Handle::Exception 3" -.TH Data::Handle::Exception 3 "2012-08-11" "perl v5.16.0" "User Contributed Perl Documentation" -.\" For nroff, turn off justification. Always turn off hyphenation; it makes -.\" way too many mistakes in technical documents. -.if n .ad l -.nh -.SH "NAME" -Data::Handle::Exception \- Super\-light Weight Dependency Free Exception base. -.SH "VERSION" -.IX Header "VERSION" -version 0.02001002 -.SH "SYNOPSIS" -.IX Header "SYNOPSIS" -.Vb 4 -\& use Data::Handle::Exception; -\& Data::Handle::Exception\->generate_exception( -\& \*(AqFoo::Bar\*(Aq => \*(AqA Bar error occurred :(\*(Aq -\& )\->throw(); -.Ve -.SH "DESCRIPTION" -.IX Header "DESCRIPTION" -Data::Handle's primary goal is to be somewhat \*(L"Infrastructural\*(R" in design, much like Package::Stash is, being very low-level, and doing one thing, and doing it well, solving an issue with Perl's native implementation. -.PP -The idea is for more complex things to use this, instead of this using more complex things. -.PP -As such, a dependency on something like Moose would be overkill, possibly even detrimental to encouraging the use of this module. -.PP -So we've scrimped and gone really cheap ( for now at least ) in a few places to skip adding downstream dependencies, so this module is a slightly nasty but reasonably straight forward exception class. -.PP -The actual Exception classes don't actually have their own sources, they're automatically generated when Data::Handle::Exception is loaded. -And we have some really nice backtraces stolen from Carp's code, with some sexy coloured formatting. See L/stringify> for details. -.SH "METHODS" -.IX Header "METHODS" -.SS "new" -.IX Subsection "new" -.Vb 2 -\& my @stack; -\& my $i = Data::Handle::Exception\->new( $messageString, \e@stack ); -.Ve -.SS "throw" -.IX Subsection "throw" -.Vb 1 -\& Data::Handle::Exception\->new( $messageString, \e@stack )\->throw(); -.Ve -.SS "stringify" -.IX Subsection "stringify" -Turns this stacktrace into a string. -.PP -.Vb 1 -\& $exception\->stringify(); -\& -\& my $str = "hello " . $exception . " world"; -.Ve -.PP -If you have a coloured terminal, then Term::ANSIColor is used to highlight lines based on how likely they are to be relevant to diagnosis. -.ie n .IP "Green \- From Data::Handle and is likely to be ""safe"", its where the error is being reported from, so its useful informationally, but the problem is probably elsewhere." 4 -.el .IP "Green \- From Data::Handle and is likely to be ``safe'', its where the error is being reported from, so its useful informationally, but the problem is probably elsewhere." 4 -.IX Item "Green - From Data::Handle and is likely to be safe, its where the error is being reported from, so its useful informationally, but the problem is probably elsewhere." -.PD 0 -.IP "Yellow \- Sources we're confident its unlikely to be a source of problems, currently" 4 -.IX Item "Yellow - Sources we're confident its unlikely to be a source of problems, currently" -.RS 4 -.IP "Try::Tiny" 4 -.IX Item "Try::Tiny" -.IP "Test::Fatal" 4 -.IX Item "Test::Fatal" -.RE -.RS 4 -.RE -.IP "White \- Everything Else, the place the problem is most likely to be." 4 -.IX Item "White - Everything Else, the place the problem is most likely to be." -.PD -.SH "AUTHOR" -.IX Header "AUTHOR" -Kent Fredric -.SH "COPYRIGHT AND LICENSE" -.IX Header "COPYRIGHT AND LICENSE" -This software is copyright (c) 2012 by Kent Fredric . -.PP -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. diff --git a/blib/libdoc/Data::Handle::IO.3 b/blib/libdoc/Data::Handle::IO.3 deleted file mode 100644 index 16653ea..0000000 --- a/blib/libdoc/Data::Handle::IO.3 +++ /dev/null @@ -1,166 +0,0 @@ -.\" Automatically generated by Pod::Man 2.26 (Pod::Simple 3.22) -.\" -.\" Standard preamble: -.\" ======================================================================== -.de Sp \" Vertical space (when we can't use .PP) -.if t .sp .5v -.if n .sp -.. -.de Vb \" Begin verbatim text -.ft CW -.nf -.ne \\$1 -.. -.de Ve \" End verbatim text -.ft R -.fi -.. -.\" Set up some character translations and predefined strings. \*(-- will -.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left -.\" double quote, and \*(R" will give a right double quote. \*(C+ will -.\" give a nicer C++. Capital omega is used to do unbreakable dashes and -.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, -.\" nothing in troff, for use with C<>. -.tr \(*W- -.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' -.ie n \{\ -. ds -- \(*W- -. ds PI pi -. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch -. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch -. ds L" "" -. ds R" "" -. ds C` "" -. ds C' "" -'br\} -.el\{\ -. ds -- \|\(em\| -. ds PI \(*p -. ds L" `` -. ds R" '' -. ds C` -. ds C' -'br\} -.\" -.\" Escape single quotes in literal strings from groff's Unicode transform. -.ie \n(.g .ds Aq \(aq -.el .ds Aq ' -.\" -.\" If the F register is turned on, we'll generate index entries on stderr for -.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index -.\" entries marked with X<> in POD. Of course, you'll have to process the -.\" output yourself in some meaningful fashion. -.\" -.\" Avoid warning from groff about undefined register 'F'. -.de IX -.. -.nr rF 0 -.if \n(.g .if rF .nr rF 1 -.if (\n(rF:(\n(.g==0)) \{ -. if \nF \{ -. de IX -. tm Index:\\$1\t\\n%\t"\\$2" -.. -. if !\nF==2 \{ -. nr % 0 -. nr F 2 -. \} -. \} -.\} -.rr rF -.\" -.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). -.\" Fear. Run. Save yourself. No user-serviceable parts. -. \" fudge factors for nroff and troff -.if n \{\ -. ds #H 0 -. ds #V .8m -. ds #F .3m -. ds #[ \f1 -. ds #] \fP -.\} -.if t \{\ -. ds #H ((1u-(\\\\n(.fu%2u))*.13m) -. ds #V .6m -. ds #F 0 -. ds #[ \& -. ds #] \& -.\} -. \" simple accents for nroff and troff -.if n \{\ -. ds ' \& -. ds ` \& -. ds ^ \& -. ds , \& -. ds ~ ~ -. ds / -.\} -.if t \{\ -. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" -. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' -. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' -. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' -. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' -. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' -.\} -. \" troff and (daisy-wheel) nroff accents -.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' -.ds 8 \h'\*(#H'\(*b\h'-\*(#H' -.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] -.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' -.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' -.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] -.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] -.ds ae a\h'-(\w'a'u*4/10)'e -.ds Ae A\h'-(\w'A'u*4/10)'E -. \" corrections for vroff -.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' -.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' -. \" for low resolution devices (crt and lpr) -.if \n(.H>23 .if \n(.V>19 \ -\{\ -. ds : e -. ds 8 ss -. ds o a -. ds d- d\h'-1'\(ga -. ds D- D\h'-1'\(hy -. ds th \o'bp' -. ds Th \o'LP' -. ds ae ae -. ds Ae AE -.\} -.rm #[ #] #H #V #F C -.\" ======================================================================== -.\" -.IX Title "Data::Handle::IO 3" -.TH Data::Handle::IO 3 "2012-08-11" "perl v5.16.0" "User Contributed Perl Documentation" -.\" For nroff, turn off justification. Always turn off hyphenation; it makes -.\" way too many mistakes in technical documents. -.if n .ad l -.nh -.SH "NAME" -Data::Handle::IO \- A Tie Package so Data::Handle can look and feel like a normal handle. -.SH "VERSION" -.IX Header "VERSION" -version 0.02001002 -.SH "DESCRIPTION" -.IX Header "DESCRIPTION" -This is an internal component used by Data::Handle used as a \f(CW\*(C`tie\*(C'\fR -target to provide accessibility to the Perl Core functions, in order to -truly emulate a file-handle. -.PP -All the methods on this tie are essentially proxy methods that feed back to -Data::Handle methods, so that all internal calls and all method calls can be coded the same way. -.PP -For instance: \f(CW\*(C`getc($fh)\*(C'\fR maps to being the same as if you'd done \f(CW\*(C` $fh\-\*(C'\fR\fI_getc()\fR > -.PP -You're not really supposed to use this package Directly though. -.SH "AUTHOR" -.IX Header "AUTHOR" -Kent Fredric -.SH "COPYRIGHT AND LICENSE" -.IX Header "COPYRIGHT AND LICENSE" -This software is copyright (c) 2012 by Kent Fredric . -.PP -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. diff --git a/lib/Data/Handle.pm b/lib/Data/Handle.pm index cd439a5..ed96566 100644 --- a/lib/Data/Handle.pm +++ b/lib/Data/Handle.pm @@ -6,7 +6,7 @@ BEGIN { $Data::Handle::AUTHORITY = 'cpan:KENTNL'; } { - $Data::Handle::VERSION = '0.02001002'; + $Data::Handle::VERSION = '0.02001003'; } # ABSTRACT: A Very simple interface to the __DATA__ file handle. @@ -19,7 +19,7 @@ my %datastash; use Symbol qw( gensym ); use Scalar::Util qw( weaken ); use parent qw( IO::File ); -use Package::Stash; +use Package::Stash 0.15; # has_symbol use Carp (); use Data::Handle::Exception; use Data::Handle::IO; @@ -62,8 +62,8 @@ sub _has_data_symbol { my $rval = undef; try { my $object = Package::Stash->new($package); - return unless $object->has_package_symbol('DATA'); - my $fh = $object->get_package_symbol('DATA'); + return unless $object->has_symbol('DATA'); + my $fh = $object->get_symbol('DATA'); $rval = defined fileno *{$fh}; } catch { @@ -84,7 +84,7 @@ sub _get_data_symbol { ->throw( '_get_data_symbol was called when there is no data_symbol to get'); } - return Package::Stash->new($package)->get_package_symbol('DATA'); + return Package::Stash->new($package)->get_symbol('DATA'); } sub _get_start_offset { @@ -284,8 +284,8 @@ sub _write { 1; - __END__ + =pod =head1 NAME @@ -294,7 +294,7 @@ Data::Handle - A Very simple interface to the __DATA__ file handle. =head1 VERSION -version 0.02001002 +version 0.02001003 =head1 SYNOPSIS @@ -393,10 +393,9 @@ Kent Fredric =head1 COPYRIGHT AND LICENSE -This software is copyright (c) 2012 by Kent Fredric . +This software is copyright (c) 2013 by Kent Fredric . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut - diff --git a/lib/Data/Handle/Exception.pm b/lib/Data/Handle/Exception.pm index b2f98da..15c88cf 100644 --- a/lib/Data/Handle/Exception.pm +++ b/lib/Data/Handle/Exception.pm @@ -6,7 +6,7 @@ BEGIN { $Data::Handle::Exception::AUTHORITY = 'cpan:KENTNL'; } { - $Data::Handle::Exception::VERSION = '0.02001002'; + $Data::Handle::Exception::VERSION = '0.02001003'; } # ABSTRACT: Super-light Weight Dependency Free Exception base. @@ -149,8 +149,8 @@ for (qw( API::Invalid API::Invalid::Whence API::Invalid::Params API::NotImplemen 1; - __END__ + =pod =head1 NAME @@ -159,7 +159,7 @@ Data::Handle::Exception - Super-light Weight Dependency Free Exception base. =head1 VERSION -version 0.02001002 +version 0.02001003 =head1 SYNOPSIS @@ -226,10 +226,9 @@ Kent Fredric =head1 COPYRIGHT AND LICENSE -This software is copyright (c) 2012 by Kent Fredric . +This software is copyright (c) 2013 by Kent Fredric . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut - diff --git a/lib/Data/Handle/IO.pm b/lib/Data/Handle/IO.pm index 02ccb5c..2b51bdb 100644 --- a/lib/Data/Handle/IO.pm +++ b/lib/Data/Handle/IO.pm @@ -7,7 +7,7 @@ BEGIN { $Data::Handle::IO::AUTHORITY = 'cpan:KENTNL'; } { - $Data::Handle::IO::VERSION = '0.02001002'; + $Data::Handle::IO::VERSION = '0.02001003'; } # ABSTRACT: A Tie Package so Data::Handle can look and feel like a normal handle. @@ -44,6 +44,7 @@ sub TELL { return shift->_object->_tell(@_) } 1; __END__ + =pod =head1 NAME @@ -52,7 +53,7 @@ Data::Handle::IO - A Tie Package so Data::Handle can look and feel like a normal =head1 VERSION -version 0.02001002 +version 0.02001003 =head1 DESCRIPTION @@ -73,10 +74,9 @@ Kent Fredric =head1 COPYRIGHT AND LICENSE -This software is copyright (c) 2012 by Kent Fredric . +This software is copyright (c) 2013 by Kent Fredric . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut - diff --git a/perlcritic.rc b/perlcritic.rc index d84ac5d..9ea246f 100644 --- a/perlcritic.rc +++ b/perlcritic.rc @@ -10,7 +10,7 @@ allow_includes = 1 [CodeLayout::ProhibitTrailingWhitespace] [Documentation::PodSpelling] -stop_words = metadata KiokuDB LeoNerd anno proxied backtraces informationally stringify stacktrace +stop_words = metadata KiokuDB LeoNerd anno proxied backtraces informationally stringify stacktrace coloured favours [Subroutines::ProhibitUnusedPrivateSubroutines] private_name_regex = _(?!build_)\w diff --git a/t/00-compile.t b/t/00-compile.t index 6771e12..cc7ad81 100644 --- a/t/00-compile.t +++ b/t/00-compile.t @@ -70,4 +70,5 @@ $plan ? (plan tests => $plan) : (plan skip_all => "no tests to run"); script_compiles( $file, "$script script compiles" ); } } + } diff --git a/t/000-report-versions-tiny.t b/t/000-report-versions-tiny.t index 6777894..d309fc7 100644 --- a/t/000-report-versions-tiny.t +++ b/t/000-report-versions-tiny.t @@ -9,13 +9,12 @@ our $success = 0; END { $success && done_testing; } # List our own version used to generate this -my $v = "\nGenerated by Dist::Zilla::Plugin::ReportVersions::Tiny v1.05\n"; +my $v = "\nGenerated by Dist::Zilla::Plugin::ReportVersions::Tiny v1.08\n"; eval { # no excuses! # report our Perl details my $want = '5.008'; - my $pv = ($^V || $]); - $v .= "perl: $pv (wanted $want) on $^O from $^X\n\n"; + $v .= "perl: $] (wanted $want) on $^O from $^X\n\n"; }; defined($@) and diag("$@"); @@ -51,23 +50,30 @@ sub pmver { eval { $v .= pmver('Carp','1.22') }; eval { $v .= pmver('Data::Dumper','any version') }; -eval { $v .= pmver('Dist::Zilla::PluginBundle::Author::KENTNL','v1.5.0') }; +eval { $v .= pmver('Dist::Zilla::PluginBundle::Author::KENTNL','v1.7.4') }; eval { $v .= pmver('Dist::Zilla::PluginBundle::Author::KENTNL::Lite','v1.3.0') }; eval { $v .= pmver('File::Find','any version') }; eval { $v .= pmver('File::Temp','any version') }; eval { $v .= pmver('IO::File','any version') }; eval { $v .= pmver('IO::Handle','any version') }; -eval { $v .= pmver('Module::Build','0.4002') }; -eval { $v .= pmver('Package::Stash','any version') }; +eval { $v .= pmver('Module::Build','0.4005') }; +eval { $v .= pmver('Package::Stash','0.15') }; +eval { $v .= pmver('Pod::Coverage::TrustPod','any version') }; eval { $v .= pmver('Scalar::Util','any version') }; eval { $v .= pmver('Symbol','any version') }; eval { $v .= pmver('Term::ANSIColor','any version') }; +eval { $v .= pmver('Test::CPAN::Changes','0.19') }; +eval { $v .= pmver('Test::CPAN::Meta','any version') }; eval { $v .= pmver('Test::Fatal','any version') }; eval { $v .= pmver('Test::More','0.98') }; +eval { $v .= pmver('Test::Pod','1.41') }; +eval { $v .= pmver('Test::Pod::Coverage','1.08') }; eval { $v .= pmver('Try::Tiny','any version') }; +eval { $v .= pmver('lib','any version') }; eval { $v .= pmver('overload','any version') }; eval { $v .= pmver('parent','any version') }; eval { $v .= pmver('strict','any version') }; +eval { $v .= pmver('version','0.9901') }; eval { $v .= pmver('warnings','any version') }; diff --git a/xt/release/cpan-changes.t b/xt/release/cpan-changes.t index ea9da27..8e6e413 100644 --- a/xt/release/cpan-changes.t +++ b/xt/release/cpan-changes.t @@ -1,7 +1,11 @@ #!perl -use Test::More; -eval 'use Test::CPAN::Changes'; -plan skip_all => 'Test::CPAN::Changes required for this test' if $@; -changes_ok(); +use strict; +use warnings; + +use Test::More 0.96 tests => 2; +use_ok('Test::CPAN::Changes'); +subtest 'changes_ok' => sub { + changes_file_ok('Changes'); +}; done_testing();