~ubuntu-branches/debian/sid/html5-parser/sid

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2017-08-13 08:54:37 UTC
  • Revision ID: package-import@ubuntu.com-20170813085437-ea6np3t8l9l6u1k5
Tags: 0.4.3-1
First release (Closes: #870077)
thanks to Steve Langasek for python3 support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: html5-parser
 
2
Section: python
 
3
Priority: optional
 
4
Maintainer: Norbert Preining <preining@debian.org>
 
5
Build-Depends: debhelper (>= 10),
 
6
               dh-python,
 
7
               python-all-dev,
 
8
               python3-all-dev,
 
9
               python-setuptools,
 
10
               python3-setuptools,
 
11
               libxml2-dev,
 
12
               python3-lxml,
 
13
               python-pkgconfig,
 
14
               python3-pkgconfig
 
15
Standards-Version: 4.0.0
 
16
X-Python-Version: >= 2.6
 
17
Homepage: https://github.com/kovidgoyal/html5-parser
 
18
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/html5-parser.git
 
19
Vcs-Git: git://anonscm.debian.org/collab-maint/html5-parser.git
 
20
 
 
21
Package: python-html5-parser
 
22
Architecture: any
 
23
Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}
 
24
Description: fast, standards compliant, C based, HTML 5 parser for python
 
25
 A fast implementation of the HTML 5 parsing spec for Python. Parsing is
 
26
 done in C using a variant of the gumbo parser. The gumbo parse tree is
 
27
 then transformed into an lxml tree, also in C, yielding parse times that
 
28
 can be a thirtieth of the html5lib parse times. That is a speedup of 30x.
 
29
 This differs, for instance, from the gumbo python bindings, where the
 
30
 initial parsing is done in C but the transformation into the final
 
31
 tree is done in python.
 
32
 
 
33
Package: python3-html5-parser
 
34
Architecture: any
 
35
Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
 
36
Description: fast, standards compliant, C based, HTML 5 parser for python
 
37
 A fast implementation of the HTML 5 parsing spec for Python. Parsing is
 
38
 done in C using a variant of the gumbo parser. The gumbo parse tree is
 
39
 then transformed into an lxml tree, also in C, yielding parse times that
 
40
 can be a thirtieth of the html5lib parse times. That is a speedup of 30x.
 
41
 This differs, for instance, from the gumbo python bindings, where the
 
42
 initial parsing is done in C but the transformation into the final
 
43
 tree is done in python.