programmer.sgml 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342
  1. <!doctype debiandoc system [
  2. <!entity % manuals-version-def system "manuals-version">
  3. %manuals-version-def;
  4. ]>
  5. <!--
  6. Debian Linux dpkg package installation tool.
  7. programmers' manual.
  8. Copyright (C)1996 Ian Jackson; released under the terms of the GNU
  9. General Public License, version 2 or (at your option) any later.
  10. -->
  11. <book>
  12. <title><prgn/dpkg/ programmers' manual
  13. <author>Ian Jackson <email/ijackson@gnu.ai.mit.edu/
  14. <version>version &manuals-version; (dpkg &dpkg-version;), <date>
  15. <abstract>
  16. This manual describes the technical aspects of creating Debian binary
  17. and source packages. It also documents the interface between
  18. <prgn/dselect/ and its access method scripts. It does not deal with
  19. the Debian Project policy requirements, and it assumes familiarity
  20. with <prgn/dpkg/'s functions from the system administrator's
  21. perspective.
  22. <copyright>Copyright &copy;1996 Ian Jackson.
  23. <p>
  24. This manual is free software; you may redistribute it and/or modify it
  25. under the terms of the GNU General Public License as published by the
  26. Free Software Foundation; either version 2, or (at your option) any
  27. later version.
  28. <p>
  29. This is distributed in the hope that it will be useful, but
  30. <em>without any warranty</em>; without even the implied warranty of
  31. merchantability or fitness for a particular purpose. See the GNU
  32. General Public License for more details.
  33. <p>
  34. You should have received a copy of the GNU General Public License with
  35. your Debian GNU/Linux system, in <tt>/usr/doc/copyright/GPL</tt>, or
  36. with the <prgn/dpkg/ source package as the file <tt>COPYING</tt>. If
  37. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  38. Cambridge, MA 02139, USA.
  39. <toc sect>
  40. <!-- Describes the technical interface between a package and dpkg.
  41. How to safely put shared libraries in a package. Details of dpkg's
  42. handling of individual files. Sections on when to use which feature
  43. (eg Replaces vs. Replaces/Conflicts vs. update-alternatives
  44. vs. diversions) Cross-references to the policy document (see below)
  45. where appropriate. Description of the interface between dselect and
  46. its access methods. Hints on where to start with a new package (ie,
  47. the hello package). What to do about file aliasing.
  48. file aliasing
  49. Manpages are required for: update-rc.d, diversions,
  50. update-alternatives, install-info in a package.
  51. -->
  52. <chapt id="scope">Introduction and scope of this manual
  53. <p>
  54. <prgn/dpkg/ is a suite of programs for creating binary package files
  55. and installing and removing them on Unix systems.<footnote><prgn/dpkg/
  56. is targetted primarily at Debian GNU/Linux, but may work on or be
  57. ported to other systems.</footnote>
  58. <p>
  59. The binary packages are designed for the management of installed
  60. executable programs (usually compiled binaries) and their associated
  61. data, though source code examples and documentation are provided as
  62. part of some packages.
  63. <p>
  64. This manual describes the technical aspects of creating Debian binary
  65. packages (<tt/.deb/ files). It documents the behaviour of the
  66. package management programs <prgn/dpkg/, <prgn/dselect/ et al. and and the
  67. way they interact with packages.
  68. <p>
  69. It also documents the interaction between <prgn/dselect/'s core and the
  70. access method scripts it uses to actually install the selected
  71. packages, and describes how to create a new access method.
  72. <p>
  73. This manual does not go into detail about the options and usage of the
  74. package building and installation tools. It should therefore be read
  75. in conjuction with those programs' manpages.
  76. <p>
  77. The utility programs which are provided with <prgn/dpkg/ for managing
  78. various system configuration and similar issues, such as
  79. <prgn/update-rc.d/ and <prgn/install-info/, are not described in
  80. detail here - please see their manpages.
  81. <p>
  82. It does <em/not/ describe the policy requirements imposed on Debian
  83. packages, such as the permissions on files and directories,
  84. documentation requirements, upload procedure, and so on. You should
  85. see the Debian packaging policy manual for these details. (Many of
  86. them will probably turn out to be helpful even if you don't plan to
  87. upload your package and make it available as part of the
  88. distribution.)
  89. <p>
  90. It is assumed that the reader is reasonably familiar with the
  91. <prgn/dpkg/ System Administrators' manual. Unfortunately this manual
  92. does not yet exist.
  93. <p>
  94. The Debian version of the FSF's GNU hello program is provided as an
  95. example for people wishing to create Debian packages.
  96. <p>
  97. <em>Note that this document is still a draft!</em>
  98. <chapt id="binarypkg">Binary packages
  99. <p>
  100. The binary package has two main sections. The first part consists of
  101. various control information files and scripts used by <prgn/dpkg/ when
  102. installing and removing. See <ref id="controlarea">.
  103. <p>
  104. The second part is an archive (currently a <prgn/tar/ archive)
  105. containing files and directories to be installed.
  106. <p>
  107. In the future binary packages may also contain other components, such
  108. as checksums and digital signatures.
  109. <sect id="bincreating">Creating package files - <prgn/dpkg-deb/
  110. <p>
  111. All manipulation of binary package files is done by <prgn/dpkg-deb/;
  112. it's the only program that has knowledge of the format.
  113. (<prgn/dpkg-deb/ may be invoked by calling <prgn/dpkg/, as <prgn/dpkg/ will
  114. spot that the options requested are appropriate to <prgn/dpkg-deb/ and
  115. invoke that instead with the same arguments.)
  116. <p>
  117. In order to create a binary package you must make a directory tree
  118. which contains all the files and directories you want to have in the
  119. filesystem data part of the package. In Debian-format source packages
  120. this directory is usually <tt>debian/tmp</tt>, relative to the top of
  121. the package's source tree.
  122. <p>
  123. They should have the locations (relative to the root of the directory
  124. tree you're constructing) ownerships and permissions which you want
  125. them to have on the system when they are installed.
  126. <p>
  127. With current versions of <prgn/dpkg/ the uid/username and gid/groupname
  128. mappings for the users and groups being used should be the same on the
  129. system where the package is built and the one where it is installed.
  130. <p>
  131. You need to add one special directory to the root of the miniature
  132. filesystem tree you're creating: <prgn/DEBIAN/. It should contain the
  133. control information files, notably the binary package control file
  134. (see <ref id="controlfile">).
  135. <p>
  136. The <prgn/DEBIAN/ directory will not appear in the filesystem archive of
  137. the package, and so won't be installed by <prgn/dpkg/ when the package
  138. is installed.
  139. <p>
  140. When you've prepared the package, you should invoke:
  141. <example>
  142. dpkg --build <var/directory/
  143. </example>
  144. <p>
  145. This will build the package in <tt/<var/directory/.deb/.
  146. (<prgn/dpkg/ knows that <tt/--build/ is a <prgn/dpkg-deb/ option, so it
  147. invokes <prgn/dpkg-deb/ with the same arguments to build the package.)
  148. <p>
  149. See the manpage <manref name="dpkg-deb" section=8> for details of how
  150. to examine the contents of this newly-created file. You may find the
  151. output of following commands enlightening:
  152. <example>
  153. dpkg-deb --info <var/filename/.deb
  154. dpkg-deb --contents <var/filename/.deb
  155. </example>
  156. <sect id="controlarea">Package control information files
  157. <p>
  158. The control information portion of a binary package is a collection of
  159. files with names known to <prgn/dpkg/. It will treat the contents of
  160. these files specially - some of them contain information used by
  161. <prgn/dpkg/ when installing or removing the package; others are scripts
  162. which the package maintainer wants <prgn/dpkg/ to run.
  163. <p>
  164. It is possible to put other files in the package control area, but
  165. this is not generally a good idea (though they will largely be
  166. ignored).
  167. <p>
  168. Here is a brief list of the control info files supported by <prgn/dpkg/
  169. and a summary of what they're used for.
  170. <p>
  171. <taglist>
  172. <tag><tt/control/
  173. <item>
  174. This is the key description file used by <prgn/dpkg/. It specifies the
  175. package's name and version, gives its description for the user, states
  176. its relationships with other packages, and so forth.
  177. See <ref id="controlfile">.
  178. <p>
  179. It is usually generated automatically from information in the source
  180. package by the <prgn/dpkg-gencontrol/ program, and with assistance
  181. from <prgn/dpkg-shlibdeps/. See <ref id="sourcetools">.
  182. <tag><tt/postinst/, <tt/preinst/, <tt/postrm/, <tt/prerm/
  183. <item>
  184. These are exectuable files (usually scripts) which <prgn/dpkg/ runs
  185. during installation, upgrade and removal of packages. They allow the
  186. package to deal with matters which are particular to that package or
  187. require more complicated processing than that provided by <prgn/dpkg/.
  188. Details of when and how they are called are in
  189. <ref id="maintainerscripts">.
  190. <p>
  191. It is very important to make these scripts itempotent.<footnote>That
  192. means that if it runs successfully or fails and then you call it again
  193. it doesn't bomb out, but just ensures that everything is the way it
  194. ought to be.</footnote> This is so that if an error occurs, the user
  195. interrupts <prgn/dpkg/ or some other unforeseen circumstance happens you
  196. don't leave the user with a badly-broken package.
  197. <p>
  198. The maintainer scripts are guaranteed to run with a controlling
  199. terminal and can interact with the user. If they need to prompt for
  200. passwords, do full-screen interaction or something similar you should
  201. do these things to and from <tt>/dev/tty</>, since <prgn/dpkg/ will at
  202. some point redirect scripts' standard input and output so that it can
  203. log the installation process. Likewise, because these scripts may be
  204. executed with standard output redirected into a pipe for logging
  205. purposes, Perl scripts should set unbuffered output by setting
  206. <tt/$|=1/ so that the output is printed immediately rather than being
  207. buffered.
  208. <p>
  209. Each script should return a zero exit status for success, or a nonzero
  210. one for failure.
  211. <tag><tt/conffiles/
  212. <item>
  213. This file contains a list of configuration files which are to be
  214. handled automatically by <prgn/dpkg/ (see <ref id="conffiles">). Note
  215. that not necessarily every configuration file should be listed here.
  216. <tag><tt/shlibs/
  217. <item>
  218. This file contains a list of the shared libraries supplied by the
  219. package, with dependency details for each. This is used by
  220. <prgn/dpkg-shlibdeps/ when it determines what dependencies are
  221. required in a package control file.
  222. <p>
  223. Each line is of the form:
  224. <example>
  225. <var/library-name/ <var/version-or-soname/ <var/dependencies .../
  226. </example>
  227. <p>
  228. <var/library-name/ is the name of the shared library, for example
  229. <tt/libc5/.
  230. <p>
  231. <var/version-or-soname/ is the soname of the library - ie, the thing
  232. that must exactly match for the library to be recognised by
  233. <prgn/ld.so/. Usually this is major version number of the library.
  234. <p>
  235. <var/dependencies/ has the same syntax as a dependency field in a
  236. binary package control file. It should give details of which
  237. package(s) are required to satisfy a binary built against the version
  238. of the library contained in the package. See <ref id="depsyntax">.
  239. <p>
  240. For example, if the package <tt/foo/ contains <tt/libfoo.so.1.2.3/,
  241. where the soname of the library is <tt/libfoo.so.1/, and the first
  242. version of the package which contained a minor number of at least
  243. <tt/2.3/ was <var/1.2.3-1/, then the package's <var/shlibs/ could
  244. say:
  245. <example>
  246. libfoo 1 foo (>= 1.2.3-1)
  247. </example>
  248. <p>
  249. The version-specific dependency is to avoid warnings from <prgn/ld.so/
  250. about using older shared libraries with newer binaries.
  251. </taglist>
  252. <sect id="controlfile">The main control information file: <tt/control/
  253. <p>
  254. The most important control information file used by <prgn/dpkg/ when it
  255. installs a package is <tt/control/. It contains all the package's
  256. `vital statistics'.
  257. <p>
  258. The binary package control files of packages built from Debian sources
  259. are made by a special tool, <prgn/dpkg-gencontrol/, which reads
  260. <tt>debian/control</> and <tt>debian/changelog</> to find the
  261. information it needs. See <ref id="sourcepkg"> for more details.
  262. <p>
  263. The fields in binary package control files are:
  264. <list compact>
  265. <item><qref id="f-Package"><tt/Package/</> (mandatory)
  266. <item><qref id="versions"><tt/Version/</> (mandatory)
  267. <item><qref id="f-Architecture"><tt/Architecture/</>
  268. (mandatory)<footnote>This field should appear in all packages, though
  269. <prgn/dpkg/ doesn't require it yet so that old packages can still be
  270. installed.</footnote>
  271. <item><qref id="relationships"><tt/Depends/, <tt/Provides/ et al.</>
  272. <item><qref id="f-Essential"><tt/Essential/</>
  273. <item><qref id="f-Maintainer"><tt/Maintainer/</>
  274. <item><qref id="f-classification"><tt/Section/, <tt/Priority/</>
  275. <item><qref id="f-Source"><tt/Source/</>
  276. <item><qref id="descriptions"><tt/Description/</>
  277. <item><qref id="f-Installed-Size"><tt/Installed-Size/</>
  278. </list>
  279. <p>
  280. A description of the syntax of control files and the purpose of these
  281. fields is available in <ref id="controlfields">.
  282. <chapt id="sourcepkg">Source packages
  283. <p>
  284. The Debian binary packages in the distribution are generated from
  285. Debian sources, which are in a special format to assist the easy and
  286. automatic building of binaries.
  287. <sect id="sourcetools">Tools for processing source packages
  288. <p>
  289. Various tools are provided for manipulating source packages; they pack
  290. and unpack sources and help build of binary packages and help manage
  291. the distribution of new versions.
  292. <p>
  293. They are introduced and typical uses described here; see <manref
  294. name=dpkg-source section=1> for full documentation about their
  295. arguments and operation.
  296. <p>
  297. For examples of how to construct a Debian source package, and how to
  298. use those utilities that are used by Debian source packages, please
  299. see the <prgn/hello/ example package.
  300. <sect1><prgn/dpkg-source/ - packs and unpacks Debian source packages
  301. <p>
  302. This program is frequently used by hand, and is also called from
  303. package-independent automated building scripts such as
  304. <prgn/dpkg-buildpackage/.
  305. <p>
  306. To unpack a package it is typically invoked with
  307. <example>
  308. dpkg-source -x <var>.../path/to/filename</>.dsc
  309. </example>
  310. with the <tt/<var/filename/.tar.gz/ and
  311. <tt/<var/filename/.diff.gz/ (if applicable) in the same directory. It
  312. unpacks into <tt/<var/package/-<var/version//, and if applicable
  313. <tt/<var/package/-<var/version/.orig/, in the current directory.
  314. <p>
  315. To create a packed source archive it is typically invoked:
  316. <example>
  317. dpkg-source -b <var/package/-<var/version/
  318. </example>
  319. This will create the <tt/.dsc/, <tt/.tar.gz/ and <tt/.diff.gz/ (if
  320. appropriate) in the current directory. <prgn/dpkg-source/ does not
  321. clean the source tree first - this must be done separately if it is
  322. required.
  323. <p>
  324. See also <ref id="sourcearchives">.
  325. <sect1><prgn/dpkg-buildpackage/ - overall package-building control
  326. script
  327. <p>
  328. <prgn/dpkg-buildpackage/ is a script which invokes <prgn/dpkg-source/,
  329. the <tt>debian/rules</> targets <prgn/clean/, <prgn/build/ and
  330. <prgn/binary/, <prgn/dpkg-genchanges/ and <prgn/pgp/ to build a signed
  331. source and binary package upload.
  332. <p>
  333. It is usually invoked by hand from the top level of the built or
  334. unbuilt source directory. It may be invoked with no arguments; useful
  335. arguments include:
  336. <taglist compact>
  337. <tag><tt/-uc/, <tt/-us/
  338. <item>Do not PGP-sign the <tt/.changes/ file or the source package
  339. <tt/.dsc/ file, respectively.
  340. <tag><tt/-p<var/pgp-command//
  341. <item>Invoke <var/pgp-command/ instead of finding <tt/pgp/ on the
  342. <prgn/PATH/. <var/pgp-command/ must behave just like <prgn/pgp/.
  343. <tag><tt/-r<var/root-command//
  344. <item>When root privilege is required, invoke the command
  345. <var/root-command/. <var/root-command/ should invoke its first
  346. argument as a command, from the <prgn/PATH/ if necessary, and pass its
  347. second and subsequent arguments to the command it calls. If no
  348. <var/root-command/ is supplied then <var/dpkg-buildpackage/ will take
  349. no special action to gain root privilege, so that for most packages it
  350. will have to be invoked as root to start with.
  351. <tag><tt/-b/, <tt/-B/
  352. <item>Two types of binary-only build and upload - see <manref
  353. name=dpkg-source section=1>.
  354. </taglist>
  355. <sect1><prgn/dpkg-gencontrol/ - generates binary package control files
  356. <p>
  357. This program is usually called from <tt>debian/rules</> (see <ref
  358. id="sourcetree">) in the top level of the source tree.
  359. <p>
  360. This is usually done just before the files and directories in the
  361. temporary directory tree where the package is being built have their
  362. permissions and ownerships set and the package is constructed using
  363. <prgn/dpkg-deb/<footnote>This is so that the control file which is
  364. produced has the right permissions</footnote>.
  365. <p>
  366. <prgn/dpkg-gencontrol/ must be called after all the files which are to
  367. go into the package have been placed in the temporary build directory,
  368. so that its calculation of the installed size of a package is correct.
  369. <p>
  370. It is also necessary for <prgn/dpkg-gencontrol/ to be run after
  371. <prgn/dpkg-shlibdeps/ so that the variable substitutions created by
  372. <prgn/dpkg-shlibdeps/ in <tt>debian/substvars</> are available.
  373. <p>
  374. For a package which generates only one binary package, and which
  375. builds it in <tt>debian/tmp</> relative to the top of the source
  376. package, it is usually sufficient to call:
  377. <example>
  378. dpkg-gencontrol
  379. </example>
  380. <p>
  381. Sources which build several binaries will typically need something
  382. like:
  383. <example>
  384. dpkg-gencontrol -Pdebian/tmp-<var/pkg/ -p<var/package/
  385. </example>
  386. The <tt/-P/ tells <prgn/dpkg-gencontrol/ that the package is being
  387. built in a non-default directory, and the <tt/-p/ tells it which
  388. package's control file should be generated.
  389. <p>
  390. <prgn/dpkg-gencontrol/ also adds information to the list of files in
  391. <tt>debian/files</>, for the benefit of (for example) a future
  392. invocation of <prgn/dpkg-genchanges/.
  393. <sect1><prgn/dpkg-shlibdeps/ - calculates shared library dependencies
  394. <p>
  395. This program is usually called from <tt>debian/rules</> just before
  396. <prgn/dpkg-gencontrol/ (see <ref id="sourcetree">), in the top level
  397. of the source tree.
  398. <p>
  399. Its arguments are executables<footnote>They may be specified either
  400. in the locations in the source tree where they are created or in the
  401. locations in the temporary build tree where they are installed prior
  402. to binary package creation.</footnote> for which shared library
  403. dependencies should be included in the binary package's control file.
  404. <p>
  405. If some of the executable(s) shared libraries should only warrant a
  406. <tt/Recommends/ or <tt/Suggests/, or if some warrant a
  407. <tt/Pre-Depends/, this can be achieved by using the
  408. <tt/-d<var/dependency-field// option before those executable(s).
  409. (Each <tt/-d/ option takes effect until the next <tt/-d/.)
  410. <p>
  411. <prgn/dpkg-shlibdeps/ does not directly cause the output control file
  412. to be modified. Instead by default it adds to the
  413. <tt>debian/substvars</> file variable settings like
  414. <tt/shlibs:Depends/. These variable settings must be referenced in
  415. dependency fields in the appropriate per-binary-package sections of
  416. the source control file.
  417. <p>
  418. For example, the <prgn/procps/ package generates two kinds of
  419. binaries, simple C binaries like <prgn/ps/ which require a
  420. predependency and full-screen ncurses binaries like <prgn/top/ which
  421. require only a recommendation. It can say in its <tt>debian/rules</>:
  422. <example>
  423. dpkg-shlibdeps -dPre-Depends ps -dRecommends top
  424. </example>
  425. and then in its main control file <tt>debian/control</>:
  426. <example>
  427. <var/.../
  428. Package: procps
  429. Pre-Depends: ${shlibs:Pre-Depends}
  430. Recommends: ${shlibs:Recommends}
  431. <var/.../
  432. </example>
  433. <p>
  434. Sources which produce several binary packages with different shared
  435. library dependency requirements can use the <tt/-p<var/varnameprefix//
  436. option to override the default <tt/shlib:/ prefix (one invocation of
  437. <prgn/dpkg-shlibdeps/ per setting of this option). They can thus
  438. produce several sets of dependency variables, each of the form
  439. <tt/<var/varnameprefix/:<var/dependencyfield//, which can be referred
  440. to in the appropriate parts of the binary package control files.
  441. <sect1><prgn/dpkg-distaddfile/ - adds a file to <tt>debian/files</>
  442. <p>
  443. Some packages' uploads need to include files other than the source and
  444. binary package files.
  445. <p>
  446. <prgn/dpkg-distaddfile/ adds a file to the <tt>debian/files</> file so
  447. that it will be included in the <tt/.changes/ file when
  448. <prgn/dpkg-genchanges/ is run.
  449. <p>
  450. It is usually invoked from the <prgn/binary/ target of
  451. <tt>debian/rules</>:
  452. <example>
  453. dpkg-distaddfile <var/filename/ <var/section/ <var/priority/
  454. </example>
  455. The <var/filename/ is relative to the directory where
  456. <prgn/dpkg-genchanges/ will expect to find it - this is usually the
  457. directory above the top level of the source tree. The
  458. <tt>debian/rules</> target should put the file there just before or
  459. just after calling <prgn/dpkg-distaddfile/.
  460. <p>
  461. The <var/section/ and <var/priority/ are passed unchanged into the
  462. resulting <tt/.changes/ file. See <ref id="f-classification">.
  463. <sect1><prgn/dpkg-genchanges/ - generates a <tt/.changes/ upload
  464. control file
  465. <p>
  466. This program is usually called by package-independent automatic
  467. building scripts such as <prgn/dpkg-buildpackage/, but it may also be
  468. called by hand.
  469. <p>
  470. It is usually called in the top level of a built source tree, and when
  471. invoked with no arguments will print out a straightforward
  472. <tt/.changes/ file based on the information in the source package's
  473. changelog and control file and the binary and source packages which
  474. should have been built.
  475. <sect1><prgn/dpkg-parsechangelog/ - produces parsed representation of
  476. a changelog
  477. <p>
  478. This program is used internally by <prgn/dpkg-source/ et al. It may
  479. also occasionally be useful in <tt>debian/rules</> and elsewhere. It
  480. parses a changelog, <tt>debian/changelog</> by default, and prints a
  481. control-file format representation of the information in it to
  482. standard output.
  483. <sect id="sourcetree">The Debianised source tree
  484. <p>
  485. The source archive scheme described later is intended to allow a
  486. Debianised source tree with some associated control information to be
  487. reproduced and transported easily. The Debianised source tree is a
  488. version of the original program with certain files added for the
  489. benefit of the Debianisation process, and with any other changes
  490. required made to the rest of the source code and installation scripts.
  491. <p>
  492. The extra files created for Debian are in the subdirectory <tt/debian/
  493. of the top level of the Debianised source tree. They are described
  494. below.
  495. <sect1><tt>debian/rules</tt> - the main building script
  496. <p>
  497. This file is an executable makefile, and contains the package-specific
  498. recipies for compiling the package and building binary package(s) out
  499. of the source.
  500. <p>
  501. It must start with the line <tt>#!/usr/bin/make -f</tt>, so that it
  502. can be invoked by saying its name rather than invoking <prgn/make/
  503. explicitly.
  504. <p>
  505. The targets which are required to be present are:
  506. <taglist>
  507. <tag/<tt/build//
  508. <item>
  509. This should perform all non-interactive configuration and compilation
  510. of the package. If a package has an interactive pre-build
  511. configuration routine, the Debianised source package should be built
  512. after this has taken place, so that it can be built without rerunning
  513. the configuration.
  514. <p>
  515. For some packages, notably ones where the same source tree is compiled
  516. in different ways to produce two binary packages, the <prgn/build/
  517. target does not make much sense. For these packages it is good enough
  518. to provide two (or more) targets (<tt/build-a/ and <tt/build-b/ or
  519. whatever) for each of the ways of building the package, and a
  520. <prgn/build/ target that does nothing. The <prgn/binary/ target will have
  521. to build the package in each of the possible ways and make the binary
  522. package out of each.
  523. <p>
  524. The <prgn/build/ target must not do anything that might require root
  525. privilege.
  526. <p>
  527. The <prgn/build/ target may need to run <prgn/clean/ first - see below.
  528. <p>
  529. When a package has a configuration routine that takes a long time, or
  530. when the makefiles are poorly designed, or when <prgn/build/ needs to
  531. run <prgn/clean/ first, it is a good idea to <tt/touch build/ when the
  532. build process is complete. This will ensure that if <tt>debian/rules
  533. build</tt> is run again it will not rebuild the whole program.
  534. <tag/<tt/binary/, <tt/binary-arch/, <tt/binary-indep/
  535. <item>
  536. The <prgn/binary/ target should be all that is necessary for the user
  537. to build the binary package. It is split into two parts:
  538. <prgn/binary-arch/ builds the packages' output files which are
  539. specific to a particular architecture, and <prgn/binary-indep/
  540. builds those which are not.
  541. <p>
  542. <prgn/binary/ should usually be a target with no commands which simply
  543. depends on <prgn/binary-arch/ and <prgn/binary-indep/.
  544. <p>
  545. Both <prgn/binary-*/ targets should depend on the <prgn/build/ target,
  546. above, so that the package is built if it has not been already. It
  547. should then create the relevant binary package(s), using
  548. <prgn/dpkg-gencontrol/ to make their control files and <prgn/dpkg-deb/
  549. to build them and place them in the parent of the top level directory.
  550. <p>
  551. If one of the <prgn/binary-*/ targets has nothing to do (this will be
  552. always be the case if the source generates only a single binary
  553. package, whether architecture-dependent or not) it <em/must/ still
  554. exist, but should always succeed.
  555. <p>
  556. <ref id="binarypkg"> describes how to construct binary packages.
  557. <p>
  558. The <prgn/binary/ targets must be invoked as root.
  559. <tag/<tt/clean//
  560. <item>
  561. This should undo any effects that the <prgn/build/ and <prgn/binary/
  562. targets may have had, except that it should leave alone any output
  563. files created in the parent directory by a run of <prgn/binary/.
  564. <p>
  565. If a <prgn/build/ file is touched at the end of the <prgn/build/ target,
  566. as suggested above, it must be removed as the first thing that
  567. <prgn/clean/ does, so that running <prgn/build/ again after an interrupted
  568. <prgn/clean/ doesn't think that everything is already done.
  569. <p>
  570. The <prgn/clean/ target must be invoked as root if <prgn/binary/ has
  571. been invoked since the last <prgn/clean/, or if <prgn/build/ has been
  572. invoked as root (since <prgn/build/ may create directories, for
  573. example).
  574. <tag/<tt/get-orig-source//
  575. <item>
  576. This target fetches the most recent version of the original source
  577. package from a canonical archive site (via FTP or WWW, for example),
  578. does any necessary rearrangement to turn it into the original source
  579. tarfile format described below, and leaves it in the current directory.
  580. <p>
  581. This target may be invoked in any directory, and should take care to
  582. clean up any temporary files it may have left.
  583. <p>
  584. This target is optional, but providing it if possible is a good idea.
  585. </taglist>
  586. The <prgn/build/, <prgn/binary/ and <prgn/clean/ targets must be
  587. invoked with a current directory of the package's top-level
  588. directory.
  589. <p>
  590. Additional targets may exist in <tt>debian/rules</tt>, either as
  591. published or undocumented interfaces or for the package's internal
  592. use.
  593. <sect1><tt>debian/control</tt>
  594. <p>
  595. This file contains version-independent details about the source
  596. package and about the binary packages it creates.
  597. <p>
  598. It is a series of sets of control fields, each syntactically similar
  599. to a binary package control file. The sets are separated by one or
  600. more blank lines. The first set is information about the source
  601. package in general; each subsequent set describes one binary package
  602. that the source tree builds.
  603. <p>
  604. The syntax and semantics of the fields are described below in
  605. <ref id="controlfields">.
  606. <p>
  607. The general (binary-package-independent) fields are:
  608. <list compact>
  609. <item><qref id="f-Source"><tt/Source/</> (mandatory)
  610. <item><qref id="f-Maintainer"><tt/Maintainer/</>
  611. <item><qref id="f-classification"><tt/Section/ and <tt/Priority/</>
  612. (classification, mandatory)
  613. <item><qref id="f-Standards-Version"><tt/Standards-Version/</>
  614. </list>
  615. <p>
  616. The per-binary-package fields are:
  617. <list compact>
  618. <item><qref id="f-Package"><tt/Package/</> (mandatory)
  619. <item><qref id="f-Architecture"><tt/Architecture/</> (mandatory)
  620. <item><qref id="descriptions"><tt/Description/</>
  621. <item><qref id="f-classification"><tt/Section/ and <tt/Priority/</> (classification)
  622. <item><qref id="f-Essential"><tt/Essential/</>
  623. <item><qref id="relationships"><tt/Depends/ et al.</> (package interrelationships)
  624. </list>
  625. <p>
  626. These fields are used by <prgn/dpkg-gencontrol/ to generate control
  627. files for binary packages (see below), by <prgn/dpkg-genchanges/ to
  628. generate the <tt/.changes/ file to accompany the upload, and by
  629. <prgn/dpkg-source/ when it creates the <tt/.dsc/ source control file as
  630. part of a source archive.
  631. <p>
  632. The fields here may contain variable references - their values will be
  633. substituted by <prgn/dpkg-gencontrol/, <prgn/dpkg-genchanges/ or
  634. <prgn/dpkg-source/ when they generate output control files. See <ref
  635. id="srcsubstvars"> for details.
  636. <p>
  637. <sect2>User-defined fields
  638. <p>
  639. Additional user-defined fields may be added to the source package
  640. control file. Such fields will be ignored, and not copied to (for
  641. example) binary or source package control files or upload control
  642. files.
  643. <p>
  644. If you wish to add additional unsupported fields to these output files
  645. you should use the mechanism described here.
  646. <p>
  647. Fields in the main source control information file with names starting
  648. <tt/X/, followed by one or more of the letters <tt/BCS/ and a hyphen
  649. <tt/-/, will be copied to the output files. Only the part of the
  650. field name after the hyphen will be used in the output file. Where
  651. the letter <tt/B/ is used the field will appear in binary package
  652. control files, where the letter <tt/S/ is used in source package
  653. control files and where <tt/C/ is used in upload control
  654. (<tt/.changes/) files.
  655. <p>
  656. For example, if the main source information control file contains the
  657. field
  658. <example>
  659. XBS-Comment: I stand between the candle and the star.
  660. </example>
  661. then the binary and source package control files will contain the
  662. field
  663. <example>
  664. Comment: I stand between the candle and the star.
  665. </example>
  666. <sect1 id="dpkgchangelog"><tt>debian/changelog</>
  667. <p>
  668. This file records the changes to the Debian-specific parts of the
  669. package<footnote>Though there is nothing stopping an author who is
  670. also the Debian maintainer from using it for all their changes, it
  671. will have to be renamed if the Debian and upstream maintainers become
  672. different people.</footnote>.
  673. <p>
  674. It has a special format which allows the package building tools to
  675. discover which version of the package is being built and find out
  676. other release-specific information.
  677. <p>
  678. That format is a series of entries like this:
  679. <example>
  680. <var/package/ (<var/version/) <var/distribution(s)/; urgency=<var/urgency/
  681. * <var/change details/
  682. <var/more change details/
  683. * <var/even more change details/
  684. -- <var/maintainer name and email address/ <var/date/
  685. </example>
  686. <p>
  687. <var/package/ and <var/version/ are the source package name and
  688. version number. <var/distribution(s)/ lists the distributions where
  689. this version should be installed when it is uploaded - it is copied to
  690. the <tt/Distribution/ field in the <tt/.changes/ file. See <ref
  691. id="f-Distribution">.
  692. <p>
  693. <var/urgency/ is the value for the <tt/Urgency/ field in the
  694. <tt/.changes/ file for the upload. See <ref id="f-Urgency">. It is
  695. not possible to specify an urgency containing commas; commas are used
  696. to separate <tt/<var/keyword/=<var/value// settings in the <prgn/dpkg/
  697. changelog format (though there is currently only one useful
  698. <var/keyword/, <tt/urgency/).
  699. <p>
  700. The change details may in fact be any series of lines starting with at
  701. least two spaces, but conventionally each change starts with an
  702. asterisk and a separating space and continuation lines are indented so
  703. as to bring them in line with the start of the text above. Blank
  704. lines may be used here to separate groups of changes, if desired.
  705. <p>
  706. The maintainer name and email address should <em/not/ necessarily be
  707. those of the usual package maintainer. They should be the details of
  708. the person doing <em/this/ version. The information here will be
  709. copied to the <tt/.changes/ file, and then later used to send an
  710. acknowledgement when the upload has been installed.
  711. <p>
  712. The <var/date/ should be in RFC822 format; it should include the
  713. timezone specified numerically, with the timezone name or abbreviation
  714. optionally present as a comment.
  715. <p>
  716. The first `title' line with the package name should start at the left
  717. hand margin; the `trailer' line with the maintainer and date details
  718. should be preceded by exactly one space. The maintainer details and
  719. the date must be separated by exactly two spaces.
  720. <p>
  721. An Emacs mode for editing this format is available: it is called
  722. <tt/debian-changelog-mode/. You can have this mode selected
  723. automatically when you edit a Debian changelog by adding a local
  724. variables clause to the end of the changelog.
  725. <sect2>Defining alternative changelog formats
  726. <p>
  727. It is possible to use a different format to the standard one, by
  728. providing a parser for the format you wish to use.
  729. <p>
  730. In order to have <tt/dpkg-parsechangelog/ run your parser, you must
  731. include a line within the last 40 lines of your file matching the Perl
  732. regular expression:
  733. <example>
  734. \schangelog-format:\s+([0-9a-z]+)\W
  735. </example>
  736. The part in parentheses should be the name of the format.
  737. <p>
  738. If such a line exists then <tt/dpkg-parsechangelog/ will look for the
  739. parser as <tt>/usr/lib/dpkg/parsechangelog/<var/format-name/</> or
  740. <tt>/usr/local/lib/dpkg/parsechangelog/<var/format-name/</>; it is an
  741. error for it not to find it, or for it not to be an executable
  742. program. The default changelog format is <tt/dpkg/, and a parser for
  743. it is provided with the <tt/dpkg/ package.
  744. <p>
  745. The parser will be invoked with the changelog open on standard input
  746. at the start of the file. It should read the file (it may seek if it
  747. wishes) to determine the information required and return the parsed
  748. information to standard output in the form of a series of control
  749. fields in the standard format. By default it should return
  750. information about only the most recent version in the changelog; it
  751. should accept a <tt/-v<var/version// option to return changes
  752. information from all versions present <em/strictly after/
  753. <var/version/, and it should then be an error for <var/version/ not to
  754. be present in the changelog.
  755. <p>
  756. The fields are:
  757. <list compact>
  758. <item><qref id="f-Source"><tt/Source/</>
  759. <item><qref id="versions"><tt/Version/</> (mandatory)
  760. <item><qref id="f-Distribution"><tt/Distribution/</> (mandatory)
  761. <item><qref id="f-Urgency"><tt/Urgency/</> (mandatory)
  762. <item><qref id="f-Maintainer"><tt/Maintainer/</> (mandatory)
  763. <item><qref id="f-Date"><tt/Date/</>
  764. <item><qref id="f-Changes"><tt/Changes/</> (mandatory)
  765. </list>
  766. <p>
  767. If several versions are being returned (due to the use of <tt/-v/),
  768. the urgency value should be of the highest urgency code listed at the
  769. start of any of the versions requested followed by the concatenated
  770. (space-separated) comments from all the versions requested; the
  771. maintainer, version, distribution and date should always be from the
  772. most recent version.
  773. <p>
  774. For the format of the <tt/Changes/ field see <ref id="f-Changes">.
  775. <p>
  776. If the changelog format which is being parsed always or almost always
  777. leaves a blank line between individual change notes these blank lines
  778. should be stripped out, so as to make the resulting output compact.
  779. <p>
  780. If the changelog format does not contain date or package name
  781. information this information should be omitted from the output. The
  782. parser should not attempt to synthesise it or find it from other
  783. sources.
  784. <p>
  785. If the changelog does not have the expected format the parser should
  786. exit with a nonzero exit status, rather than trying to muddle through
  787. and possibly generating incorrect output.
  788. <p>
  789. A changelog parser may not interact with the user at all.
  790. <sect1 id="srcsubstvars"><tt>debian/substvars</> and variable substitutions
  791. <p>
  792. When <prgn/dpkg-gencontrol/, <prgn/dpkg-genchanges/ and
  793. <prgn/dpkg-source/ generate control files they do variable
  794. substitutions on their output just before writing it. Variable
  795. substitutions have the form <tt/${<var/variable-name/}/. The optional
  796. file <tt>debian/substvars</> contains variable substitutions to be
  797. used; variables can also be set directly from <tt>debian/rules</>
  798. using the <tt/-V/ option to the source packaging commands, and certain
  799. predefined variables are available.
  800. <p>
  801. The file may be a static part of the source archive, or generated and
  802. modified dynamically by <tt>debian/rules</> targets. In the latter
  803. case it must be removed by the <prgn/clean/ target.
  804. <p>
  805. See <manref name=dpkg-source section=1> for full details about source
  806. variable substitutions, including the format of
  807. <tt>debian/substvars</>.
  808. <sect1><tt>debian/files</>
  809. <p>
  810. This file is not a permanent part of the source tree; it is used while
  811. building packages to record which files are being generated.
  812. <prgn/dpkg-genchanges/ uses it when it generates a <tt/.changes/ file.
  813. <p>
  814. It should not exist in a shipped source package, and so it (and any
  815. backup files or temporary files such as
  816. <tt/files.new/<footnote><tt/files.new/ is used as a temporary file by
  817. <prgn/dpkg-gencontrol/ and <prgn/dpkg-distaddfile/ - they write a new
  818. version of <tt/files/ here before renaming it, to avoid leaving a
  819. corrupted copy if an error occurs</footnote>) should be removed by the
  820. <prgn/clean/ target. It may also be wise to ensure a fresh start by
  821. emptying or removing it at the start of the <prgn/binary/ target.
  822. <p>
  823. <prgn/dpkg-gencontrol/ adds an entry to this file for the <tt/.deb/
  824. file that will be created by <prgn/dpkg-deb/ from the control file
  825. that it generates, so for most packages all that needs to be done with
  826. this file is to delete it in <prgn/clean/.
  827. <p>
  828. If a package upload includes files besides the source package and any
  829. binary packages whose control files were made with
  830. <prgn/dpkg-gencontrol/ then they should be placed in the parent of the
  831. package's top-level directory and <prgn/dpkg-distaddfile/ should be
  832. called to add the file to the list in <tt>debian/files</>.
  833. <sect1><tt>debian/tmp</>
  834. <p>
  835. This is the canonical temporary location for the construction of
  836. binary packages by the <prgn/binary/ target. The directory <tt/tmp/
  837. serves as the root of the filesystem tree as it is being constructed
  838. (for example, by using the package's upstream makefiles install
  839. targets and redirecting the output there), and it also contains the
  840. <tt/DEBIAN/ subdirectory. See <ref id="bincreating">.
  841. <p>
  842. If several binary packages are generated from the same source tree it
  843. is usual to use several <tt>debian/tmp<var/something/</> directories,
  844. for example <tt/tmp-a/ or <tt/tmp-doc/.
  845. <p>
  846. Whatever <tt>tmp</> directories are created and used by <prgn/binary/
  847. must of course be removed by the <prgn/clean/ target.
  848. <sect id="sourcearchives">Source packages as archives
  849. <p>
  850. As it exists on the FTP site, a Debian source package consists of
  851. three related files. You must have the right versions of all three to
  852. be able to use them.
  853. <p>
  854. <taglist>
  855. <tag/Debian source control file - <tt/.dsc//
  856. <item>
  857. This file contains a series of fields, identified and separated just
  858. like the fields in the control file of a binary package. The fields
  859. are listed below; their syntax is described above, in
  860. <ref id="controlfields">.
  861. <list compact>
  862. <item><qref id="f-Source"><tt/Source/</>
  863. <item><qref id="versions"><tt/Version/</>
  864. <item><qref id="f-Maintainer"><tt/Maintainer/</>
  865. <item><qref id="f-Binary"><tt/Binary/</>
  866. <item><qref id="f-Architecture"><tt/Architecture/</>
  867. <item><qref id="f-Standards-Version"><tt/Standards-Version/</>
  868. <item><qref id="f-Files"><tt/Files/</>
  869. </list>
  870. <p>
  871. The source package control file is generated by <prgn/dpkg-source/
  872. when it builds the source archive, from other files in the source
  873. package, described above. When unpacking it is checked against the
  874. files and directories in the other parts of the source package, as
  875. described below.
  876. <tag/Original source archive - <tt/<var/package/_<var/upstream-version/.orig.tar.gz//
  877. <item>
  878. This is a compressed (with <tt/gzip -9/) <prgn/tar/ file containing
  879. the source code from the upstream authors of the program. The tarfile
  880. unpacks into a directory
  881. <tt/<var/package/-<var/upstream-version/.orig/, and does not contain
  882. files anywhere other than in there or in its subdirectories.
  883. <tag/Debianisation diff - <tt/<var/package/_<var/version-revision/.diff.gz//
  884. <item>
  885. This is a unified context diff (<tt/diff -u/) giving the changes which
  886. are required to turn the original source into the Debian source.
  887. These changes may only include editing and creating plain files. The
  888. permissions of files, the targets of symbolic links and the
  889. characteristics of special files or pipes may not be changed and no
  890. files may be removed or renamed.
  891. <p>
  892. All the directories in the diff must exist, except the <tt/debian/
  893. subdirectory of the top of the source tree, which will be created by
  894. <prgn/dpkg-source/ if necessary when unpacking.
  895. <p>
  896. The <prgn/dpkg-source/ program will automatically make the
  897. <tt>debian/rules</tt> file executable (see below).
  898. </taglist>
  899. <p>
  900. If there is no original source code - for example, if the package is
  901. specially prepared for Debian or the Debian maintainer is the same as
  902. the upstream maintainer - the format is slightly different: then there
  903. is no diff, and the tarfile is named
  904. <tt/<var/package/_<var/version/.tar.gz</> and contains a directory
  905. <tt/<var/package/-<var/version/</>.
  906. <sect>Unpacking a Debian source package without <prgn/dpkg-source/
  907. <p>
  908. <tt/dpkg-source -x/ is the recommended way to unpack a Debian source
  909. package. However, if it is not available it is possible to unpack a
  910. Debian source archive as follows:
  911. <enumlist compact>
  912. <item>Untar the tarfile, which will create a <tt/.orig/ directory.
  913. <item>Rename the <tt/.orig/ directory to
  914. <tt/<var/package/-<var/version//.
  915. <item>Create the subdirectory <tt/debian/ at the top of the source
  916. tree.
  917. <item>Apply the diff using <tt/patch -p0/.
  918. <item>Untar the tarfile again if you want a copy of the original
  919. source code alongside the Debianised version.
  920. </enumlist>
  921. <p>
  922. It is not possible to generate a valid Debian source archive without
  923. using <prgn/dpkg-source/. In particular, attempting to use
  924. <prgn/diff/ directly to generate the <tt/.diff.gz/ file will not work.
  925. <sect1>Restrictions on objects in source packages
  926. <p>
  927. The source package may not contain any device special files, sockets
  928. or setuid or setgid files.<footnote>Setgid directories are
  929. allowed.</footnote>
  930. <p>
  931. The source packaging tools manage the changes between the original and
  932. Debianised source using <prgn/diff/ and <prgn/patch/. Turning the
  933. original source tree as included in the <tt/.orig.tar.gz/ into the
  934. debianised source must not involve any changes which cannot be handled
  935. by these tools. Problematic changes which cause <prgn/dpkg-source/ to
  936. halt with an error when building the source package are:
  937. <list compact>
  938. <item>Adding or removing symbolic links, sockets or pipes.
  939. <item>Changing the targets of symbolic links.
  940. <item>Creating directories, other than <tt/debian/.
  941. <item>Changes to the contents of binary files.
  942. </list>
  943. Changes which cause <prgn/dpkg-source/ to print a warning but continue
  944. anyway are:
  945. <list compact>
  946. <item>Removing files, directories or symlinks. <footnote>Renaming a
  947. file is not treated specially - it is seen as the removal of the old
  948. file (which generates a warning, but is otherwise ignored), and the
  949. creation of the new one.</footnote>
  950. </list>
  951. Changes which are not represented, but which are not detected by
  952. <prgn/dpkg-source/, are:
  953. <list compact>
  954. <item>Changing the permissions of files (other than
  955. <tt>debian/rules</>) and directories.
  956. </list>
  957. <p>
  958. The <tt/debian/ directory and <tt>debian/rules</> are handled
  959. specially by <prgn/dpkg-source/ - before applying the changes it will
  960. create the <tt/debian/ directory, and afterwards it will make
  961. <tt>debian/rules</> world-exectuable.
  962. <chapt id="controlfields">Control files and their fields
  963. <p>
  964. Many of the tools in the <prgn/dpkg/ suite manipulate data in a common
  965. format, known as control files. Binary and source packages have
  966. control data as do the <tt/.changes/ files which control the
  967. installation of uploaded files, and <prgn/dpkg/'s internal databases
  968. are in a similar format.
  969. <sect>Syntax of control files
  970. <p>
  971. A file consists of one or more paragraphs of fields. The paragraphs
  972. are separated by blank lines. Some control files only allow one
  973. paragraph; others allow several, in which case each paragraph often
  974. refers to a different package.
  975. <p>
  976. Each paragraph is a series of fields and values; each field consists
  977. of a name, followed by a colon and the value. It ends at the end of
  978. the line. Horizontal whitespace (spaces and tabs) may occur before or
  979. after the value and is ignored there; it is conventional to put a
  980. single space after the colon.
  981. <p>
  982. Some fields' values may span several lines; in this case each
  983. continuation line <em/must/ start with a space or tab. Any trailing
  984. spaces or tabs at the end of individual lines of a field value are
  985. ignored.
  986. <p>
  987. Except where otherwise stated only a single line of data is allowed
  988. and whitespace is not significant in a field body. Whitespace may
  989. never appear inside names (of packages, architectures, files or
  990. anything else), version numbers or in between the characters of
  991. multi-character version relationships.
  992. <p>
  993. Field names are not case-sensitive, but it is usual to capitalise the
  994. fields using mixed case as shown below.
  995. <p>
  996. Blank lines, or lines consisting only of spaces and tabs, are not
  997. allowed within field values or between fields - that would mean a new
  998. paragraph.
  999. <p>
  1000. It is important to note that there are several fields which are
  1001. optional as far as <prgn/dpkg/ and the related tools are concerned,
  1002. but which must appear in every Debian package, or whose omission may
  1003. cause problems. When writing the control files for Debian packages
  1004. you <em/must/ read the Debian policy manual in conjuction with the
  1005. details below and the list of fields for the particular file.
  1006. <sect>List of fields
  1007. <sect1 id="f-Package"><tt/Package/
  1008. <p>
  1009. The name of the binary package. Package names consist of the
  1010. alphanumerics and <tt/+/ <tt/-/ <tt/./ (plus, minus and full
  1011. stop).<footnote>The characters <tt/@/ <tt/:/ <tt/=/ <tt/%/ <tt/_/ (at,
  1012. colon, equals, percent and underscore) used to be legal and are still
  1013. accepted when found in a package file, but may not be used in new
  1014. packages</footnote>
  1015. <p>
  1016. They must be at least two characters and must start with an
  1017. alphanumeric. In current versions of dpkg they are sort of
  1018. case-sensitive<footnote>This is a bug.</footnote>; use lowercase
  1019. package names unless the package you're building (or referring to, in
  1020. other fields) is already using uppercase.
  1021. <sect1 id="f-Version"><tt/Version/
  1022. <p>
  1023. This lists the source or binary package's version number - see <ref
  1024. id="versions">.
  1025. <sect1 id="f-Architecture"><tt/Architecture/
  1026. <p>
  1027. This is the architecture string; it is a single word for the CPU
  1028. architecture.
  1029. <p>
  1030. <prgn/dpkg/ will check the declared architecture of a binary package
  1031. against its own compiled-in value before it installs it.
  1032. <p>
  1033. The special value <tt/all/ indicates that the package is
  1034. architecture-independent.
  1035. <p>
  1036. In the main <tt>debian/control</> file in the source package, or in
  1037. the source package control file <tt/.dsc/, a list of architectures
  1038. (separated by spaces) is also allowed, as is the special value
  1039. <tt/any/. A list indicates that the source will build an
  1040. architecture-dependent package, and will only work correctly on the
  1041. listed architectures. <tt/any/ indicates that though the source
  1042. package isn't dependent on any particular architecture and should
  1043. compile fine on any one, the binary package(s) produced are not
  1044. architecture-independent but will instead be specific to whatever the
  1045. current build architecture is.
  1046. <p>
  1047. In a <tt/.changes/ file the <tt/Architecture/ field lists the
  1048. architecture(s) of the package(s) currently being uploaded. This will
  1049. be a list; if the source for the package is being uploaded too the
  1050. special entry <tt/source/ is also present.
  1051. <p>
  1052. The current build architecture can be determined using <tt/dpkg
  1053. --print-architecture/.<footnote>This actually invokes
  1054. <example>
  1055. gcc --print-libgcc-file-name
  1056. </example>
  1057. and parses and decomposes the output and looks the CPU type from the
  1058. GCC configuration in a table in <prgn/dpkg/. This is so that it will
  1059. work if you're cross-compiling.
  1060. </footnote>
  1061. This value is automatically used by <prgn/dpkg-gencontrol/ when
  1062. building the control file for a binary package for which the source
  1063. control information doesn't specify architecture <tt/all/.
  1064. <p>
  1065. There is a separate option, <tt/--print-installation-architecture/,
  1066. for finding out what architecture <prgn/dpkg/ is willing to install.
  1067. This information is also in the output of <tt/dpkg --version/.
  1068. <sect1 id="f-Maintainer"><tt/Maintainer/
  1069. <p>
  1070. The package maintainer's name and email address. The name should come
  1071. first, then the email address inside angle brackets <tt/&lt;&gt/ (in
  1072. RFC822 format).
  1073. <p>
  1074. If the maintainer's name contains a full stop then the whole field
  1075. will not work directly as an email address due to a misfeature in the
  1076. syntax specified in RFC822; a program using this field as an address
  1077. must check for this and correct the problem if necessary (for example
  1078. by putting the name in round brackets and moving it to the end, and
  1079. bringing the email address forward).
  1080. <p>
  1081. In a <tt/.changes/ file or parsed changelog data this contains the
  1082. name and email address of the person responsible for the particular
  1083. version in question - this may not be the package's usual maintainer.
  1084. <p>
  1085. This field is usually optional in as far as the <prgn/dpkg/ are
  1086. concerned, but its absence when building packages usually generates a
  1087. warning.
  1088. <sect1 id="f-Source"><tt/Source/
  1089. <p>
  1090. This field identifies the source package name.
  1091. <p>
  1092. In a main source control information or a <tt/.changes/ or <tt/.dsc/
  1093. file or parsed changelog data this may contain only the name of the
  1094. source package.
  1095. <p>
  1096. In the control file of a binary package (or in a <tt/Packages/ file)
  1097. it may be followed by a version number in parentheses.<footnote>It is
  1098. usual to leave a space after the package name if a version number is
  1099. specified.</footnote> This version number may be omitted (and is, by
  1100. <prgn/dpkg-gencontrol/) if it has the same value as the <tt/Version/
  1101. field of the binary package in question. The field itself may be
  1102. omitted from a binary package control file when the source package has
  1103. the same name and version as the binary package.
  1104. <sect1>Package interrelationship fields:
  1105. <tt/Depends/, <tt/Pre-Depends/, <tt/Recommends/
  1106. <tt/Suggests/, <tt/Conflicts/, <tt/Provides/, <tt/Replaces/
  1107. <p>
  1108. These fields describe the package's relationships with other packages.
  1109. Their syntax and semantics are described in <ref id="relationships">.
  1110. <sect1 id="f-Description"><tt/Description/
  1111. <p>
  1112. In a binary package <tt/Packages/ file or main source control file
  1113. this field contains a description of the binary package, in a special
  1114. format. See <ref id="descriptions"> for details.
  1115. <p>
  1116. In a <tt/.changes/ file it contains a summary of the descriptions for
  1117. the packages being uploaded. The part of the field before the first
  1118. newline is empty; thereafter each line has the name of a binary
  1119. package and the summary description line from that binary package.
  1120. Each line is indented by one space.
  1121. <sect1 id="f-Essential"><tt/Essential/
  1122. <p>
  1123. This is a boolean field which may occur only in the control file of a
  1124. binary package (or in the <tt/Packages/ file) or in a per-package
  1125. fields paragraph of a main source control data file.
  1126. <p>
  1127. If set to <tt/yes/ then <prgn/dpkg/ and <prgn/dselect/ will refuse to
  1128. remove the package (though it can be upgraded and/or replaced). The
  1129. other possible value is <tt/no/, which is the same as not having the
  1130. field at all.
  1131. <sect1 id="f-classification"><tt/Section/ and <tt/Priority/
  1132. <p>
  1133. These two fields classify the package. The <tt/Priority/ represents
  1134. how important that it is that the user have it installed; the
  1135. <tt/Section/ represents an application area into which the package has
  1136. been classified.
  1137. <p>
  1138. When they appear in the <tt>debian/control</> file these fields give
  1139. values for the section and priority subfields of the <tt/Files/ field
  1140. of the <tt/.changes/ file, and give defaults for the section and
  1141. priority of the binary packages.
  1142. <p>
  1143. The section and priority are represented, though not as separate
  1144. fields, in the information for each file in the <qref
  1145. id="f-Files"><tt/Files/</> field of a <tt/.changes/ file. The
  1146. section value in a <tt/.changes/ file is used to decide where to
  1147. install a package in the FTP archive.
  1148. <p>
  1149. These fields are not used by by <prgn/dpkg/ proper, but by
  1150. <prgn/dselect/ when it sorts packages and selects defaults. See the
  1151. Debian policy manual for the priorities in use and the criteria for
  1152. selecting the priority for a Debian package, and look at the Debian
  1153. FTP archive for a list of currently in-use priorities.
  1154. <p>
  1155. These fields may appear in binary package control files, in which case
  1156. they provide a default value in case the <tt/Packages/ files are
  1157. missing the information. <prgn/dpkg/ and <prgn/dselect/ will only use
  1158. the value from a <tt/.deb/ file if they have no other information; a
  1159. value listed in a <tt/Packages/ file will always take precedence. By
  1160. default <prgn/dpkg-genchanges/ does not include the section and
  1161. priority in the control file of a binary package - use the <tt/-isp/,
  1162. <tt/-is/ or <tt/-ip/ options to achieve this effect.
  1163. <sect1 id="f-Binary"><tt/Binary/
  1164. <p>
  1165. This field is a list of binary packages.
  1166. <p>
  1167. When it appears in the <tt/.dsc/ file it is the list of binary
  1168. packages which a source package can produce. It does not necessarily
  1169. produce all of these binary packages for every architecture. The
  1170. source control file doesn't contain details of which architectures are
  1171. appropriate for which of the binary packages.
  1172. <p>
  1173. When it appears in a <tt/.changes/ file it lists the names of the
  1174. binary packages actually being uploaded.
  1175. <p>
  1176. The syntax is a list of binary packages separated by
  1177. commas.<footnote>A space after each comma is conventional.</footnote>
  1178. Currently the packages must be separated using only spaces in the
  1179. <tt/.changes/ file.
  1180. <sect1 id="f-Installed-Size"><tt/Installed-Size/
  1181. <p>
  1182. This field appears in the control files of binary packages, and in the
  1183. <tt/Packages/ files. It gives the total amount of disk space
  1184. required to install the named package.
  1185. <p>
  1186. The disk space is represented in kilobytes as a simple decimal number.
  1187. <sect1 id="f-Files"><tt/Files/
  1188. <p>
  1189. This field contains a list of files with information about each one.
  1190. The exact information and syntax varies with the context. In all
  1191. cases the the part of the field contents on the same line as the field
  1192. name is empty. The remainder of the field is one line per file, each
  1193. line being indented by one space and containing a number of sub-fields
  1194. separated by spaces.
  1195. <p>
  1196. In the <tt/.dsc/ (Debian source control) file each line contains the
  1197. MD5 checksum, size and filename of the tarfile and (if applicable)
  1198. diff file which make up the remainder of the source
  1199. package.<footnote>That is, the parts which are not the
  1200. <tt/.dsc/.</footnote> The exact forms of the filenames are described
  1201. in <ref id="sourcearchives">.
  1202. <p>
  1203. In the <tt/.changes/ file this contains one line per file being
  1204. uploaded. Each line contains the MD5 checksum, size, section and
  1205. priority and the filename. The section and priority are the values of
  1206. the corresponding fields in the main source control file - see <ref
  1207. id="f-classification">. If no section or priority is specified then
  1208. <tt/-/ should be used, though section and priority values must be
  1209. specified for new packages to be installed properly.
  1210. <p>
  1211. The special value <tt/byhand/ for the section in a <tt/.changes/ file
  1212. indicates that the file in question is not an ordinary package file
  1213. and must by installed by hand by the distribution maintainers. If the
  1214. section is <tt/byhand/ the priority should be <tt/-/.
  1215. <p>
  1216. If a new Debian revision of a package is being shipped and no new
  1217. original source archive is being distributed the <tt/.dsc/ must still
  1218. contain the <tt/Files/ field entry for the original source archive
  1219. <tt/<var/package/-<var/upstream-version/.orig.tar.gz/, but the
  1220. <tt/.changes/ file should leave it out. In this case the original
  1221. source archive on the distribution site must match exactly,
  1222. byte-for-byte, the original source archive which was used to generate
  1223. the <tt/.dsc/ file and diff which are being uploaded.
  1224. <sect1 id="f-Standards-Version"><tt/Standards-Version/
  1225. <p>
  1226. The most recent version of the standards (the <prgn/dpkg/ programmers'
  1227. and policy manuals and associated texts) with which the package
  1228. complies. This is updated manually when editing the source package to
  1229. conform to newer standards; it can sometimes be used to tell when a
  1230. package needs attention.
  1231. <p>
  1232. Its format is the same as that of a version number except that no
  1233. epoch or Debian revision is allowed - see <ref id="versions">.
  1234. <sect1 id="f-Distribution"><tt/Distribution/
  1235. <p>
  1236. In a <tt/.changes/ file or parsed changelog output this contains the
  1237. (space-separated) name(s) of the distribution(s) where this version of
  1238. the package should be or was installed. Distribution names follow the
  1239. rules for package names. (See <ref id="f-Package">).
  1240. <p>
  1241. Current distribution values are <tt/stable/, <tt/unstable/,
  1242. <tt/contrib/, <tt/non-free/ and <tt/experimental/.
  1243. <sect1 id="f-Urgency"><tt/Urgency/
  1244. <p>
  1245. This is a description of how important it is to upgrade to this
  1246. version from previous ones. It consists of a single keyword usually
  1247. taking one of the values <tt/LOW/, <tt/MEDIUM/ or <tt/HIGH/) followed
  1248. by an optional commentary (separated by a space) which is usually in
  1249. parentheses. For example:
  1250. <example>
  1251. Urgency: LOW (HIGH for diversions users)
  1252. </example>
  1253. <p>
  1254. This field appears in the <tt/.changes/ file and in parsed changelogs;
  1255. its value appears as the value of the <tt/urgency/ attribute in a
  1256. <prgn/dpkg/-style changelog (see <ref id="dpkgchangelog">).
  1257. <p>
  1258. Urgency keywords are not case-sensitive.
  1259. <sect1 id="f-Date"><tt/Date/
  1260. <p>
  1261. In <tt/.changes/ files and parsed changelogs, this gives the date the
  1262. package was built or last edited.
  1263. <sect1 id="f-Format"><tt/Format/
  1264. <p>
  1265. This field occurs in <tt/.changes/ files, and specifies a format
  1266. revision for the file. The format described here is version <tt/1.5/.
  1267. The syntax of the format value is the same as that of a package
  1268. version number except that no epoch or Debian revision is allowed -
  1269. see <ref id="versions">.
  1270. <sect1 id="f-Changes"><tt/Changes/
  1271. <p>
  1272. In a <tt/.changes/ file or parsed changelog this field contains the
  1273. human-readable changes data, describing the differences between the
  1274. last version and the current one.
  1275. <p>
  1276. There should be nothing in this field before the first newline; all
  1277. the subsequent lines must be indented by at least one space; blank
  1278. lines must be represented by a line consiting only of a space and a
  1279. full stop.
  1280. <p>
  1281. Each version's change information should be preceded by a `title' line
  1282. giving at least the version, distribution(s) and urgency, in a
  1283. human-readable way.
  1284. <p>
  1285. If data from several versions is being returned the entry for the most
  1286. recent version should be returned first, and entries should be
  1287. separated by the representation of a blank line (the `title' line may
  1288. also be followed by the representation of blank line).
  1289. <sect1 id="f-Filename"><tt/Filename/ and <tt/MSDOS-Filename/
  1290. <p>
  1291. These fields in <tt/Packages/ files give the filename(s) of (the parts
  1292. of) a package in the distribution directories, relative to the root of
  1293. the Debian hierarchy. If the package has been split into several
  1294. parts the parts are all listed in order, separated by spaces.
  1295. <sect1 id="f-Size"><tt/Size/ and <tt/MD5sum/
  1296. <p>
  1297. These fields in <tt/Packages/ files give the size (in bytes, expressed
  1298. in decimal) and MD5 checksum of the file(s) which make(s) up a binary
  1299. package in the distribution. If the package is split into several
  1300. parts the values for the parts are listed in order, separated by
  1301. spaces.
  1302. <sect1 id="f-Status"><tt/Status/
  1303. <p>
  1304. This field in <prgn/dpkg/'s status file records whether the user wants a
  1305. package installed, removed or left alone, whether it is broken
  1306. (requiring reinstallation) or not and what its current state on the
  1307. system is. Each of these pieces of information is a single word.
  1308. <sect1 id="f-Config-Version"><tt/Config-Version/
  1309. <p>
  1310. If a package is not installed or not configured, this field in
  1311. <prgn/dpkg/'s status file records the last version of the package which
  1312. was successfully configured.
  1313. <sect1 id="f-Conffiles"><tt/Conffiles/
  1314. <p>
  1315. This field in <prgn/dpkg/'s status file contains information about the
  1316. automatically-managed configuration files held by a package. This
  1317. field should <em/not/ appear anywhere in a package!
  1318. <sect1>Obsolete fields
  1319. <p>
  1320. These are still recognised by <prgn/dpkg/ but should not appear anywhere
  1321. any more.
  1322. <taglist compact>
  1323. <tag><tt/Revision/
  1324. <tag><tt/Package-Revision/
  1325. <tag><tt/Package_Revision/
  1326. <item>
  1327. The Debian revision part of the package version was at one point in a
  1328. separate control file field. This field went through several names.
  1329. <tag><tt/Recommended/
  1330. <item>Old name for <tt/Recommends/
  1331. <tag><tt/Optional/
  1332. <item>Old name for <tt/Suggests/.
  1333. <tag><tt/Class/
  1334. <item>Old name for <tt/Priority/.
  1335. </taglist>
  1336. <chapt id="versions">Version numbering
  1337. <p>
  1338. Every package has a version number, in its <tt/Version/ control file
  1339. field.
  1340. <p>
  1341. <prgn/dpkg/ imposes an ordering on version numbers, so that it can tell
  1342. whether packages are being up- or downgraded and so that <prgn/dselect/
  1343. can tell whether a package it finds available is newer than the one
  1344. installed on the system. The version number format has the most
  1345. significant parts (as far as comparison is concerned) at the
  1346. beginning.
  1347. <p>
  1348. The version number format is:
  1349. &lsqb<var/epoch/<tt/:/&rsqb;<var/upstream-version/&lsqb;<tt/-/<var/debian-revision/&rsqb;.
  1350. <p>
  1351. The three components here are:
  1352. <taglist>
  1353. <tag><var/epoch/
  1354. <item>
  1355. This is a single unsigned integer, which should usually be small. It
  1356. may be omitted, in which case zero is assumed. If it is omitted then
  1357. the <var/upstream-version/ may not contain any colons.
  1358. <p>
  1359. It is provided to allow mistakes in the version numbers of older
  1360. versions of a package, and also a package's previous version numbering
  1361. schemes, to be left behind.
  1362. <p>
  1363. <prgn/dpkg/ will not usually display the epoch unless it is essential
  1364. (non-zero, or if the <var/upstream-version/ contains a colon);
  1365. <prgn/dselect/ does not display epochs at all in the main part of the
  1366. package selection display.
  1367. <tag><var/upstream-version/
  1368. <item>
  1369. This is the main part of the version. It is usually version number of
  1370. the original (`upstream') package of which the <tt/.deb/ file has been
  1371. made, if this is applicable. Usually this will be in the same format
  1372. as that specified by the upstream author(s); however, it may need to
  1373. be reformatted to fit into <prgn/dpkg/'s format and comparison scheme.
  1374. <p>
  1375. The comparison behaviour of <prgn/dpkg/ with respect to the
  1376. <var/upstream-version/ is described below. The <var/upstream-version/
  1377. portion of the version number is mandatory.
  1378. <p>
  1379. The <var/upstream-version/ may contain only alphanumerics and the
  1380. characters <tt/+/ <tt/./ <tt/-/ <tt/:/ (full stop, plus, hyphen,
  1381. colon) and should start with a digit. If there is no
  1382. <var/debian-revision/ then hyphens are not allowed; if there is no
  1383. <var/epoch/ then colons are not allowed.
  1384. <tag><var/debian-revision/
  1385. <item>
  1386. This part of the version represents the version of the modifications
  1387. that were made to the package to make it a Debian binary package. It
  1388. is in the same format as the <var/upstream-version/ and <prgn/dpkg/
  1389. compares it in the same way.
  1390. <p>
  1391. It is optional; if it isn't present then the <var/upstream-version/
  1392. may not contain a hyphen. This format represents the case where a
  1393. piece of software was written specifically to be turned into a Debian
  1394. binary package, and so there is only one `debianization' of it and
  1395. therefore no revision indication is required.
  1396. <p>
  1397. It is conventional to restart the <var/debian-revision/ at <tt/1/ each
  1398. time the <var/upstream-version/ is increased.
  1399. <p>
  1400. <prgn/dpkg/ will break the <var/upstream-version/ and
  1401. <var/debian-revision/ apart at the last hyphen in the string. The
  1402. absence of a <var/debian-revision/ compares earlier than the presence
  1403. of one (but note that the <var/debian-revision/ is the least
  1404. significant part of the version number).
  1405. <p>
  1406. The <var/debian-revision/ may contain only alphanumerics and the
  1407. characters <tt/+/ and <tt/./ (plus and full stop).
  1408. </taglist>
  1409. The <var/upstream-version/ and <var/debian-revision/ parts are
  1410. compared by <prgn/dpkg/ using the same algorithm:
  1411. <p>
  1412. The strings are compared from left to right.
  1413. <p>
  1414. First the initial part of each string consisting entirely of non-digit
  1415. characters is determined. These two parts (one of which may be empty)
  1416. are compared lexically. If a difference is found it is returned. The
  1417. lexical comparison is a comparison of ASCII values modified so that
  1418. all the letters sort earlier than all the non-letters.
  1419. <p>
  1420. Then the initial part of the remainder of each string which consists
  1421. entirely of digit characters is determined. The numerical values of
  1422. these two parts are compared, and any difference found is returned as
  1423. the result of the comparison. For these purposes an empty string
  1424. (which can only occur at the end of one or both version strings being
  1425. compared) counts as zero.
  1426. <p>
  1427. These two steps are repeated (chopping initial non-digit strings and
  1428. initial digit strings off from the start) until a difference is found
  1429. or both strings are exhausted.
  1430. <p>
  1431. Note that the purpose of epochs is to allow us to leave behind
  1432. mistakes in version numbering, and to cope with situations where the
  1433. version numbering changes. It is <em/not/ there to cope with version
  1434. numbers containing strings of letters which <prgn/dpkg/ cannot interpret
  1435. (such as <tt/ALPHA/ or <tt/pre-/), or with silly orderings (the author
  1436. of this manual has heard of a package whose versions went <tt/1.1/,
  1437. <tt/1.2/, <tt/1.3/, <tt/1/, <tt/2.1/, <tt/2.2/, <tt/2/ and so forth).
  1438. <p>
  1439. If an upstream package has problematic version numbers they should be
  1440. converted to a sane form for use in the <tt/Version/ field.
  1441. <chapt id="maintainerscripts">Package maintainer scripts
  1442. and installation procedure
  1443. <sect>Introduction to package maintainer scripts
  1444. <p>
  1445. It is possible supply scripts as part of a package which <prgn/dpkg/
  1446. will run for you when your package is installed, upgraded or removed.
  1447. <p>
  1448. These scripts should be the files <tt/preinst/, <tt/postinst/,
  1449. <tt/prerm/ and <tt/postrm/ in the control area of the package. They
  1450. must be proper exectuable files; if they are scripts (which is
  1451. recommended) they must start with the usual <tt/#!/ convention. They
  1452. should be readable and executable to anyone, and not world-writeable.
  1453. <p>
  1454. <prgn/dpkg/ looks at the exit status from these scripts. It is
  1455. important that they exit with a non-zero status if there is an error,
  1456. so that <prgn/dpkg/ can stop its processing. For shell scripts this
  1457. means that you <em/almost always/ need to use <tt/set -e/ (this is
  1458. usually true when writing shell scripts, in fact). It is also
  1459. important, of course, that they don't exit with a non-zero status if
  1460. everything went well.
  1461. <p>
  1462. It is necessary for the error recovery procedures that the scripts be
  1463. idempotent: ie, invoking the same script several times in the same
  1464. situation should do no harm. If the first call failed, or aborted
  1465. half way through for some reason, the second call should merely do the
  1466. things that were left undone the first time, if any, and exit with a
  1467. success status.
  1468. <p>
  1469. When a package is upgraded a combination of the scripts from the old
  1470. and new packages is called in amongst the other steps of the upgrade
  1471. procedure. If your scripts are going to be at all complicated you
  1472. need to be aware of this, and may need to check the arguments to your
  1473. scripts.
  1474. <p>
  1475. Broadly speaking the <prgn/preinst/ is called before (a particular
  1476. version of) a package is installed, and the <prgn/postinst/ afterwards;
  1477. the <prgn/prerm/ before (a version of) a package is removed and the
  1478. <prgn/postrm/ afterwards.
  1479. <sect id="mscriptsinstact">Summary of ways maintainer scripts are called
  1480. <p>
  1481. <list compact>
  1482. <item><var/new-preinst/ <tt/install/
  1483. <item><var/new-preinst/ <tt/install/ <var/old-version/
  1484. <item><var/new-preinst/ <tt/upgrade/ <var/old-version/
  1485. <item><var/old-preinst/ <tt/abort-upgrade/ <var/new-version/
  1486. </list>
  1487. <p>
  1488. <list compact>
  1489. <item><var/postinst/ <tt/configure/ <var/most-recently-configured-version/
  1490. <item><var/old-postinst/ <tt/abort-upgrade/ <var/new version/
  1491. <item><var/conflictor's-postinst/ <tt/abort-remove/
  1492. <tt/in-favour/ <var/package/ <var/new-version/
  1493. <item><var/deconfigured's-postinst/ <tt/abort-deconfigure/
  1494. <tt/in-favour/ <var/failed-install-package/ <var/version/
  1495. <tt/removing/ <var/conflicting-package/ <var/version/
  1496. </list>
  1497. <p>
  1498. <list compact>
  1499. <item><var/prerm/ <tt/remove/
  1500. <item><var/old-prerm/ <tt/upgrade/ <var/new-version/
  1501. <item><var/new-prerm/ <tt/failed-upgrade/ <var/old-version/
  1502. <item><var/conflictor's-prerm/ <tt/remove/ <tt/in-favour/
  1503. <var/package/ <var/new-version/
  1504. <item><var/deconfigured's-prerm/ <tt/deconfigure/
  1505. <tt/in-favour/ <var/package-being-installed/ <var/version/
  1506. <tt/removing/ <var/conflicting-package/ <var/version/
  1507. </list>
  1508. <p>
  1509. <list compact>
  1510. <item><var/postrm/ <tt/remove/
  1511. <item><var/postrm/ <tt/purge/
  1512. <item><var/old-postrm/ <tt/upgrade/ <var/new-version/
  1513. <item><var/new-postrm/ <tt/failed-upgrade/ <var/old-version/
  1514. <item><var/new-postrm/ <tt/abort-install/
  1515. <item><var/new-postrm/ <tt/abort-install/ <var/old-version/
  1516. <item><var/new-postrm/ <tt/abort-upgrade/ <var/old-version/
  1517. <item><var/disappearer's-postrm/ <tt/disappear/ <var/overwriter/ <var/new-version/
  1518. </list>
  1519. <sect>Details of unpack phase of installation or upgrade
  1520. <p>
  1521. The procedure on installation/upgrade/overwrite/disappear (ie, when
  1522. running <tt/dpkg --unpack/, or the unpack stage of <tt/dpkg
  1523. --install/) is as follows. In each case if an error occurs the
  1524. actions in are general run backwards - this means that the maintainer
  1525. scripts are run with different arguments in reverse order. These are
  1526. the `error unwind' calls listed below.
  1527. <enumlist>
  1528. <item>
  1529. <enumlist>
  1530. <item>
  1531. If a version the package is already
  1532. installed, call
  1533. <example>
  1534. <var/old-prerm/ upgrade <var/new-version/
  1535. </example>
  1536. <item>
  1537. If this gives an error (ie, a non-zero exit status), dpkg will
  1538. attempt instead:
  1539. <example>
  1540. <var/new-prerm/ failed-upgrade <var/old-version/
  1541. </example>
  1542. Error unwind, for both the above cases:
  1543. <example>
  1544. <var/old-postinst/ abort-upgrade <var/new-version/
  1545. </example>
  1546. </enumlist>
  1547. <item>
  1548. If a `conflicting' package is being removed at the same time:
  1549. <enumlist>
  1550. <item>
  1551. If any packages depended on that conflicting package and
  1552. <tt/--auto-deconfigure/ is specified, call, for each such package:
  1553. <example>
  1554. <var/deconfigured's-prerm/ deconfigure \
  1555. in-favour <var/package-being-installed/ <var/version/ \
  1556. removing <var/conflicting-package/ <var/version/
  1557. </example>
  1558. Error unwind:
  1559. <example>
  1560. <var/deconfigured's-postinst/ abort-deconfigure \
  1561. in-favour <var/package-being-installed-but-failed/ <var/version/ \
  1562. removing <var/conflicting-package/ <var/version/
  1563. </example>
  1564. The deconfigured packages are marked as requiring configuration, so
  1565. that if <tt/--install/ is used they will be configured again if
  1566. possible.
  1567. <item>
  1568. To prepare for removal of the conflicting package, call:
  1569. <example>
  1570. <var/conflictor's-prerm/ remove in-favour <var/package/ <var/new-version/
  1571. </example>
  1572. Error unwind:
  1573. <example>
  1574. <var/conflictor's-postinst/ abort-remove \
  1575. in-favour <var/package/ <var/new-version/
  1576. </example>
  1577. </enumlist>
  1578. <item>
  1579. <enumlist>
  1580. <item>
  1581. If the package is being upgraded, call:
  1582. <example>
  1583. <var/new-preinst/ upgrade <var/old-version/
  1584. </example>
  1585. <item>
  1586. Otherwise, if the package had some configuration files from a previous
  1587. version installed (ie, it is in the `configuration files only' state):
  1588. <example>
  1589. <var/new-preinst/ install <var/old-version/
  1590. </example>
  1591. <item>
  1592. Otherwise (ie, the package was completely purged):
  1593. <example>
  1594. <var/new-preinst/ install
  1595. </example>
  1596. Error unwind versions, respectively:
  1597. <example>
  1598. <var/new-postrm/ abort-upgrade <var/old-version/
  1599. <var/new-postrm/ abort-install <var/old-version/
  1600. <var/new-postrm/ abort-install
  1601. </example>
  1602. </enumlist>
  1603. <item>
  1604. The new package's files are unpacked, overwriting any that may be on
  1605. the system already, for example any from the old version of the same
  1606. package or from another package (backups of the old files are left
  1607. around, and if anything goes wrong dpkg will attempt to put them back
  1608. as part of the error unwind).
  1609. <p>
  1610. It is an error for a package to contains files which are on the system
  1611. in another package, unless <tt/Replaces/ is used (see
  1612. <ref id="replaces">). Currently the <tt/--force-overwrite/ flag is
  1613. enabled, downgrading it to a warning, but this may not always be the
  1614. case.
  1615. <p>
  1616. It is a more serious error for a package to contain a plain file or
  1617. other kind of nondirectory where another package has a directory
  1618. (again, unless <tt/Replaces/ is used). This error can be overridden
  1619. if desired using <tt/--force-overwrite-dir/, but this is not -->
  1620. --advisable.
  1621. <p>
  1622. Packages which overwrite each other's files produce behaviour which
  1623. though deterministic is hard for the system administrator to
  1624. understand. It can easily lead to `missing' programs if, for example,
  1625. a package is installed which overwrites a file from another package,
  1626. and is then removed again.<footnote>Part of the problem is due to what
  1627. is arguably a bug in <prgn/dpkg/.</footnote>
  1628. <p>
  1629. A directory will never be replaced by a symbolic links to a directory
  1630. or vice versa; instead, the existing state (symlink or not) will be
  1631. left alone and <prgn/dpkg/ will follow the symlink if there is one.
  1632. <item>
  1633. <enumlist>
  1634. <item>
  1635. If the package is being upgraded, call
  1636. <example>
  1637. <var/old-postrm/ upgrade <var/new-version/
  1638. </example>
  1639. <item>
  1640. If this fails, <prgn/dpkg/ will attempt:
  1641. <example>
  1642. <var/new-postrm/ failed-upgrade <var/old-version/
  1643. </example>
  1644. Error unwind, for both cases:
  1645. <example>
  1646. <var/old-preinst/ abort-upgrade <var/new-version/
  1647. </example>
  1648. </enumlist>
  1649. This is the point of no return - if <prgn/dpkg/ gets this far, it won't
  1650. back off past this point if an error occurs. This will leave the
  1651. package in a fairly bad state, which will require a successful
  1652. reinstallation to clear up, but it's when <prgn/dpkg/ starts doing
  1653. things that are irreversible.
  1654. <item>
  1655. Any files which were in the old version of the package but not in the
  1656. new are removed.
  1657. <item>
  1658. The new file list replaces the old.
  1659. <item>
  1660. The new maintainer scripts replace the old.
  1661. <item>
  1662. Any packages all of whose files have been overwritten during the
  1663. installation, and which aren't required for dependencies, are considered
  1664. to have been removed. For each such package,
  1665. <enumlist>
  1666. <item>
  1667. <prgn/dpkg/ calls:
  1668. <example>
  1669. <var/disappearer's-postrm/ disappear \
  1670. <var/overwriter/ <var/overwriter-version/
  1671. </example>
  1672. <item>
  1673. The package's maintainer scripts are removed.
  1674. <item>
  1675. It is noted in the status database as being in a sane state, namely
  1676. not installed (any conffiles it may have are ignored, rather than
  1677. being removed by <prgn/dpkg/). Note that disappearing packages do not
  1678. have their prerm called, because <prgn/dpkg/ doesn't know in advance
  1679. that the package is going to vanish.
  1680. </enumlist>
  1681. <item>
  1682. Any files in the package we're unpacking that are also listed in the
  1683. file lists of other packages are removed from those lists. (This will
  1684. lobotomise the file list of the `conflicting' package if there is one.)
  1685. <item>
  1686. The backup files made during installation, above, are deleted.
  1687. <item>
  1688. The new package's status is now sane, and recorded as `unpacked'. Here
  1689. is another point of no return - if the conflicting package's removal
  1690. fails we do not unwind the rest of the installation; the conflicting
  1691. package is left in a half-removed limbo.
  1692. <item>
  1693. If there was a conflicting package we go and do the removal actions
  1694. (described below), starting with the removal of the conflicting
  1695. package's files (any that are also in the package being installed
  1696. have already been removed from the conflicting package's file list,
  1697. and so do not get removed now).
  1698. </enumlist>
  1699. <sect>Details of configuration
  1700. <p>
  1701. When we configure a package (this happens with <tt/dpkg --install/, or
  1702. with <tt/--configure/), we first update the conffiles and then call:
  1703. <example>
  1704. <var/postinst/ configure <var/most-recently-configured-version/
  1705. </example>
  1706. <p>
  1707. No attempt is made to unwind after errors during configuration.
  1708. <p>
  1709. If there is no most recently configured version <prgn/dpkg/ will pass a
  1710. null argument; older versions of dpkg may pass
  1711. <tt>&lt;unknown&gt;</tt> (including the angle brackets) in this case.
  1712. Even older ones do not pass a second argument at all, under any
  1713. circumstances.
  1714. <sect>Details of removal and/or configuration purging
  1715. <p>
  1716. <enumlist>
  1717. <item>
  1718. <example>
  1719. <var/prerm/ remove
  1720. </example>
  1721. <item>
  1722. The package's files are removed (except conffiles).
  1723. <item>
  1724. <example>
  1725. <var/postrm/ remove
  1726. </example>
  1727. <item>
  1728. All the maintainer scripts except the postrm are removed.
  1729. <p>
  1730. If we aren't purging the package we stop here. Note that packages
  1731. which have no postrm and no conffiles are automatically purged when
  1732. removed, as there is no difference except for the <prgn/dpkg/ status.
  1733. <item>
  1734. The conffiles and any backup files (<tt/~/-files, <tt/#*#/ files,
  1735. <tt/%/-files, <tt/.dpkg-{old,new,tmp}/, etc.) are removed.
  1736. <item>
  1737. <example>
  1738. <var/postrm/ purge
  1739. </example>
  1740. <item>
  1741. The package's file list is removed.
  1742. </enumlist>
  1743. No attempt is made to unwind after errors during removal.
  1744. <chapt id="descriptions">Descriptions of packages - the
  1745. <tt/Description/ field
  1746. <p>
  1747. The <tt/Description/ control file field is used by <prgn/dselect/ when
  1748. the user is selecting which packages to install and by <prgn/dpkg/
  1749. when it displays information about the status of packages and so
  1750. forth. It is included on the FTP site in the <prgn/Packages/ files,
  1751. and may also be used by the Debian WWW pages.
  1752. <p>
  1753. The description is intended to describe the program to a user who has
  1754. never met it before so that they know whether they want to install it.
  1755. It should also give information about the significant dependencies and
  1756. conflicts between this package and others, so that the user knows why
  1757. these dependencies and conflicts have been declared.
  1758. <p>
  1759. The field's format is as follows:
  1760. <example>
  1761. Description: <var/single line synopsis/
  1762. <var/extended description over several lines/
  1763. </example>
  1764. <p>
  1765. The synopsis is often printed in lists of packages and so forth, and
  1766. should be as informative as possible. Every package should also have
  1767. an extended description.
  1768. <p>
  1769. <sect>Types of formatting line in the extended description
  1770. <p>
  1771. <list>
  1772. <item>
  1773. Those starting with a single space are part of a paragraph.
  1774. Successive lines of this form will be word-wrapped when displayed.
  1775. The leading space will usually be stripped off.
  1776. <item>
  1777. Those starting with two or more spaces. These will be displayed
  1778. verbatim. If the display cannot be panned horizontally the
  1779. displaying program will linewrap them `hard' (ie, without taking
  1780. account of word breaks). If it can they will be allowed to trail
  1781. off to the right. None, one or two initial spaces may be deleted,
  1782. but the number of spaces deleted from each line will be the same
  1783. (so that you can have indenting work correctly, for example).
  1784. <item>
  1785. Those containing a single space followed by a single full stop
  1786. character. These are rendered as blank lines. This is the <em/only/
  1787. way to get a blank line - see below.
  1788. <item>
  1789. Those containing a space, a full stop and some more characters. These
  1790. are for future expansion. Do not use them.
  1791. </list>
  1792. <sect>Notes about writing descriptions
  1793. <p>
  1794. <em/Always/ start extended description lines with at least one
  1795. whitespace character. Fields in the control file and in the Packages
  1796. file are separated by field names starting in the first column, just
  1797. as message header fields are in RFC822. Forgetting the whitespace
  1798. will cause <prgn/dpkg-deb/<footnote>Version 0.93.23 or
  1799. later.</footnote> to produce a syntax error when trying to build the
  1800. package. If you force it to build anyway <prgn/dpkg/ will refuse to
  1801. install the resulting mess.
  1802. <p>
  1803. <em/Do not/ include any completely <em/empty/ lines. These separate
  1804. different records in the Packages file and different packages in the
  1805. <tt>debian/control</> file, and are forbidden in package control
  1806. files. See the previous paragraph for what happens if you get this
  1807. wrong.
  1808. <p>
  1809. The single line synopsis should be kept brief - certainly under 80
  1810. characters. <prgn/dselect/ displays between 25 and 49 characters
  1811. without panning if you're using an 80-column terminal, depending on
  1812. what display options are in effect.
  1813. <p>
  1814. Do not include the package name in the synopsis line. The display
  1815. software knows how to display this already, and you do not need to
  1816. state it. Remember that in many situations the user may only see
  1817. the synopsis line - make it as informative as you can.
  1818. <p>
  1819. The extended description should describe what the package does and
  1820. how it relates to the rest of the system (in terms of, for
  1821. example, which subsystem it is which part of).
  1822. <p>
  1823. The blurb that comes with a program in its announcements and/or
  1824. <prgn/README/ files is rarely suitable for use in a description. It
  1825. is usually aimed at people who are already in the community where the
  1826. package is used. The description field needs to make sense to anyone,
  1827. even people who have no idea about any of the
  1828. things the package deals with.
  1829. <p>
  1830. Put important information first, both in the synopis and extended
  1831. description. Sometimes only the first part of the synopsis or of
  1832. the description will be displayed. You can assume that there will
  1833. usually be a way to see the whole extended description.
  1834. <p>
  1835. You may include information about dependencies and so forth in the
  1836. extended description, if you wish.
  1837. <p>
  1838. Do not use tab characters. Their effect is not predictable.
  1839. <p>
  1840. Do not try to linewrap the summary (the part on the same line as the
  1841. field name <tt/Description/) into the extended description. This will
  1842. not work correctly when the full description is displayed, and makes
  1843. no sense where only the summary is available.
  1844. <sect>Example description in control file for Smail
  1845. <p>
  1846. <example>
  1847. Package: smail
  1848. Version: 3.1.29.1-13
  1849. Maintainer: Ian Jackson &lt;iwj10@cus.cam.ac.uk&gt;
  1850. Recommends: pine | mailx | elm | emacs | mail-user-agent
  1851. Suggests: metamail
  1852. Depends: cron, libc5
  1853. Conflicts: sendmail
  1854. Provides: mail-transport-agent
  1855. Description: Electronic mail transport system.
  1856. Smail is the recommended mail transport agent (MTA) for Debian.
  1857. .
  1858. An MTA is the innards of the mail system - it takes messages from
  1859. user-friendly mailer programs and arranges for them to be delivered
  1860. locally or passed on to other systems as required.
  1861. .
  1862. In order to make use of it you must have one or more user level
  1863. mailreader programs such as elm, pine, mailx or Emacs (which has Rmail
  1864. and VM as mailreaders) installed. If you wish to send messages other
  1865. than just to other users of your system you must also have appropriate
  1866. and VM as mailreaders) installed. If you wish to send messages other
  1867. than just to other users of your system you must also have appropriate
  1868. networking support, in the form of IP or UUCP.
  1869. </example>
  1870. <chapt id="relationships">Declaring relationships between packages
  1871. <p>
  1872. Packages can declare in their control file that they have certain
  1873. relationships to other packages - for example, that they may not be
  1874. installed at the same time as certain other packages, and/or that they
  1875. depend on the presence of others, or that they should overwrite files
  1876. in certain other packages if present.
  1877. <p>
  1878. This is done using the <tt/Depends/, <tt/Recommends/, <tt/Suggests/,
  1879. <tt/Conflicts/, <tt/Provides/ and <tt/Replaces/ control file fields.
  1880. <p>
  1881. <sect id="depsyntax">Syntax of relationship fields
  1882. <p>
  1883. These fields all have a uniform syntax. They are a list of package
  1884. names separated by commas.
  1885. <p>
  1886. In <tt/Depends/, <tt/Recommends/, <tt/Suggests/ and <tt/Pre-Depends/
  1887. (the fields which declare dependencies of the package in which they
  1888. occur on other packages) these package names may also be lists of
  1889. alternative package names, separated by vertical bar symbols <tt/|/
  1890. (pipe symbols).
  1891. <p>
  1892. All the fields except <tt/Provides/ may restrict their applicability
  1893. to particular versions of each named package. This is done in
  1894. parentheses after each individual package name; the parentheses should
  1895. contain a relation from the list below followed by a version number,
  1896. in the format described in <ref id="versions">.
  1897. <p>
  1898. The relations allowed are
  1899. <tt/&lt;&lt;/,
  1900. <tt/&lt;=/,
  1901. <tt/=/,
  1902. <tt/&gt;=/ and
  1903. <tt/&gt;&gt;/
  1904. for strictly earlier, earlier or equal, exactly equal, later or equal
  1905. and strictly later, respectively. The forms <tt/&lt;/ and <tt/&gt;/
  1906. were used to mean earlier/later or equal, rather than strictly
  1907. earlier/later, so they should not appear in new packages (though
  1908. <prgn/dpkg/ still supports them).
  1909. <p>
  1910. Whitespace may appear at any point in the version specification, and
  1911. must appear where it's necessary to disambiguate; it is not otherwise
  1912. significant. For consistency and in case of future changes to
  1913. <prgn/dpkg/ it is recommended that a single space be used after a
  1914. version relationship and before a version number; it is usual also to
  1915. put a single space after each comma, on either side of each vertical
  1916. bar, and before each open parenthesis.
  1917. <p>
  1918. For example:
  1919. <example>
  1920. Package: metamail
  1921. Version: 2.7-3
  1922. Depends: libc5 (>= 5.2.18-4), mime-support, csh | tcsh
  1923. </example>
  1924. <sect>Dependencies - <tt/Depends/, <tt/Recommends/, <tt/Suggests/, <tt/Pre-Depends/
  1925. <p>
  1926. These four fields are used to declare a dependency by one package on
  1927. another. They appear in the depending package's control file.
  1928. <p>
  1929. All but <tt/Pre-Depends/ (discussed below) take effect <em/only/ when
  1930. a package is to be configured. They do not prevent a package being on
  1931. the system in an unconfigured state while its dependencies are
  1932. unsatisfied, and it is possible to replace a package whose
  1933. dependencies are satisfied and which is properly installed with a
  1934. different version whose dependencies are not and cannot be satisfied;
  1935. when this is done the depending package will be left unconfigured
  1936. (since attempts to configure it will give errors) and will not
  1937. function properly.
  1938. <p>
  1939. For this reason packages in an installation run are usually all
  1940. unpacked first and all configured later; this gives later versions of
  1941. packages with dependencies on later versions of other packages the
  1942. opportunity to have their dependencies satisfied.
  1943. <p>
  1944. Thus <tt/Depends/ allows package maintainers to impose an order in
  1945. which packages should be configured.
  1946. <taglist>
  1947. <tag><tt/Depends/
  1948. <item>
  1949. This declares an absolute dependency.
  1950. <p>
  1951. <prgn/dpkg/ will not configure
  1952. packages whose dependencies aren't satisfied. If it is asked to make
  1953. an installation which would cause an installed package's dependencies
  1954. to become unsatisfied it will complain<footnote>Current versions
  1955. (1.2.4) of <prgn/dpkg/ have a bug in this area which will cause some of
  1956. these problems to be ignored.</footnote>, unless
  1957. <tt/--auto-deconfigure/ is specified, in which case those packages
  1958. will be deconfigured before the installation proceeds.
  1959. <p>
  1960. <prgn/dselect/ makes it hard for the user to select packages for
  1961. installation, removal or upgrade in a way that would mean that
  1962. packages' <prgn/Depends/ fields would be unsatisfied. The user can
  1963. override this if they wish, for example if they know that <prgn/dselect/
  1964. has an out-of-date view of the real package relationships.
  1965. <p>
  1966. The <tt/Depends/ field should be used if the depended-on package is
  1967. required for the depending package to provide a significant amount of
  1968. functionality.
  1969. <tag><tt/Recommends/
  1970. <item>
  1971. This declares a strong, but not absolute, dependency.
  1972. <p>
  1973. <tt/Recommends/ is ignored by <prgn/dpkg/, so that users using the
  1974. command-line (who are presumed to know what they're doing) will not be
  1975. impeded.
  1976. <p>
  1977. It is treated by <prgn/dselect/ exactly as <tt/Depends/ is; this makes
  1978. it hard for the user to select things so as to leave <tt/Recommends/
  1979. fields unsatisfied, but they are able to do so by being persistent.
  1980. <p>
  1981. The <tt/Recommends/ field should list packages that would be found
  1982. together with this one in all but unusual installations.
  1983. <tag><tt/Suggests/
  1984. <item>
  1985. This is used to declare that one package may be more useful with one
  1986. or more others. Using this field tells the packaging system and the
  1987. user that the listed packages are be related to this one and can
  1988. perhaps enhance its usefulness, but that installing this one without
  1989. them is perfectly reasonable.
  1990. <p>
  1991. <prgn/dselect/ will offer suggsted packages to the system administrator
  1992. when they select the suggesting package, but the default is not to
  1993. install the suggested package.
  1994. <tag><tt/Pre-Depends/
  1995. <item>
  1996. This field is like <tt/Depends/, except that it also forces <prgn/dpkg/
  1997. to complete installation of the packages named before even starting
  1998. the installation of the package which declares the predependency.
  1999. <p>
  2000. <prgn/dselect/ checks for predependencies when it is doing an
  2001. installation run, and will attempt to find the packages which are
  2002. required to be installed first and do so in the right order.
  2003. <p>
  2004. However, this process is slow (because it requires repeated
  2005. invocations of <prgn/dpkg/) and troublesome (because it requires
  2006. guessing where to find the appropriate files).
  2007. <p>
  2008. For these reasons, and because this field imposes restrictions on the
  2009. order in which packages may be unpacked (which can be difficult for
  2010. installations from multipart media, for example), <tt/Pre-Depends/
  2011. should be used sparingly, preferably only by packages whose premature
  2012. upgrade or installation would hamper the ability of the system to
  2013. continue with any upgrade that might be in progress.
  2014. <p>
  2015. When the package declaring it is being configured, a
  2016. <tt/Pre-Dependency/ will be considered satisfied only if the depending
  2017. package has been correctly configured, just as if an ordinary
  2018. <tt/Depends/ had been used.
  2019. <p>
  2020. However, when a package declaring a predependency is being unpacked
  2021. the predependency can be satisfied even if the depended-on package(s)
  2022. are only unpacked or half-configured, provided that they have been
  2023. configured correctly at some point in the past (and not removed or
  2024. partially removed since). In this case both the previously-configured
  2025. and currently unpacked or half-configured versions must satisfy any
  2026. version clause in the <tt/Pre-Depends/ field.
  2027. </taglist>
  2028. <sect1>Dependencies on shared libraries
  2029. <p>
  2030. The dependency fields listed above are used by packages which need
  2031. shared libraries to declare dependencies on the appropriate packages.
  2032. <p>
  2033. These dependencies are usually determined automatically using
  2034. <prgn/dpkg-shlibdeps/ and inserted in the package control file using
  2035. the control file substitution variables mechanism; see <ref
  2036. id="srcsubstvars"> and <ref id="sourcetools">.
  2037. <sect1>Deconfiguration due to removal during bulk installations
  2038. <p>
  2039. If <prgn/dpkg/ would like to remove a package due to a conflict, as
  2040. described above, but this would violate a dependency of some other
  2041. package on the system, <prgn/dpkg/ will usually not remove the
  2042. conflicting package and halt with an error.
  2043. <p>
  2044. However, if the <tt/--auto-deconfigure/ (<tt/-B/) option is used
  2045. <prgn/dpkg/ will automatically `deconfigure' the package with the
  2046. problematic dependency, so that the conflicting package can be removed
  2047. and the package we're trying to install can be installed. If
  2048. <prgn/dpkg/ is being asked to install packages (rather than just
  2049. unpacking them) it will try to reconfigure the package when it has
  2050. unpacked all its arguments, in the hope that one of the other packages
  2051. it is installing will satisfy the problematic dependency.
  2052. <p>
  2053. <prgn/dselect/ supplies this argument to <prgn/dpkg/ when it invokes it,
  2054. so that bulk installations proceed smoothly.
  2055. <sect id="conflicts">Alternative packages - <tt/Conflicts/ and <tt/Replaces/
  2056. <p>
  2057. When one package declares a conflict with another <prgn/dpkg/ will
  2058. refuse to allow them to be installed on the system at the same time.
  2059. <p>
  2060. If one package is to be installed, the other must be removed first -
  2061. if the package being installed is marked as replacing (<ref
  2062. id="replaces">) the one on the system, or the one on the system is
  2063. marked as deselected, or both packages are marked <tt/Essential/, then
  2064. <prgn/dpkg/ will automatically remove the package which is causing the
  2065. conflict, otherwise it will halt the installation of the new package
  2066. with an error.
  2067. <p>
  2068. <prgn/dselect/ makes it hard to select conflicting packages, though the
  2069. user can override this if they wish. If they do not override it then
  2070. <prgn/dselect/ will select one of the packages for removal, and the user
  2071. must make sure it is the right one. In the future <prgn/dselect/ will
  2072. look for the presence of a <tt/Replaces/ field to help decide which
  2073. package should be installed and which removed.
  2074. <p>
  2075. A package will not cause a conflict merely because its configuration
  2076. files are still installed; it must be at least half-installed.
  2077. <p>
  2078. A special exception is made for packages which declare a conflict with
  2079. their own package name, or with a virtual package which they provide
  2080. (see below): this does not prevent their installation, and allows a
  2081. package to conflict with others providing a replacement for it. You
  2082. use this feature when you want the package in question to be the only
  2083. package providing something.
  2084. <p>
  2085. A <tt/Conflicts/ entry should almost never have an `earlier than'
  2086. version clause. This would prevent <prgn/dpkg/ from upgrading or
  2087. installing the package which declared such a conflict until the
  2088. upgrade or removal of the conflicted-with package had been completed.
  2089. This aspect of installation ordering is not handled by <prgn/dselect/,
  2090. so that the use <tt/Conflicts/ in this way is likely to cause problems
  2091. for `bulk run' upgrades and installations.
  2092. <p>
  2093. <sect id="virtual">Virtual packages - <tt/Provides/
  2094. <p>
  2095. As well as the names of actual (`concrete') packages, the package
  2096. relationship fields <tt/Depends/, <tt/Recommends/, <tt/Suggests/ and
  2097. <tt/Conflicts/ may mention virtual packages.
  2098. <p>
  2099. A virtual package is one which appears in the <tt/Provides/ control
  2100. file field of another package. The effect is as if the package(s)
  2101. which provide a particular virtual package name had been listed by
  2102. name everywhere were the virtual package name appears.
  2103. <p>
  2104. If there are both a real and a virtual package of the same name then
  2105. the dependency may be satisfied (or the conflict caused) by either the
  2106. real package or any of the virtual packages which provide it. This is
  2107. so that, for example, supposing we have
  2108. <example>
  2109. Package: vm
  2110. Depends: emacs
  2111. </example>
  2112. and someone else releases an xemacs package they can say
  2113. <example>
  2114. Package: xemacs
  2115. Provides: emacs
  2116. </example>
  2117. and all will work in the interim (until a purely virtual package name
  2118. is decided on and the <tt/emacs/ and <tt/vm/ packages are changed to
  2119. use it).
  2120. <p>
  2121. If a dependency or a conflict has a version number attached then only
  2122. real packages will be considered to see whether the relationship is
  2123. satisfied (or the prohibition violated, for a conflict) - it is
  2124. assumed that a real package which provides virtual package is not of
  2125. the `right' version. So, a <tt/Provides/ field may not contain
  2126. version numbers, and the version number of the concrete package which
  2127. provides a particular virtual package will not be looked at when
  2128. considering a dependency on or conflict with the virtual package name.
  2129. <p>
  2130. If you want to specify which of a set of real packages should be the
  2131. default to satisfy a particular dependency on a virtual package, you
  2132. should list the real package as alternative before the virtual.
  2133. <p>
  2134. <sect id="replaces"><tt/Replaces/ - overwriting files and replacing packages
  2135. <p>
  2136. The <tt/Replaces/ control file field has two purposes, which come into
  2137. play in different situations.
  2138. <p>
  2139. Virtual packages (<ref id="virtual">) are not considered when looking
  2140. at a <tt/Replaces/ field - the packages declared as being replaced
  2141. must be mentioned by their real names.
  2142. <sect1>Overwriting files in other packages
  2143. <p>
  2144. Firstly, as mentioned before, it is usually an error for a package to
  2145. contains files which are on the system in another package, though
  2146. currently the <tt/--force-overwrite/ flag is enabled by default,
  2147. downgrading the error to a warning,
  2148. <p>
  2149. If the overwriting package declares that it replaces the one
  2150. containing the file being overwritten then <prgn/dpkg/ will proceed, and
  2151. replace the file from the old package with that from the new. The
  2152. file will no longer be listed as `owned' by the old package.
  2153. <p>
  2154. If a package is completely replaced in this way, so that <prgn/dpkg/
  2155. does not know of any files it still contains, it is considered to have
  2156. disappeared. It will be marked as not wanted on the system (selected
  2157. for removal) and not installed. Any conffiles details noted in the
  2158. package will be ignored, as they will have been taken over by the
  2159. replacing package(s). The package's <prgn/postrm/ script will be run to
  2160. allow the package to do any final cleanup required.
  2161. See <ref id="mscriptsinstact">.
  2162. <p>
  2163. In the future <prgn/dpkg/ will discard files which overwrite those from
  2164. another package which declares that it replaces the one being
  2165. installed (so that you can install an older version of a package
  2166. without problems).
  2167. <p>
  2168. This usage of <tt/Replaces/ only takes effect when both packages are
  2169. at least partially on the system at once, so that it can only happen
  2170. if they do not conflict or if the conflict has been overridden.
  2171. <sect1>Replacing whole packages, forcing their removal
  2172. <p>
  2173. Secondly, <tt/Replaces/ allows <prgn/dpkg/ and <prgn/dselect/ to resolve
  2174. which package should be removed when a conflict - see
  2175. <ref id="conflicts">. This usage only takes effect when the two
  2176. packages <em/do/ conflict, so that the two effects do not interfere
  2177. with each other.
  2178. <p>
  2179. <sect>Defaults for satisfying dependencies - ordering
  2180. <p>
  2181. Ordering is significant in dependency fields.
  2182. <p>
  2183. Usually dselect will suggest to the user that they select the package
  2184. with the most `fundamental' class (eg, it will prefer Base packages to
  2185. Optional ones), or the one that they `most wanted' to select in some
  2186. sense.
  2187. <p>
  2188. In the absence of other information <prgn/dselect/ will offer a
  2189. default selection of the first named package in a list of
  2190. alternatives.
  2191. <p>
  2192. However, there is no way to specify the `order' of several packages
  2193. which all provide the same thing, when that thing is listed as a
  2194. dependency.
  2195. <p>
  2196. Therefore a dependency on a virtual package should contain a concrete
  2197. package name as the first alternative, so that this is the default.
  2198. <p>
  2199. For example, consider the set of packages:
  2200. <example>
  2201. Package: glibcdoc
  2202. Recommends: info-browser
  2203. Package: info
  2204. Provides: info-browser
  2205. Package: emacs
  2206. Provides: info-browser
  2207. </example>
  2208. <p>
  2209. If <prgn/emacs/ and <prgn/info/ both have the same priority then
  2210. <prgn/dselect/'s choice is essentially random. Better would be
  2211. <example>
  2212. Package: glibcdoc
  2213. Recommends: info | info-browser
  2214. </example>
  2215. so that <prgn/dselect/ defaults to selecting the lightweight standalone
  2216. info browser.
  2217. <chapt id="conffiles">Configuration file handling
  2218. <p>
  2219. <prgn/dpkg/ can do a certain amount of automatic handling of package
  2220. configuration files.
  2221. <p>
  2222. Whether this mechanism is appropriate depends on a number of factors,
  2223. but basically there are two approaches to any particular configuration
  2224. file.
  2225. <p>
  2226. The easy method is to ship a best-effort configuration in the package,
  2227. and use <prgn/dpkg/'s conffile mechanism to handle updates. If the user
  2228. is unlikely to want to edit the file, but you need them to be able to
  2229. without losing their changes, and a new package with a changed version
  2230. of the file is only released infrequently, this is a good approach.
  2231. <p>
  2232. The hard method is to build the configuration file from scratch in the
  2233. <prgn/postinst/ script, and to take the responsibility for fixing any
  2234. mistakes made in earlier versions of the package automatically. This
  2235. will be appropriate if the file is likely to need to be different on
  2236. each system.
  2237. <sect>Automatic handling of configuration files by <prgn/dpkg/
  2238. <p>
  2239. A package may contain a control area file called <tt/conffiles/. This
  2240. file should be a list of filenames of configuration files needing
  2241. automatic handling, separated by newlines. The filenames should be
  2242. absolute pathnames, and the files referred to should actually exist in
  2243. the package.
  2244. <p>
  2245. When a package is upgraded <prgn/dpkg/ will process the configuration
  2246. files during the configuration stage, shortly before it runs the
  2247. package's <prgn/postinst/ script,
  2248. <p>
  2249. For each file it checks to see whether the version of the file
  2250. included in the package is the same as the one that was included in
  2251. the last version of the package (the one that is being upgraded
  2252. from); it also compares the version currently installed on the system
  2253. with the one shipped with the last version.
  2254. <p>
  2255. If neither the user nor the package maintainer has changed the file,
  2256. it is left alone. If one or the other has changed their version, then
  2257. the changed version is preferred - ie, if the user edits their file,
  2258. but the package maintainer doesn't ship a different version, the
  2259. user's changes will stay, silently, but if the maintainer ships a new
  2260. version and the user hasn't edited it the new version will be
  2261. installed (with an informative message). If both have changed their
  2262. version the user is prompted about the problem and must resolve the
  2263. differences themselves.
  2264. <p>
  2265. The comparisons are done by calculating the MD5 message digests of the
  2266. files, and storing the MD5 of the file as it was included in the most
  2267. recent version of the package.
  2268. <p>
  2269. When a package is installed for the first time <prgn/dpkg/ will install
  2270. the file that comes with it, unless that would mean overwriting a file
  2271. already on the filesystem.
  2272. <p>
  2273. However, note that <prgn/dpkg/ will <em/not/ replace a conffile that
  2274. was removed by the user (or by a script). This is necessary because
  2275. with some programs a missing file produces an effect hard or
  2276. impossible to achieve in another way, so that a missing file needs to
  2277. be kept that way if the user did it.
  2278. <p>
  2279. Note that a package should <em/not/ modify a <prgn/dpkg/-handled
  2280. conffile in its maintainer scripts. Doing this will lead to
  2281. <prgn/dpkg/ giving the user confusing and possibly dangerous options
  2282. for conffile update when the package is upgraded.
  2283. <sect>Fully-featured maintainer script configuration handling
  2284. <p>
  2285. For files which contain site-specific information such as the hostname
  2286. and networking details and so forth, it is better to create the file
  2287. in the package's <prgn/postinst/ script.
  2288. <p>
  2289. This will typically involve examining the state of the rest of the
  2290. system to determine values and other information, and may involve
  2291. prompting the user for some information which can't be obtained some
  2292. other way.
  2293. <p>
  2294. When using this method there are a couple of important issues which
  2295. should be considered:
  2296. <p>
  2297. If you discover a bug in the program which generates the configuration
  2298. file, or if the format of the file changes from one version to the
  2299. next, you will have to arrange for the postinst script to do something
  2300. sensible - usually this will mean editing the installed configuration
  2301. file to remove the problem or change the syntax. You will have to do
  2302. this very carefully, since the user may have changed the file, perhaps
  2303. to fix the very problem that your script is trying to deal with - you
  2304. will have to detect these situations and deal with them correctly.
  2305. <p>
  2306. If you do go down this route it's probably a good idea to make the
  2307. program that generates the configuration file(s) a separate program in
  2308. <tt>/usr/sbin</>, by convention called <tt/<var/package/config/ and
  2309. then run that if appropriate from the post-installation script. The
  2310. <tt/<var/package/config/ program should not unquestioningly overwrite
  2311. an existing configuration - if its mode of operation is geared towards
  2312. setting up a package for the first time (rather than any arbitrary
  2313. reconfiguration later) you should have it check whether the
  2314. configuration already exists, and require a <tt/--force/ flag to
  2315. overwrite it.
  2316. <chapt id="alternatives">Alternative versions of an interface -
  2317. <prgn/update-alternatives/
  2318. <p>
  2319. When several packages all provide different versions of the same
  2320. program or file it is useful to have the system select a default, but
  2321. to allow the system administrator to change it and have their
  2322. decisions respected.
  2323. <p>
  2324. For example, there are several versions of the <prgn/vi/ editor, and
  2325. there is no reason to prevent all of them from being installed at
  2326. once, each under their own name (<prgn/nvi/, <prgn/vim/ or whatever).
  2327. Nevertheless it is desirable to have the name <tt/vi/ refer to
  2328. something, at least by default.
  2329. <p>
  2330. If all the packages involved cooperate, this can be done with
  2331. <prgn/update-alternatives/.
  2332. <p>
  2333. Each package provides its own version under its own name, and calls
  2334. <prgn/update-alternatives/ in its postinst to register its version
  2335. (and again in its prerm to deregister it).
  2336. <p>
  2337. See the manpage <manref name=update-alternatives section=8> for
  2338. details.
  2339. <p>
  2340. If <prgn/update-alternatives/ does not seem appropriate you may wish
  2341. to consider using diversions instead.
  2342. <chapt id="diversions">Diversions - overriding a package's version of a file
  2343. <p>
  2344. It is possible to have <prgn/dpkg/ not overwrite a file when it
  2345. reinstalls the package it belongs to, and to have it put the file from
  2346. the package somewhere else instead.
  2347. <p>
  2348. This can be used locally to override a package's version of a file, or
  2349. by one package to override another's version (or provide a wrapper for
  2350. it).
  2351. <p>
  2352. Before deciding to use a diversion, read <ref id="alternatives"> to
  2353. see if you really want a diversion rather than several alternative
  2354. versions of a program.
  2355. <p>
  2356. There is a diversion list, which is read by <prgn/dpkg/, and updated
  2357. by a special program <prgn/dpkg-divert/. Please see <manref
  2358. name=dpkg-divert section=8> for full details of its operation.
  2359. <p>
  2360. When a package wishes to divert a file from another, it should call
  2361. <prgn/dpkg-divert/ in its preinst to add the diversion and rename the
  2362. existing file. For example, supposing that a <prgn/smailwrapper/
  2363. package wishes to install a wrapper around <tt>/usr/sbin/smail</>:
  2364. <example>
  2365. if [ install = "$1" ]; then
  2366. dpkg-divert --package smailwrapper --add --rename \
  2367. --divert /usr/sbin/smail.real /usr/sbin/smail
  2368. fi
  2369. </example>
  2370. Testing <tt/$1/ is necessary so that the script doesn't try to add the
  2371. diversion again when <prgn/smailwrapper/ is upgraded. The
  2372. <tt/--package smailwrapper/ ensures that <prgn/smailwrapper/'s copy of
  2373. <tt>/usr/sbin/smail</> can bypass the diversion and get installed as
  2374. the true version.
  2375. <p>
  2376. The postrm has to do the reverse:
  2377. <example>
  2378. if [ remove = "$1" ]; then
  2379. dpkg-divert --package smailwrapper --remove --rename \
  2380. --divert /usr/sbin/smail.real /usr/sbin/smail
  2381. fi
  2382. </example>
  2383. <p>
  2384. Do not attempt to divert a file which is vitally important for the
  2385. system's operation - when using <prgn/dpkg-divert/ there is a time,
  2386. after it has been diverted but before <prgn/dpkg/ has installed the
  2387. new version, when the file does not exist.
  2388. <chapt id="sharedlibs">Shared libraries
  2389. <p>
  2390. Packages containing shared libraries must be constructed with a little
  2391. care to make sure that the shared library is always available. This
  2392. is especially important for packages whose shared libraries are
  2393. vitally important, such as the libc.
  2394. <p>
  2395. Firstly, your package should install the shared libraries under their
  2396. normal names. For example, the <prgn/libgdbm1/ package should install
  2397. <tt/libgdbm.so.1.7.3/ as <tt>/usr/lib/libgdbm.so.1.7.3</tt>. The
  2398. files should not be renamed or relinked by any prerm or postrm
  2399. scripts; <prgn/dpkg/ will take care of renaming things safely without
  2400. affecting running programs, and attempts to interfere with this are
  2401. likely to lead to problems.
  2402. <p>
  2403. Secondly, your package should include the symlink that <prgn/ldconfig/
  2404. would create for the shared libraries. For example, the <prgn/libgdbm1/
  2405. package should include a symlink from <tt>/usr/lib/libgdbm.so.1</tt>
  2406. to <tt/libgdbm.so.1.7.3/. This is needed so that <prgn/ld.so/ can find
  2407. the library in between the time <prgn/dpkg/ installs it and
  2408. <prgn/ldconfig/ is run in the <prgn/postinst/ script. Futhermore, and <em/this
  2409. is very important/, the symlink must be placed before the library it
  2410. points to in the <tt/.deb/ file. Currently the way to ensure the
  2411. ordering is done properly is to create the symlink in the appropriate
  2412. <tt>debian/tmp/.../lib</tt> directory before installing the library
  2413. when you build the package.
  2414. <p>
  2415. If you do the above your package does not need to call <prgn/ldconfig/
  2416. in its maintainer scripts. It is especially important not to call
  2417. <prgn/ldconfig/ in the postrm or preinst scripts in the case where the
  2418. package is being upgraded (see the programmer's manual), as
  2419. <prgn/ldconfig/ will see the temporary names that <prgn/dpkg/ uses for the
  2420. files while it is installing them and will make the shared library
  2421. links point to them, just before <prgn/dpkg/ continues the installation
  2422. and removes the links!
  2423. <chapt id="sysvinit">Configuration of <prgn/init/
  2424. <p>
  2425. <sect>Introduction to the <tt/init.d/ scheme
  2426. <p>
  2427. The <tt>/etc/init.d</> directory contains the scripts executed by
  2428. <prgn/init/ when init state (or `runlevel') is changed (see <manref
  2429. name=init section=8>).
  2430. <p>
  2431. These scripts are be referenced by symbolic links in the
  2432. <tt>/etc/rc<var/n/.d</> directories. When changing runlevels, init
  2433. looks in the directory <tt>/etc/rc<var/n/.d</> for the scripts it
  2434. should execute, where <var/n/ is the runlevel that is being changed
  2435. to.
  2436. <p>
  2437. The names of the links all have the form <tt/S<var/mm/<var/script// or
  2438. <tt/K<var/mm/<var/script// where <var/mm/ is a two-digit number and
  2439. <var/script/ is the name of the script (this should be the same as the
  2440. name of the actual script in <tt>/etc/init.d</>.
  2441. When <prgn/init/ changes runlevel first the targets of the links whose
  2442. names starting with a <tt/K/ are executed, each with the single
  2443. argument <tt/stop/, followed by the scripts prefixed with an <tt/S/,
  2444. each with the single argument <tt/start/. The <tt/K/ links are
  2445. responsible for killing services and the <tt/S/ link for starting
  2446. services upon entering the runlevel.
  2447. <p>
  2448. For example, if we are changing from runlevel 2 to runlevel 3, init
  2449. will first execute all of the <tt/K/ prefixed scripts it finds in
  2450. <tt>/etc/rc3.d</>, and then all of the <tt/S/ prefixed scripts. The
  2451. links starting with <tt/K/ will cause the referred-to file to be
  2452. executed with an argument of <tt/stop/, and the <tt/S/ links with an
  2453. argument of <tt/start/.
  2454. <p>
  2455. The two-digit number <var/mm/ is used to decide which order to start
  2456. and stop things in - low-numbered links have their scripts run first.
  2457. For example, the <tt/K20/ scripts will be executed before the <tt/K30/
  2458. scripts. This is used when a certain service must be started before
  2459. another. For example, the name server <prgn/bind/ might need to be
  2460. started before the news server <prgn/inn/ so that <prgn/inn/ can set
  2461. up its access lists. In this case, the script that starts <prgn/bind/
  2462. should have a lower number than the script that starts <prgn/inn/ so
  2463. that it runs first:
  2464. <example>
  2465. /etc/rc2.d/S17bind
  2466. /etc/rc2.d/S70inn
  2467. </example>
  2468. <sect>Writing <tt/init.d/ scripts
  2469. <p>
  2470. Packages can and should place scripts in <tt>/etc/init.d</> to start
  2471. or stop services at boot time or during a change of runlevel. These
  2472. scripts should be named <tt>/etc/init.d/<var/package/</>, and they
  2473. should accept one argument, saying what to do: <tt/start/, meaning to
  2474. starts the service, or <tt/stop/, to stop the service. Optionally
  2475. they can support <tt/reload/ which causes the configuration to be
  2476. reloaded.
  2477. <p>
  2478. The <tt/init.d/ scripts should ensure that they will behave sensibly
  2479. if invoked with <tt/start/ when the service is already running, or
  2480. with <tt/stop/ when it isn't, and that they don't kill
  2481. unfortunately-named user processes. The best way to achieve this is
  2482. usually to use <prgn/start-stop-daemon/.
  2483. <p>
  2484. These scripts should not fail obscurely when the configuration files
  2485. remain but the package has been removed, as the default in <prgn/dpkg/
  2486. is to leave configuration files on the system after the package has
  2487. been removed. Only when it is executed with the <tt/--purge/ option
  2488. will dpkg remove configuration files. Therefore, you should include a
  2489. <tt/test/ statement at the top of the script, like this:
  2490. <example>
  2491. test -f <var/program-executed-later-in-script/ || exit 0
  2492. </example>
  2493. <sect>Managing the <tt/rc<var/n/.d/ links - <prgn/update-rc.d/
  2494. <p>
  2495. A program is provided, <prgn/update-rc.d/, to make it easier for
  2496. package maintainers to arrange for the proper creation and removal of
  2497. <tt>/etc/rc<var/n/.d</> symbolic links from their postinst and postrm
  2498. scripts.
  2499. <p>
  2500. You should use this script to make changes to <tt>/etc/rc<var/n/.d</>
  2501. and <em/never/ include any <tt>/etc/rc<var/n/.d</> symbolic links in
  2502. the actual archive.
  2503. <p>
  2504. By default <prgn/update-rc.d/ will start services in each of the
  2505. multi-user state runlevels (2, 3, 4, and 5) and stop them in the halt
  2506. runlevel (0), the single-user runlevel (1) and the reboot runlevel
  2507. (6). The system administrator will have the opportunity to customize
  2508. runlevels by simply adding, moving, or removing the symbolic links in
  2509. <tt>/etc/rc<var/n/.d</>.
  2510. <p>
  2511. To get the default behaviour for your package, put in your postinst
  2512. script
  2513. <example>
  2514. update-rc.d <var/package/ default &gt;/dev/null
  2515. </example>
  2516. and in your postrm
  2517. <example>
  2518. if [ purge = "$1" ]; then
  2519. update-rc.d <var/package/ remove &gt;/dev/null
  2520. fi
  2521. </example>
  2522. <p>
  2523. This will use a default sequence number of 20. If it does not matter
  2524. when or in which order the script is run, use this default. If it
  2525. does, then you should talk to the maintainer of the <prgn/sysvinit/
  2526. package or post to <tt>debian-devel</>, and they will help you choose
  2527. a number.
  2528. <p>
  2529. For more information about using <tt/update-rc.d/, please consult its
  2530. manpage <manref name=update-rc.d section=8>.
  2531. <sect>Boot-time initialisation - <tt/rc.boot/
  2532. <p>
  2533. There is another directory, <tt>/etc/rc.boot</>, which contains
  2534. scripts which are run once per machine boot. This facility is
  2535. provided for initialisation of hardware devices, cleaning up of
  2536. leftover files, and so forth.
  2537. <p>
  2538. For example, the <prgn/kbd/ package provides a script here for
  2539. initialising the keyboard layout and console font and mode.
  2540. <p>
  2541. The files in <tt>/etc/rc.boot</> should <em/not/ be links into
  2542. <tt>/etc/init.d</> - they should be the scripts themselves.
  2543. <p>
  2544. <tt/rc.boot/ should <em/not/ be used for starting general-purpose
  2545. daemons and similar activities. This should be done using the
  2546. <tt/rc<var/n/.d/ scheme, above, so that the services can be started
  2547. and stopped cleanly when the runlevel changes or the machine is to be
  2548. shut down or rebooted.
  2549. <sect>Notes
  2550. <p>
  2551. <em/Do not/ include the <tt>/etc/rc<var/n/.d/*</> symbolic links in
  2552. the <tt/.deb/ filesystem archive! <em/This will cause problems!/
  2553. You should create them with <prgn/update-rc.d/, as above.
  2554. <p>
  2555. <em/Do not/ include the <tt>/etc/rc<var/n/.d/*</> symbolic links in
  2556. <prgn/dpkg/'s conffiles list! <em/This will cause problems!/
  2557. <em/Do/, however, include the <tt>/etc/init.d</> scripts in conffiles.
  2558. <sect>Example
  2559. <p>
  2560. The <prgn/bind/ DNS (nameserver) package wants to make sure that the
  2561. nameserver is running in multiuser runlevels, and is properly shut
  2562. down with the system. It puts a script in <tt>/etc/init.d</>, naming
  2563. the script appropriately <tt/bind/. As you can see, the script
  2564. interprets the argument <tt/reload/ to send the nameserver a <tt/HUP/
  2565. signal (causing it to reload its configuration); this way the user can
  2566. say <tt>/etc/init.d/bind reload</> to reload the nameserver.
  2567. <p>
  2568. <example>
  2569. #!/bin/sh
  2570. # Original version by Robert Leslie &lt;rob@mars.org&gt;, edited by iwj
  2571. test -x /usr/sbin/named || exit 0
  2572. case "$1" in
  2573. start)
  2574. test -f /etc/named.boot -a -f /var/named/boot.options || exit 0
  2575. start-stop-daemon --start --verbose --exec /usr/sbin/named
  2576. ;;
  2577. stop)
  2578. start-stop-daemon --stop --verbose \
  2579. --pidfile /var/run/named.pid --exec /usr/sbin/named
  2580. ;;
  2581. reload)
  2582. start-stop-daemon --stop --signal 1 --verbose \
  2583. --pidfile /var/run/named.pid --exec /usr/sbin/named
  2584. ;;
  2585. *)
  2586. echo "Usage: /etc/init.d/bind {start|stop|reload}" >&2
  2587. exit 1
  2588. ;;
  2589. esac
  2590. exit 0
  2591. </example>
  2592. <p>
  2593. Another example on which to base your <tt>/etc/init.d</> scripts is in
  2594. <tt>/etc/init.d/skeleton</>.
  2595. <p>
  2596. If this package is happy with the default setup from
  2597. <prgn/update-rc.d/, namely an ordering number of 20 and having named
  2598. running in all runlevels, it can say in its postinst:
  2599. <example>
  2600. update-rc.d bind default >/dev/null
  2601. </example>
  2602. And in its postrm, to remove the links when the package is purged:
  2603. <example>
  2604. if [ purge = "$1" ]; then
  2605. update-rc.d acct remove >/dev/null
  2606. fi
  2607. </example>
  2608. <chapt id="methif"><prgn/dselect/'s interface to its installation methods
  2609. <p>
  2610. <prgn/dselect/ calls scripts from its installation methods when it
  2611. needs to actually access data from the distribution. The core program
  2612. <prgn/dselect/ itself just calls these scripts and provides the
  2613. package and access method selection interfaces. The installation
  2614. methods are responsible for invoking <prgn/dpkg/ as appropriate.
  2615. <p>
  2616. Each installation method has three scripts:
  2617. <list compact>
  2618. <item>Setup installation parameters.
  2619. <item>Update list of available packages.
  2620. <item>Install.
  2621. </list>
  2622. <p>
  2623. <prgn/dselect/ searches for methods in <tt>/usr/lib/dpkg/methods</>
  2624. and <tt>/usr/local/lib/dpkg/methods</>.
  2625. <sect>Functions of the method scripts
  2626. <p>
  2627. The setup script is run just after the user has chosen an installation
  2628. method. It should prompt the user for parameters like the site to
  2629. NFS-mount or FTP from, the directory to use, or the directory or
  2630. filesystem where the <tt/.deb/ files can be found, or the tape or
  2631. floppy device to install from. It should store the responses under
  2632. <tt>/var/lib/dpkg/methods</> - see below. If no available
  2633. packages list is available it should perhaps offer to scan the
  2634. available packages.
  2635. <p>
  2636. The update script should obtain a list of available packages if
  2637. possible, and run <tt/dpkg --update-avail/, <tt/dpkg --merge-avail/
  2638. and/or <tt/dpkg --forget-old-unavail/ to load it into <prgn/dpkg/ and
  2639. <prgn/dselect/'s database of available packages. If no packages list
  2640. was available and the user was offered and accepted the option of
  2641. scanning the actual files available this scan should be done here,
  2642. using <tt/dpkg --record-avail/.
  2643. <p>
  2644. The install script should feed all the available <tt/.deb/ files to
  2645. <tt/dpkg --iGOEB/ (this is equivalent to <tt/dpkg --install
  2646. --refuse-downgrade --selected-only --skip-same-version
  2647. --auto-deconfigure/). The <tt/-R/ (<tt/--recursive/) option for
  2648. traversing subdirectories may also be useful here).
  2649. <p>
  2650. If any of these scripts needs to display a message for the user, it
  2651. should wait for the user to hit `return' before exiting so that
  2652. dselect doesn't immediately rewrite the screen.
  2653. <p>
  2654. If a method script succeeds (returns a zero exit status)
  2655. <prgn/dselect/ will return immediately to the main menu, with the
  2656. `next' option highlighted ready for the user to select it. If it
  2657. fails <prgn/dselect/ will display a message and wait for the user to
  2658. hit return.
  2659. <sect>Location and arguments of the method scripts
  2660. <p>
  2661. A set of scripts (henceforth known as a group) may provide several
  2662. methods on the `main menu' with different behaviour. For example,
  2663. there might be a generic get-packages-by-FTP group which might provide
  2664. methods in the main menu for installation directly from one of the
  2665. Debian mirror sites as well as for installation from a user-specified
  2666. site.
  2667. <p>
  2668. Each group of methods implemented by the same set of scripts should
  2669. have a subdirectory <tt>/usr/lib/dpkg/methods/<var/group/</> or
  2670. <tt>/usr/local/lib/dpkg/methods/<var/group/</>, containing:
  2671. <taglist compact>
  2672. <tag><tt/names/
  2673. <item>a list of user-visible methods provided by these scripts.
  2674. <tag><tt/setup/
  2675. <tag><tt/update/
  2676. <tag><tt/install/
  2677. <item>executable programs, the scripts themselves.
  2678. <tag><tt/desc.<var/option//
  2679. <item>description file.
  2680. </taglist>
  2681. <p>
  2682. <tt/names/ will be formatted as a list of lines, each containing:
  2683. <example>
  2684. <var/sequence/ <var/method/ <var/summary/
  2685. </example>
  2686. <p>
  2687. <var/sequence/ is a two-digit number that will be used much like
  2688. <tt/rc.d/ prefixes to control the order in the main menu. If in doubt
  2689. use 50.
  2690. <p>
  2691. <var/method/ is a name which is displayed by <prgn/dselect/ as the
  2692. name of the method, and which will be passed to <tt/setup/,
  2693. <tt/update/ and <tt/unpack/ as their first argument.
  2694. <p>
  2695. <var/summary/ is the brief description string for <prgn/dselect/'s menu.
  2696. <p>
  2697. Each of the three scripts gets the same three arguments: <var/vardir/,
  2698. <var/group/ and <var/method/. <var/vardir/ is the base directory for
  2699. storing <prgn/dpkg/ and <prgn/dselect/'s state, usually
  2700. <tt>/var/lib/dpkg</>; this is passed in so that the <tt/--admindir/
  2701. option to <prgn/dselect/ is honoured).
  2702. <p>
  2703. Each option may have an extended description in
  2704. <tt/desc.<var/option//. This should be formatted like the extended
  2705. description part of a <tt/Description/ field entry <em/shifted one
  2706. character to the left/.
  2707. <p>
  2708. <tt><var/vardir//methods</> will exist, and a method group may use a
  2709. <tt><var/vardir//methods/<var/group/</> directory to store its state.
  2710. <p>
  2711. The group name and method name must follow the rules for C identifiers.
  2712. </book>