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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
Source: libdist-zilla-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
Ansgar Burchardt <ansgar@debian.org>,
Dominique Dumont <dod@debian.org>,
Axel Beckert <abe@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-sequence-bash-completion
Build-Depends-Indep: libapp-cmd-perl <!nocheck>,
libautobox-perl <!nocheck>,
libconfig-ini-perl <!nocheck>,
libconfig-mvp-perl <!nocheck>,
libconfig-mvp-reader-ini-perl <!nocheck>,
libcpan-meta-check-perl <!nocheck>,
libcpan-uploader-perl <!nocheck>,
libdata-section-perl <!nocheck>,
libdatetime-perl <!nocheck>,
libfile-copy-recursive-perl <!nocheck>,
libfile-find-rule-perl <!nocheck>,
libfile-pushd-perl <!nocheck>,
libfile-sharedir-install-perl,
libfile-sharedir-perl,
libhash-merge-simple-perl <!nocheck>,
libio-tiecombine-perl <!nocheck>,
libjson-perl <!nocheck>,
liblog-dispatchouli-perl <!nocheck>,
libmixin-linewise-perl <!nocheck>,
libmodule-runtime-perl <!nocheck>,
libmoose-autobox-perl <!nocheck>,
libmoose-perl <!nocheck>,
libmoosex-lazyrequire-perl <!nocheck>,
libmoosex-role-parameterized-perl <!nocheck>,
libmoosex-setonce-perl <!nocheck>,
libmoosex-types-perl <!nocheck>,
libmoosex-types-perl-perl <!nocheck>,
libnamespace-autoclean-perl <!nocheck>,
libpath-tiny-perl <!nocheck>,
libperl-prereqscanner-perl <!nocheck>,
libperl-version-perl <!nocheck>,
libpod-simple-perl <!nocheck>,
libppi-perl <!nocheck>,
libscalar-list-utils-perl <!nocheck>,
libsoftware-license-perl (>= 0.104001) <!nocheck>,
libstring-formatter-perl <!nocheck>,
libstring-rewriteprefix-perl <!nocheck>,
libsub-exporter-formethods-perl <!nocheck>,
libterm-encoding-perl <!nocheck>,
libterm-readkey-perl <!nocheck>,
libterm-readline-gnu-perl <!nocheck>,
libterm-ui-perl <!nocheck>,
libtest-deep-perl <!nocheck>,
libtest-failwarnings-perl <!nocheck>,
libtest-fatal-perl <!nocheck>,
libtest-file-sharedir-perl <!nocheck>,
libtext-glob-perl <!nocheck>,
libtext-template-perl <!nocheck>,
libtry-tiny-perl <!nocheck>,
libyaml-tiny-perl <!nocheck>,
perl (>= 5.31.8)
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-perl.git
Homepage: https://metacpan.org/release/Dist-Zilla
Rules-Requires-Root: no
Package: libdist-zilla-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libapp-cmd-perl,
libautobox-perl,
libconfig-ini-perl,
libconfig-mvp-perl,
libconfig-mvp-reader-ini-perl,
libcpan-uploader-perl,
libdata-section-perl,
libdatetime-perl,
libfile-copy-recursive-perl,
libfile-find-rule-perl,
libfile-pushd-perl,
libfile-sharedir-install-perl,
libfile-sharedir-perl,
libhash-merge-simple-perl,
libio-tiecombine-perl,
libjson-perl,
liblog-dispatchouli-perl,
libmixin-linewise-perl,
libmodule-runtime-perl,
libmoose-autobox-perl,
libmoose-perl,
libmoosex-lazyrequire-perl,
libmoosex-role-parameterized-perl,
libmoosex-setonce-perl,
libmoosex-types-perl,
libmoosex-types-perl-perl,
libnamespace-autoclean-perl,
libpath-tiny-perl,
libperl-prereqscanner-perl,
libperl-version-perl,
libpod-simple-perl,
libppi-perl,
libscalar-list-utils-perl,
libsoftware-license-perl (>= 0.104001),
libstring-formatter-perl,
libstring-rewriteprefix-perl,
libsub-exporter-formethods-perl,
libterm-encoding-perl,
libterm-readkey-perl,
libtest-deep-perl,
libtext-glob-perl,
libtext-template-perl,
libtry-tiny-perl,
libyaml-tiny-perl,
perl (>= 5.31.8)
Recommends: bash-completion,
cpanminus,
libarchive-tar-wrapper-perl,
libdata-optlist-perl,
libpod-coverage-trustpod-perl,
libterm-readline-gnu-perl,
libterm-ui-perl,
libtest-cpan-meta-perl,
libtest-pod-coverage-perl,
libtest-pod-perl
Description: Perl distribution builder
Dist::Zilla builds distributions of code to be uploaded to the CPAN. In this
respect, it is like ExtUtils::MakeMaker, Module::Build, or Module::Install.
Unlike those tools, however, it is not also a system for installing code that
has been downloaded from the CPAN. Since it's only run by authors, and is
meant to be run on a repository checkout rather than on published, released
code, it can do much more than those tools, and is free to make much more
ludicrous demands in terms of prerequisites.
.
It's aim is to generate every file which is needed by a CPAN
distribution, but usually generated and hence commonly not checked in
into a VCS repository. For that it reads a file called dist.ini and
gathers data from other files as instructured in that file.
|