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
|
Source: libyaml-pp-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libencode-perl <!nocheck>,
libscalar-list-utils-perl <!nocheck>,
libtest-deep-perl <!nocheck>,
libtest-simple-perl <!nocheck>,
libtest-warn-perl <!nocheck>,
libtie-ixhash-perl <!nocheck>,
perl
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libyaml-pp-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libyaml-pp-perl.git
Homepage: https://metacpan.org/release/YAML-PP
Rules-Requires-Root: no
Package: libyaml-pp-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libencode-perl,
libscalar-list-utils-perl
Recommends: libtie-ixhash-perl
Description: pure-perl YAML framework
YAML::PP is a modern, modular YAML processor.
.
It aims to support YAML 1.2 and YAML 1.1.
.
YAML is a serialization language. The YAML input is called "YAML Stream". A
stream consists of one or more "Documents", separated by a line with a
document start marker '---'. A document optionally ends with the document end
marker '...'.
.
This allows one to process of continuous streams additionally to a fixed
input file or string.
.
The YAML::PP frontend will currently load all documents, and return only the
last if called with scalar context.
.
The YAML backend is implemented in a modular way that allows one to add
custom handling of YAML tags, perl objects and data types. The inner API is
not yet stable.
|