control 2.6 KB

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