1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
name = Config-Model
author = Dominique Dumont
license = LGPL_2_1
copyright_holder = Dominique Dumont
copyright_year = 2005-2022
[MetaResources]
homepage = https://github.com/dod38fr/config-model/wiki
bugtracker.web = https://github.com/dod38fr/config-model/issues
bugtracker.mailto = ddumont at cpan.org
repository.url = git://github.com/dod38fr/config-model.git
repository.web = http://github.com/dod38fr/config-model
repository.type = git
[Prereqs]
perl = v5.20
parent = 0
[NextRelease]
format = %v%T %{yyyy-MM-dd}d
[MetaJSON]
[AutoPrereqs]
skip = ^Fuse
skip = Term::ReadLine
skip = ExtUtils::testlib
skip = Exporter
[Prereqs / RuntimeRequires]
; traits are not found by Perl::PrereqScanner
MouseX::NativeTraits = 0
[Prereqs / RuntimeRecommends]
Fuse = 0
Text::Levenshtein::Damerau = 0
; Making Term::ReadLine optional should
; fix Config::Model issues on ActiveState/Windows.
; If this raises too many problems, Config::Model::TermUI will be moved
; in its own distribution.
; term_ui.t skips tests when Term::ReadLine is not found
Term::ReadLine = 0
[Prereqs / BuildRequires]
; not detected by dzil authordep.
; See Dist::Zilla::App::Command::authordeps man page
; authordep Pod::Weaver::Section::Support
; authordep Pod::Elemental::Transformer::List
[@Filter]
-bundle = @Basic
-remove = Readme
-remove = MakeMaker
[ModuleBuild::Custom]
mb_version = 0.34
; avoid messing with generated pod files. Otherwise pod re-generated at packaging
; time (Debian) are different (because Dist::Zilla is not used at that time)
; See http://blogs.perl.org/users/polettix/2011/11/distzilla-podweaver-and-bin.html
; for details on this configuration magic
[FileFinder::ByName / OnlyPmFiles]
dir = lib
match = \.pm$
[FileFinder::ByName / noModelFiles]
dir = lib
skip = /models/
match = \.p(m|od)$
[PkgVersion]
use_package = 1
finder = OnlyPmFiles
[PodWeaver]
finder = :ExecFiles
finder = noModelFiles
[Prepender]
copyright=1
[Run::BeforeBuild]
;-- allow dzil listdeps when deps are missing
fatal_errors = 0
;-- Generate pod doc from model
run = perl -I lib -MConfig::Model::Utils::GenClassPod -e 'gen_class_pod();'
[Run::BeforeRelease]
run = perl -I lib -MConfig::Model::Utils::GenClassPod -e 'gen_class_pod();'
|