control 5.7 KB

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