File: control

package info (click to toggle)
libexcel-valuereader-xlsx-perl 1.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 244 kB
  • sloc: perl: 810; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 2,165 bytes parent folder | download
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
Source: libexcel-valuereader-xlsx-perl
Standards-Version: 4.7.2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
 gregor herrmann <gregoa@debian.org>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Build-Depends:
 debhelper-compat (= 13),
 libmodule-build-perl,
 perl,
Build-Depends-Indep:
 libarchive-zip-perl <!nocheck>,
 libclone-perl <!nocheck>,
 libdate-calc-perl <!nocheck>,
 libiterator-simple-perl <!nocheck>,
 liblist-moreutils-perl <!nocheck>,
 libmodule-load-conditional-perl <!nocheck>,
 libmoose-perl <!nocheck>,
 libmoosex-strictconstructor-perl <!nocheck>,
 libscalar-list-utils-perl <!nocheck>,
 libtest-simple-perl (>= 1.302195) <!nocheck>,
 libxml-libxml-perl <!nocheck>,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libexcel-valuereader-xlsx-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libexcel-valuereader-xlsx-perl.git
Homepage: https://metacpan.org/release/Excel-ValueReader-XLSX

Package: libexcel-valuereader-xlsx-perl
Architecture: all
Depends:
 ${misc:Depends},
 ${perl:Depends},
 libarchive-zip-perl,
 libdate-calc-perl,
 libiterator-simple-perl,
 libmoose-perl,
 libmoosex-strictconstructor-perl,
 libscalar-list-utils-perl,
Recommends:
 libxml-libxml-perl,
Description: module for extracting values from Excel workbooks in XLSX format
 Excel::ValueReader::XLSX reads the contents of an Excel file in XLSX format.
 Unlike other modules like Spreadsheet::ParseXLSX or Spreadsheet::XLSX,
 there is no support for reading formulas, formats or other Excel internal
 information; all you get are plain values -- but you get them much
 faster!
 .
 Excel::ValueReader::XLSX has two possible implementation backends for parsing
 XLSX files: Excel::ValueReader::XLSX::Backend::Regex, based on regular
 expressions, or Excel::ValueReader::XLSX::Backend::LibXML, based on the
 libxml2 library.
 .
 The Regexp backend uses regular expressions to parse the XML content. The
 libxml2 backend uses XML::LibXML::Reader to parse the XML content. It is
 probably safer but about three times slower than the Regex backend (but still
 much faster than Spreadsheet::ParseXLSX).