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: libdata-stag-perl
Standards-Version: 4.7.3
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
Charles Plessy <plessy@debian.org>,
Damyan Ivanov <dmn@debian.org>,
Florian Schlichting <fsfs@debian.org>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Build-Depends:
debhelper-compat (= 13),
Build-Depends-Indep:
libio-string-perl <!nocheck>,
libxml-perl <!nocheck>,
perl,
rename,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdata-stag-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdata-stag-perl.git
Homepage: https://stag.sourceforge.net/
Package: libdata-stag-perl
Architecture: all
Depends:
${misc:Depends},
${perl:Depends},
libio-string-perl,
Recommends:
libgd-perl,
libgraph-perl,
libmldbm-perl,
libxml-libxslt-perl,
libxml-perl,
perl-tk,
Description: module to manipulate Structured Tags datastructures
Data::Stag is for manipulating data as hierarchical tag/value
pairs (Structured TAGs or Simple Tree AGgreggates). These
datastructures can be represented as nested arrays, which have the
advantage of being native to perl. A simple example is shown below:
.
[ person=> [ [ family_name => $family_name ],
[ given_name => $given_name ],
[ phone_no => $phone_no ] ] ],
.
Data::Stag uses a subset of XML for import and export. This
means the module can also be used as a general XML parser/writer (with
certain caveats).
|