Kwalitee Issues

has_meta_yml

Add a META.yml to the distribution. Your buildtool should be able to autogenerate it.

no_symlinks

Remove the symlinks from the distribution.

no_generated_files

Remove the offending files/directories!

Error: Makefile, pm_to_blib

portable_filenames

Rename those files with alphanumerical characters, or maybe remove them because in many cases they are automatically generated for local installation.

Error:

  • blib/man3/sBNC::User::Summary.3pm

no_mymeta_files

Update MANIFEST.SKIP to exclude MYMETA files. If you are lazy, add "#!install_default" in your MANIFEST.SKIP and update your ExtUtils::Manifest if necessary, then some of the most common files will be excluded.

manifest_matches_dist

Run a proper command ("make manifest" or "./Build manifest", maybe with a force option), or use a distribution builder to generate the MANIFEST. Or update MANIFEST manually.

Error:

  • MANIFEST (9) does not match dist (90):
  • Missing in MANIFEST: .git/HEAD, .git/config, .git/description, .git/hooks/applypatch-msg.sample, .git/hooks/commit-msg.sample, .git/hooks/post-update.sample, .git/hooks/pre-applypatch.sample, .git/hooks/pre-commit.sample, .git/hooks/pre-push.sample, .git/hooks/pre-rebase.sample, .git/hooks/prepare-commit-msg.sample, .git/hooks/update.sample, .git/index, .git/info/exclude, .git/logs/HEAD, .git/logs/refs/heads/master, .git/logs/refs/remotes/origin/HEAD, .git/objects/06/f67efc0a16fcbed959d004e28d1e9270057abf, .git/objects/08/tmp_obj_Y4LiT4, .git/objects/11/a5253b2f051a7bb75ea3ad7a5fb4ea0cfd5219, .git/objects/12/240d30b6b33620caa9d695086170e459109fa4, .git/objects/19/tmp_obj_GlV8E9, .git/objects/1e/tmp_obj_Mq2xi2, .git/objects/3d/tmp_obj_8fnwTb, .git/objects/40/76ba5e2b193386c75092c643440d0d83853ff4, .git/objects/41/tmp_obj_sqZrXZ, .git/objects/42/tmp_obj_Onokt8, .git/objects/45/tmp_obj_itNxQe, .git/objects/4a/tmp_obj_SX1v5j, .git/objects/4d/tmp_obj_gWCoC0, .git/objects/53/tmp_obj_iZveLk, .git/objects/57/tmp_obj_0LZomf, .git/objects/64/07b02f46add73485a793acd92d1a3a17400167, .git/objects/65/300299023bf3d19bc7bbccc183f471ffb5da0d, .git/objects/6c/tmp_obj_kONsmh, .git/objects/6d/tmp_obj_SF6Mo7, .git/objects/74/tmp_obj_UM7Nn4, .git/objects/7f/tmp_obj_a9imo0, .git/objects/86/tmp_obj_ZrE2Fb, .git/objects/8a/tmp_obj_8tOQ0g, .git/objects/8e/tmp_obj_uLhGO2, .git/objects/8f/06f666d416a1feaa9e411f68014bce43d02f4b, .git/objects/90/tmp_obj_ky3kU7, .git/objects/96/tmp_obj_qlpyxa, .git/objects/97/tmp_obj_mFccEg, .git/objects/ae/tmp_obj_weiVdc, .git/objects/b4/tmp_obj_mXPPcg, .git/objects/ba/303f0492a3e342601c6a648bfa9b4e6f211ffe, .git/objects/bc/b456db275d40bc7b501b65de8c21b477ae38ab, .git/objects/c9/a7e0cd18d9d63b23c4814af061eb1a9799407f, .git/objects/ca/40e33f4ce23a97bf31f647f9210d9cbc34712b, .git/objects/d4/tmp_obj_u3M9ji, .git/objects/da/tmp_obj_Ekdyp3, .git/objects/db/tmp_obj_oQ3uzd, .git/objects/e8/tmp_obj_8hIQY7, .git/objects/ee/tmp_obj_Am3HRh, .git/objects/f7/49b402a96611221aacdfa5a26e99e3814ab28c, .git/objects/fb/b8cc83d9086042776e92fb4e3b5eccd10170b5, .git/objects/fc/0aa46ecaea830337b3cb08fcd5c87d7cc4d791, .git/objects/fc/tmp_obj_2iUnBe, .git/packed-refs, .git/refs/heads/master, .git/refs/remotes/origin/HEAD, .gitignore, MYMETA.json, MYMETA.yml, Makefile, README.md, blib/arch/.exists, blib/arch/auto/sBNC/User/Summary/.exists, blib/bin/.exists, blib/lib/auto/sBNC/User/Summary/.exists, blib/lib/sBNC/User/.exists, blib/lib/sBNC/User/Summary.pm, blib/man1/.exists, blib/man3/.exists, blib/man3/sBNC::User::Summary.3pm, blib/script/.exists, ignore.txt, pm_to_blib, t/boilerplate.t

meta_yml_declares_perl_version

If you are using Build.PL define the {requires}{perl} = VERSION field. If you are using MakeMaker (Makefile.PL) you should upgrade ExtUtils::MakeMaker to 6.48 and use MIN_PERL_VERSION parameter. Perl::MinimumVersion can help you determine which version of Perl your module needs.

has_meta_json

Add a META.json to the distribution. Your buildtool should be able to autogenerate it.

no_dot_dirs

Fix MANIFEST (or MANIFEST.SKIP) to exclude dot directories from a distribution. Use an appropriate tool and avoid archiving your working directory by hand. If you switch your version control system, remove old VCS directories after you migrate.

Error: .git

proper_libs

Move your *.pm files in a directory named 'lib'. The directory structure should look like 'lib/Your/Module.pm' for a module named 'Your::Module'. If you need to provide additional files, e.g. for testing, that should not be considered for Kwalitee, then you should look at the 'provides' map in META.yml to limit the files scanned; or use the 'no_index' map to exclude parts of the distribution.

Error: blib/lib/sBNC/User/Summary.pm

has_known_license_in_source_file

Add =head1 LICENSE and/or the proper text of the well-known license to the main module in your code.

meta_yml_has_provides

Add all modules contained in this distribution to the META.yml field 'provides'. Module::Build or Dist::Zilla::Plugin::MetaProvides do this automatically for you.

meta_yml_has_repository_resource

Add a 'repository' resource to the META.yml via 'meta_add' accessor (for Module::Build) or META_ADD parameter (for ExtUtils::MakeMaker).

has_separate_license_file

This is not a critical issue. Currently mainly informative for the CPANTS authors. It might be removed later.

Modules

Name Abstract Version View
sBNC::User::Summary Translate sBNC user files into usable objects. 1.01 metacpan

Other Files

Changes metacpan
MANIFEST metacpan
Makefile.PL metacpan
README metacpan
README.md metacpan