control 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Source: file
  2. Section: utils
  3. Priority: standard
  4. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  5. Build-Depends: debhelper (>= 9.20141010~),
  6. dh-autoreconf,
  7. dh-python,
  8. python-all,
  9. python3-all,
  10. zlib1g-dev,
  11. Standards-Version: 3.9.5
  12. Homepage: http://www.darwinsys.com/file/
  13. Package: file
  14. Architecture: any
  15. Multi-Arch: foreign
  16. Depends: ${misc:Depends}, ${shlibs:Depends},
  17. libmagic1 (= ${binary:Version}),
  18. Description: Determines file type using "magic" numbers
  19. File tests each argument in an attempt to classify it. There are
  20. three sets of tests, performed in this order: filesystem tests,
  21. magic number tests, and language tests. The first test that
  22. succeeds causes the file type to be printed.
  23. Package: file-dbg
  24. Section: debug
  25. Priority: extra
  26. Architecture: any
  27. Multi-Arch: foreign
  28. Depends: ${misc:Depends}, ${shlibs:Depends},
  29. libmagic1 (= ${binary:Version}),
  30. Description: Determines file type using "magic" numbers (debug)
  31. File tests each argument in an attempt to classify it. There are
  32. three sets of tests, performed in this order: filesystem tests,
  33. magic number tests, and language tests. The first test that
  34. succeeds causes the file type to be printed.
  35. .
  36. This package contains the debugging symbols.
  37. Package: libmagic1
  38. Section: libs
  39. Architecture: any
  40. Multi-Arch: same
  41. Pre-Depends: ${misc:Pre-Depends}
  42. Depends: ${misc:Depends}, ${shlibs:Depends},
  43. Suggests: file
  44. Description: File type determination library using "magic" numbers
  45. This library can be used to classify files according to magic
  46. number tests. It implements the core functionality of the file
  47. command.
  48. Package: libmagic-dev
  49. Section: libdevel
  50. Priority: optional
  51. Architecture: any
  52. Multi-Arch: same
  53. Depends: ${misc:Depends},
  54. libmagic1 (= ${binary:Version}),
  55. Suggests: file
  56. Description: File type determination library using "magic" numbers (development)
  57. This library can be used to classify files according to magic
  58. number tests. It implements the core functionality of the file
  59. command.
  60. .
  61. This package contains the development files.
  62. Package: python-magic
  63. Section: python
  64. Priority: optional
  65. Architecture: all
  66. Build-Profiles: <!stage1>
  67. Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends},
  68. libmagic1 (>= ${binary:Version}),
  69. libmagic1 (<< ${binary:Version}.1~),
  70. Provides: ${python:Provides}
  71. Description: File type determination library using "magic" numbers (Python bindings)
  72. This library can be used to classify files according to magic
  73. number tests. It implements the core functionality of the file
  74. command.
  75. .
  76. This package contains the Python bindings.
  77. Package: python3-magic
  78. Section: python
  79. Priority: optional
  80. Architecture: all
  81. Build-Profiles: <!stage1>
  82. Depends: ${misc:Depends}, ${python3:Depends},
  83. libmagic1 (>= ${binary:Version}),
  84. libmagic1 (<< ${binary:Version}.1~),
  85. Provides: ${python3:Provides}
  86. Description: File type determination library using "magic" numbers (Python 3 bindings)
  87. This library can be used to classify files according to magic
  88. number tests. It implements the core functionality of the file
  89. command.
  90. .
  91. This package contains the Python 3 bindings.