~ubuntu-branches/ubuntu/trusty/libxml-bare-perl/trusty

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur, Jonathan Yu, Ryan Niebur, Nathan Handler
  • Date: 2009-08-12 09:42:24 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090812094224-bo487a59xgom7d8l
Tags: 0.45-1
[ Jonathan Yu ]
* New upstream release
  + UTF-8 handling fixed
  + Self-closing nodes are now printed by the XML function
* Added myself to Uploaders and Copyright
* Use new debhelper 7 short rules format
* Standards-Version 3.8.2 (no changes)
* Rewrote control description
* New upstream release
  + Prevent XML corruption during XML saving
  + Fix strange compilation problems by removing line number defines

[ Ryan Niebur ]
* add debian/clean
* Add myself to Uploaders

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: libxml-bare-perl
2
2
Section: perl
3
3
Priority: optional
4
 
Build-Depends: debhelper (>= 7), perl (>= 5.6.0-12), libtest-pod-perl, libtest-pod-coverage-perl
 
4
Build-Depends: perl (>= 5.6.0-12), debhelper (>= 7), libtest-pod-coverage-perl,
 
5
 libtest-pod-perl
5
6
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
6
 
Uploaders: Antonio Radici <antonio@dyne.org>
7
 
Standards-Version: 3.8.1
 
7
Uploaders: Antonio Radici <antonio@dyne.org>, Jonathan Yu <frequency@cpan.org>,
 
8
 Ryan Niebur <ryanryan52@gmail.com>
 
9
Standards-Version: 3.8.2
8
10
Homepage: http://search.cpan.org/dist/XML-Bare/
9
11
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libxml-bare-perl/
10
12
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libxml-bare-perl/
12
14
Package: libxml-bare-perl
13
15
Architecture: any
14
16
Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}
15
 
Description: minimal XML parser that uses C to generate a folded perl hash
16
 
 XML::Bare provides a simple API to read and write XML files, it also
17
 
 provides a function to validate the XML schema.
18
 
 .
19
 
 The parser itself is a simple state engine that is less than 500 lines of C.
20
 
 .
21
 
 In comparison to other available perl xml parsers that create trees,
22
 
 XML::Bare is extremely fast; benchmark shows that it can even be one or two
23
 
 order of magnitude faster than similar modules.
 
17
Description: Perl module to parse XML into a Perl hash
 
18
 XML::Bare provides a simple API to read and write XML files, it also provides
 
19
 a function to validate the XML schema. The parser itself is a simple state
 
20
 engine that is less than 500 lines of C.
 
21
 .
 
22
 In comparison to other available Perl XML parsers that create trees, XML::Bare
 
23
 is extremely fast; benchmarking shows that it can even be one or two orders of
 
24
 magnitude faster than similar modules.