control 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. Source: python-coverage
  2. Maintainer: Ben Finney <bignose@debian.org>
  3. Section: python
  4. Priority: optional
  5. Build-Depends:
  6. dh-python,
  7. python3-sphinx,
  8. python3-sphinx-rtd-theme,
  9. python3-sphinxcontrib.spelling,
  10. python-docutils,
  11. python-setuptools,
  12. python-all-dev (>= 2.6.6-3~),
  13. python (>= 2.6.6-3~),
  14. python3-setuptools,
  15. python3-all-dev,
  16. python3,
  17. debhelper (>= 9~)
  18. Standards-Version: 3.9.8
  19. Homepage: http://nedbatchelder.com/code/coverage/
  20. VCS-Git: https://notabug.org/bignose/debian_python-coverage.git
  21. VCS-Browser: https://notabug.org/bignose/debian_python-coverage/
  22. X-Python-Version: >= 2.6
  23. X-Python3-Version: >= 3.3
  24. Package: python3-coverage
  25. Architecture: any
  26. Depends:
  27. python3-pkg-resources,
  28. ${python3:Depends},
  29. ${shlibs:Depends},
  30. ${misc:Depends}
  31. Recommends:
  32. libjs-jquery-hotkeys,
  33. libjs-jquery-isonscreen,
  34. libjs-jquery-tablesorter,
  35. libjs-jquery-throttle-debounce,
  36. libjs-jquery
  37. Suggests:
  38. python-coverage-doc
  39. Description: code coverage tool for Python 3
  40. Coverage.py is a tool for measuring code coverage of Python programs.
  41. It monitors your program, noting which parts of the code have been
  42. executed, then analyzes the source to identify code that could have
  43. been executed but was not.
  44. .
  45. Coverage measurement is typically used to gauge the effectiveness of
  46. tests. It can show which parts of your code are being exercised by
  47. tests, and which are not.
  48. .
  49. This package installs the Python version 3 ‘coverage’ library, and the
  50. ‘python3-coverage’ program to perform and report coverage tests.
  51. Package: python-coverage
  52. Architecture: any
  53. Depends:
  54. python-pkg-resources,
  55. ${python:Depends},
  56. ${shlibs:Depends},
  57. ${misc:Depends}
  58. Recommends:
  59. libjs-jquery-hotkeys,
  60. libjs-jquery-isonscreen,
  61. libjs-jquery-tablesorter,
  62. libjs-jquery-throttle-debounce,
  63. libjs-jquery
  64. Suggests:
  65. python-coverage-doc
  66. Description: code coverage tool for Python 2
  67. Coverage.py is a tool for measuring code coverage of Python programs.
  68. It monitors your program, noting which parts of the code have been
  69. executed, then analyzes the source to identify code that could have
  70. been executed but was not.
  71. .
  72. Coverage measurement is typically used to gauge the effectiveness of
  73. tests. It can show which parts of your code are being exercised by
  74. tests, and which are not.
  75. .
  76. This package installs the Python version 2 ‘coverage’ library, and the
  77. ‘python2-coverage’ program to perform and report coverage tests.
  78. Package: python-coverage-doc
  79. Architecture: all
  80. Section: doc
  81. Depends:
  82. ${sphinxdoc:Depends},
  83. ${misc:Depends}
  84. Description: code coverage tool for Python — documentation
  85. Coverage.py is a tool for measuring code coverage of Python programs.
  86. It monitors your program, noting which parts of the code have been
  87. executed, then analyzes the source to identify code that could have
  88. been executed but was not.
  89. .
  90. This package installs the HTML documentation for Coverage.py.