control 3.1 KB

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