| 12
 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
 
 | Source: libdata-stag-perl
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
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl,
                     libio-string-perl,
                     libxml-perl,
                     rename
Standards-Version: 3.9.8
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: http://stag.sourceforge.net/
Package: libdata-stag-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         libio-string-perl
Recommends: perl-tk,
            libgd-gd2-perl | libgd-gd2-noxpm-perl,
            libxml-libxslt-perl,
            libmldbm-perl,
            libgraph-perl,
            libxml-perl
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).
 |