control 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. Source: dpkg
  2. Section: admin
  3. Priority: required
  4. Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org>
  5. Uploaders: Guillem Jover <guillem@debian.org>
  6. Origin: debian
  7. Bugs: debbugs://bugs.debian.org
  8. Homepage: https://wiki.debian.org/Teams/Dpkg
  9. Vcs-Browser: https://anonscm.debian.org/cgit/dpkg/dpkg.git
  10. Vcs-Git: https://anonscm.debian.org/git/dpkg/dpkg.git
  11. Standards-Version: 3.9.8
  12. Build-Depends:
  13. # Needed for build profile usage below.
  14. dpkg-dev (>= 1.17.14),
  15. debhelper (>= 9.20141010),
  16. pkg-config,
  17. # Needed for --add-location.
  18. gettext (>= 0.19),
  19. # Needed for --porefs.
  20. po4a (>= 0.43),
  21. zlib1g-dev,
  22. libbz2-dev,
  23. liblzma-dev,
  24. libselinux1-dev [linux-any],
  25. libncursesw5-dev,
  26. libio-string-perl <!nocheck>,
  27. Package: dpkg
  28. Architecture: any
  29. Multi-Arch: foreign
  30. Essential: yes
  31. Pre-Depends:
  32. ${shlibs:Depends},
  33. Depends:
  34. ${misc:Depends},
  35. # Needed for --clamp-mtime in dpkg-deb -b.
  36. tar (>= 1.28-1),
  37. Suggests:
  38. apt,
  39. Replaces:
  40. manpages-it (<< 2.80-4),
  41. Breaks:
  42. # Due to removal of dpkg-divert compat symlink.
  43. amule (<< 2.3.1+git1a369e47-3),
  44. # Due to removal of dpkg-statoverride compat symlink.
  45. acidbase (<= 1.4.5-4),
  46. beep (<< 1.3-4),
  47. im (<< 1:151-4),
  48. netselect (<< 0.3.ds1-27),
  49. pconsole (<< 1.0-12),
  50. phpgacl (<< 3.3.7-7.3),
  51. pure-ftpd (<< 1.0.43-1),
  52. systemtap (<< 2.8-1),
  53. terminatorx (<< 4.0.1-1),
  54. xvt (<= 2.1-20.1),
  55. Description: Debian package management system
  56. This package provides the low-level infrastructure for handling the
  57. installation and removal of Debian software packages.
  58. .
  59. For Debian package development tools, install dpkg-dev.
  60. Package: libdpkg-dev
  61. Section: libdevel
  62. Priority: optional
  63. Architecture: any
  64. Multi-Arch: same
  65. Depends:
  66. ${misc:Depends},
  67. zlib1g-dev,
  68. liblzma-dev,
  69. libbz2-dev,
  70. Description: Debian package management static library
  71. This package provides the header files and static library necessary to
  72. develop software using libdpkg, the same library used internally by dpkg.
  73. .
  74. Note though, that the API is to be considered volatile, and might change
  75. at any time, use at your own risk.
  76. Package: dpkg-dev
  77. Section: utils
  78. Priority: optional
  79. Architecture: all
  80. Multi-Arch: foreign
  81. Depends:
  82. ${misc:Depends},
  83. ${perl:Depends},
  84. libdpkg-perl (= ${source:Version}),
  85. # Needed for --clamp-mtime.
  86. tar (>= 1.28-1),
  87. bzip2,
  88. xz-utils,
  89. # Needed for git-style diff support.
  90. patch (>= 2.7),
  91. make,
  92. binutils,
  93. Recommends:
  94. build-essential,
  95. gcc | c-compiler,
  96. fakeroot,
  97. gnupg | gnupg2,
  98. gpgv | gpgv2,
  99. # Used by dpkg-mergechangelogs.
  100. libalgorithm-merge-perl,
  101. Suggests:
  102. debian-keyring,
  103. Breaks:
  104. # Due to new dpkg-architecture 1.17.17 strictness.
  105. devscripts (<< 2.14.10),
  106. Replaces:
  107. manpages-it (<< 2.80-4),
  108. Description: Debian package development tools
  109. This package provides the development tools (including dpkg-source)
  110. required to unpack, build and upload Debian source packages.
  111. .
  112. Most Debian source packages will require additional tools to build;
  113. for example, most packages need make and the C compiler gcc.
  114. Package: libdpkg-perl
  115. Section: perl
  116. Priority: optional
  117. Architecture: all
  118. Multi-Arch: foreign
  119. Depends:
  120. ${misc:Depends},
  121. ${perl:Depends},
  122. # Needed for arch tuples.
  123. dpkg (>= 1.18.11),
  124. Recommends:
  125. # Used by Dpkg::File.
  126. libfile-fcntllock-perl,
  127. # Used by Dpkg::Gettext.
  128. liblocale-gettext-perl,
  129. bzip2,
  130. xz-utils,
  131. Suggests:
  132. debian-keyring,
  133. gnupg | gnupg2,
  134. gpgv | gpgv2,
  135. gcc | c-compiler,
  136. binutils,
  137. patch,
  138. Breaks:
  139. # Needed for git-style diffs.
  140. patch (<< 2.7),
  141. Description: Dpkg perl modules
  142. This package provides the perl modules used by the scripts
  143. in dpkg-dev. They cover a wide range of functionality. Among them
  144. there are the following public modules:
  145. .
  146. - Dpkg: core variables
  147. - Dpkg::Arch: architecture handling functions
  148. - Dpkg::BuildFlags: set, modify and query compilation build flags
  149. - Dpkg::BuildOptions: parse and manipulate DEB_BUILD_OPTIONS
  150. - Dpkg::BuildProfile: parse and manipulate build profiles
  151. - Dpkg::Changelog: parse changelogs
  152. - Dpkg::Changelog::Entry: represents a changelog entry
  153. - Dpkg::Changelog::Parse: generic changelog parser for dpkg-parsechangelog
  154. - Dpkg::Checksums: generate and parse checksums
  155. - Dpkg::Compression: simple database of available compression methods
  156. - Dpkg::Compression::Process: wrapper around compression tools
  157. - Dpkg::Compression::FileHandle: transparently (de)compress files
  158. - Dpkg::Conf: parse dpkg configuration files
  159. - Dpkg::Control: parse and manipulate Debian control information
  160. (.dsc, .changes, Packages/Sources entries, etc.)
  161. - Dpkg::Control::Changelog: represent fields output by dpkg-parsechangelog
  162. - Dpkg::Control::Fields: manage (list of known) control fields
  163. - Dpkg::Control::Hash: parse and manipulate a block of RFC822-like fields
  164. - Dpkg::Control::Info: parse files like debian/control
  165. - Dpkg::Deps: parse and manipulate dependencies
  166. - Dpkg::Exit: push, pop and run exit handlers
  167. - Dpkg::Gettext: wrapper around Locale::gettext
  168. - Dpkg::IPC: spawn sub-processes and feed/retrieve data
  169. - Dpkg::Index: collections of Dpkg::Control (Packages/Sources files for
  170. example)
  171. - Dpkg::Interface::Storable: base object serializer
  172. - Dpkg::Path: common path handling functions
  173. - Dpkg::Source::Package: extract Debian source packages
  174. - Dpkg::Substvars: substitute variables in strings
  175. - Dpkg::Vendor: identify current distribution vendor
  176. - Dpkg::Version: parse and manipulate Debian package versions
  177. .
  178. All the packages listed in Suggests or Recommends are used by some of the
  179. modules.
  180. Package: dselect
  181. Priority: optional
  182. Architecture: any
  183. Multi-Arch: foreign
  184. Depends:
  185. ${shlibs:Depends},
  186. ${misc:Depends},
  187. Suggests:
  188. perl,
  189. Replaces:
  190. manpages-it (<< 2.80-4),
  191. Description: Debian package management front-end
  192. dselect is a high-level interface for managing the installation and
  193. removal of Debian software packages.
  194. .
  195. Many users find dselect intimidating and new users may prefer to use
  196. apt-based user interfaces.