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
|
Source: libconfig-any-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
Ansgar Burchardt <ansgar@debian.org>,
gregor herrmann <gregoa@debian.org>,
Salvatore Bonaccorso <carnil@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libconfig-general-perl <!nocheck>,
libconfig-tiny-perl <!nocheck>,
libcpanel-json-xs-perl <!nocheck>,
libjson-maybexs-perl <!nocheck>,
libjson-perl <!nocheck>,
libjson-pp-perl <!nocheck>,
libjson-xs-perl <!nocheck>,
libmodule-pluggable-perl <!nocheck>,
libtest-exception-perl <!nocheck>,
libxml-simple-perl <!nocheck>,
libyaml-libyaml-perl <!nocheck>,
libyaml-perl <!nocheck>,
libyaml-syck-perl <!nocheck>,
perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libconfig-any-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libconfig-any-perl.git
Homepage: https://metacpan.org/release/Config-Any
Rules-Requires-Root: no
Package: libconfig-any-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libmodule-pluggable-perl
Recommends: libconfig-general-perl,
libconfig-tiny-perl,
libcpanel-json-xs-perl | libjson-maybexs-perl | libjson-xs-perl | libjson-pp-perl | libjson-perl,
libxml-simple-perl,
libyaml-libyaml-perl | libyaml-syck-perl | libyaml-perl
Description: module to load configuration from different file formats
Config::Any provides a facility for Perl applications and libraries to load
configuration data from multiple different file formats. It supports XML,
YAML, JSON, Apache-style configuration, Windows INI files, and even Perl
code.
.
The rationale for this module is as follows: Perl programs are deployed on
many different platforms and integrated with many different systems. Systems
administrators and end users may prefer different configuration formats than
the developers. The flexibility inherent in a multiple format configuration
loader allows different users to make different choices, without generating
extra work for the developers. As a developer you only need to learn a single
interface to be able to use the power of different configuration formats.
.
Modules/packages (in Recommends) needed for specific file formats:
.
* ".cnf", ".conf" files: Config::General / libconfig-general-perl
* ".ini" files: Config::Tiny / libconfig-tiny-perl
* ".json", ".jsn" files: Cpanel::JSON::XS, JSON::MaybeXS, JSON::DWIW,
JSON::XS, JSON::Syck, JSON::PP, JSON / libcpanel-json-xs-perl or
libjson-maybexs-perl or libjson-xs-perl or libjson-pp-perl (also provided
by perl) or libjson-perl
* ".pl", ".perl" files: no additional requirements
* ".xml" files: XML::Simple / libxml-simple-perl
* ".yml", ".yaml" files: YAML::XS, YAML::Syck, YAML / libyaml-libyaml-perl
or libyaml-syck-perl or libyaml-perl
|