control 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Source: http-parser
  2. Priority: extra
  3. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  4. Build-Depends: debhelper (>= 9), dh-exec (>=0.3), dpkg-dev (>= 1.16.1~)
  5. Standards-Version: 3.9.4
  6. Section: libs
  7. Homepage: https://github.com/joyent/http-parser
  8. Vcs-Git: git://anonscm.debian.org/collab-maint/http-parser.git
  9. Vcs-Browser: http://anonscm.debian.org/gitweb?p=collab-maint/http-parser.git;a=summary
  10. Package: libhttp-parser-dev
  11. Section: libdevel
  12. Architecture: any
  13. Depends: libhttp-parser2.1 (= ${binary:Version}), ${misc:Depends}
  14. Description: parser for HTTP messages: development libraries and header files
  15. It parses both requests and responses. The parser is designed to be used in
  16. performance HTTP applications. It does not make any syscalls nor allocations,
  17. it does not buffer data, it can be interrupted at anytime. Depending on your
  18. architecture, it only requires about 40 bytes of data per message stream (in
  19. a web server that is per connection).
  20. .
  21. This package contains development libraries and header files.
  22. Package: libhttp-parser2.1
  23. Architecture: any
  24. Multi-Arch: same
  25. Pre-Depends: ${misc:Pre-Depends}
  26. Depends: ${shlibs:Depends}, ${misc:Depends}
  27. Description: parser for HTTP messages written in C
  28. It parses both requests and responses. The parser is designed to be used in
  29. performance HTTP applications. It does not make any syscalls nor allocations,
  30. it does not buffer data, it can be interrupted at anytime. Depending on your
  31. architecture, it only requires about 40 bytes of data per message stream (in
  32. a web server that is per connection).
  33. Package: libhttp-parser2.1-dbg
  34. Architecture: any
  35. Multi-Arch: same
  36. Section: debug
  37. Depends:
  38. libhttp-parser2.1 (= ${binary:Version}),
  39. ${misc:Depends}
  40. Description: debugging symbols for libhttp-parser2.1
  41. It parses both requests and responses. The parser is designed to be used in
  42. performance HTTP applications. It does not make any syscalls nor allocations,
  43. it does not buffer data, it can be interrupted at anytime. Depending on your
  44. architecture, it only requires about 40 bytes of data per message stream (in
  45. a web server that is per connection).
  46. .
  47. This package contains the debugging symbols for libhttp-parser2.1.