changelog 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
  1. dpkg (1.10) unstable; urgency=low
  2. * Fixed upper/lowercase problems with package names. Closes: Bug#58091
  3. (and 3 others).
  4. * Add Russian manual pages
  5. * Fix n in dselect package list (performs searchagain now)
  6. * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
  7. * When a package is set to hold, and a reinstallation is requested,
  8. -E will not properly skip it. Closes: #45787.
  9. * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
  10. * Improve dpkg-archtecture documentation. Closes: Bug#104232
  11. * Update German translation. Closes: Bug#97239
  12. * Update Polish translation. Closes: Bug#115783
  13. * Update French translation.
  14. * Update Brazilian translation.
  15. * Update Danish translation.
  16. * Add Catalan translation
  17. * Add German md5sum manpage
  18. * Add Brazilian update-alternatives manpage. Closes: Bug#122132
  19. * Improve dselect manpage. Closes: Bug#103839
  20. * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
  21. Closes: Bug#104214
  22. * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
  23. * Add per-user configuration files. Closes: Bug#103845
  24. * Split dselect into its own package. dpkg Pre-Depends on it
  25. to make sure no weird things happen during an upgrade but this
  26. will allow us to make dselect option at some point in the future.
  27. Closes: #114249.
  28. * Make colours in dselect user-configurable. Closes: Bug#103994
  29. * Make Q do an abort in the method selection menu to make things more
  30. consistent with the package list
  31. * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
  32. * Improve the dselect helpscreen a bit. Closes: Bug#72634
  33. * New version comparison routine that can handle arbitrarily large numbers
  34. and accepts `~' as a low-sorting character. Closes: Bug#93386
  35. * dselect now accepts regular expressions when searching for packages
  36. and can search in package descriptions as well.
  37. Closes: Bug#81009,#83139
  38. * Move query commands into a seperate dpkg-query command. For the old options
  39. (-L,-l,-s,-S) dpkg will still call it for you.
  40. * Add configurable package listing support to dpkg-query
  41. * Handle window resize in dselect main menu. Closes: Bug#98275
  42. * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
  43. * Add --showformat and --show options to dpkg-deb and dpkg-query to
  44. allow one to customize the output format
  45. * several install-info cleanups:
  46. * Move /usr/info/dir to /usr/share/info/dir. Closes: #67174.
  47. * If /usr/share/info doesn't exist, print a message saying so,
  48. instead of the confusing "couldn't lock" error. Closes: #2531.
  49. * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
  50. backup from /var/backups/infodir.bak. Closes: #121309.
  51. * Add a --remove-exactly option, and allow for relative filenames.
  52. Closes: #92650.
  53. * Use the section from the .info file if --section is not given.
  54. Closes: #76100.
  55. * Error messages now include the filename being processed.
  56. Closes: #66735
  57. * /usr/share/info/dir now has it's entries formatted to even widths.
  58. Closes: #11228
  59. * --calign|--align|--maxwidth are now ignored.
  60. * strip enoent as well. Closes: Bug#112378
  61. * Fix format error in Dutch translation. Closes: Bug#113120
  62. * When parsing stdin, md5sum now displays '-' as the filename, to match
  63. textutils md5sum. Closes: #121489.
  64. * Apply patch from bug, to give update-alternatives a --list command.
  65. Closes: #120924.
  66. * Make dpkg-checkbuilddeps always check for build-essential.
  67. Closes: Bug#118420.
  68. * Use space seperated output instead of comma seperated in
  69. dpkg-checkbuilddeps
  70. * Update default ignore expression in dpkg-source to also match *~ and
  71. *.swp in subdirs. Closes: Bug#127458
  72. * Handle errors when verifying md5sums. Closes: Bug#102367
  73. * dpkg-source now uses reliable timestamps for changed files.
  74. Closes: Bug#105750
  75. * Fix typo in start-stop-daemon help message. Closes: Bug#131439
  76. * update-alternative exits with a non-zero exit code when displaying
  77. a non-existing alternative. Closes: Bug#131496
  78. * Use gzip -c in install-info. Closes: Bug#131758
  79. * start-stop-daemon works on HP-UX now. Closes: Bug#130130
  80. * Fix dselect spin when run without input. Closes: Bug#132476
  81. * Update-alternatives now correctly restores an alternative to auto mode
  82. when removing a manually selected alternative. Closes: Bug#132632
  83. * Copy bugs and origin information into status file. Closes: Bug#132714
  84. * Improve wording of update-alternatives --config text. Closes: Bug#133035
  85. * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
  86. * Improve test for illegal packagename for dpkg-gencontrol -p option
  87. * Fix segfault when getenv("PATH") returns null. Closes: Bug#136349
  88. * Add Large File Summit extensions. Closes: Bug#130509
  89. * Fix typo in dpkg-source manpage. Closes: Bug#141906
  90. * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
  91. * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
  92. -- Wichert Akkerman <wakkerma@debian.org> Mon, 20 Aug 2001 14:54:38 +0200
  93. dpkg (1.9.19) unstable; urgency=medium
  94. * install-info continues to read all data from a pipe, until EOF.
  95. Closes: #99816(grave).
  96. * Add Catalan translation
  97. * Update Danish translation. Closes: Bug#131869
  98. * Update French translation.
  99. * update-alternative exits with a non-zero exit code when displaying
  100. a non-existing alternative. Closes: Bug#131496
  101. * Changed Maintainer to debian-dpkg@lists.
  102. * Fix "Up to date installed packages" for polish translation. Closes:
  103. #116398.
  104. * Swap updated/up-to-date polish translations(they were reversed).
  105. Closes: #117583, #102961.
  106. * Mark /etc/alternatives/README as a conffile.
  107. * Strip .note, .comment, and /usr/lib/dpkg/enoent.
  108. * Make dpkg-gencontrol not warn about Uploaders. Closes: #111090.
  109. -- Adam Heath <doogie@debian.org> Sat, 2 Feb 2002 11:47:34 -0600
  110. dpkg (1.9.18) unstable; urgency=low
  111. * Fix MD5Sum corruption when upgrading a package. Closes: Bug#113961.
  112. * Add Wichert and I to debian/control:Uploaders.
  113. -- Adam Heath <doogie@debian.org> Sat, 3 Nov 2001 00:31:00 -0600
  114. dpkg (1.9.17) unstable; urgency=low
  115. * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
  116. -- Wichert Akkerman <wakkerma@debian.org> Wed, 22 Aug 2001 01:24:52 +0200
  117. dpkg (1.9.16) unstable; urgency=low
  118. * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
  119. for details.
  120. -- Wichert Akkerman <wakkerma@debian.org> Thu, 5 Jul 2001 22:42:11 +0200
  121. dpkg (1.9.15) unstable; urgency=low
  122. * Change policy of handling dscformat in dpkg-source
  123. * Fix the arglist construction for maintainer scripts
  124. * Revert dscformat to 1.0 since older dpkg-source versions do not have
  125. the new policy. In the future (starting at format 2.0 to maintain
  126. compatibility with old dpkg-source implementations) minor changes to
  127. the dscformat have to be fully backward and forward compatible.
  128. -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Jun 2001 16:41:43 +0200
  129. dpkg (1.9.14) unstable; urgency=low
  130. * Make the Uploaders field in a .dsc file optional.
  131. * Disabled sanity checking of source packages.
  132. -- Adam Heath <doogie@debian.org> Mon, 25 Jun 2001 02:22:40 -0500
  133. dpkg (1.9.13) unstable; urgency=medium
  134. * Add a -W option to dpkg-source(and the other utils, where it is just
  135. passed thru), to turn certain errors into warnings(of which, only
  136. one is changed, namely, the 'tar doesn't contain preceeding directory'
  137. error). Closes: #101813, and partially 101845.
  138. * Don't error out if the files in the tar have leading './', for
  139. dpkg-source. (another partial close of 101845).
  140. * Handle the case where a single directory exists in the orig.tar.gz, but
  141. it is NOT of the form <pkg>-<ver>. Closes: #101845.
  142. * Set LC_ALL in dpkg-source when we call external programs when we are
  143. going to parse their output. Another bug from 101845.
  144. * Handle stating of truncated cpio filenames(100 char limit, bah), in
  145. dpkg-source. Another bug from 101845.
  146. * Add support for an Uploaders field, which is read from the first
  147. paragraph of debian/control, and propagated to the .dsc. This lists
  148. the people allowed to upload a package. If it is not set, then the
  149. value of the Maintainer is placed into this field of the .dsc. This
  150. bumps the .dsc format to 1.1. Closes: #101815.
  151. * Handle symlinks in the tarball, and don't error out if found.
  152. * in controllib, make warnerrors default to warnings. Affects
  153. dpkg-source. This will be changed to be errors in the future.
  154. -- Adam Heath <doogie@debian.org> Sun, 24 Jun 2001 13:48:52 -0500
  155. dpkg (1.9.12) unstable; urgency=medium
  156. * Fix do_script() bug. Closes: Bug#101552
  157. * Fix building and extracting of certain kinds of source packages.
  158. Closes: #101684.
  159. * Added Colin Watson to THANKS.
  160. -- Adam Heath <doogie@debian.org> Wed, 20 Jun 2001 18:27:03 -0500
  161. dpkg (1.9.11) unstable; urgency=low
  162. * The "Hang on to your hats, it gets bumpy from here." release.
  163. * Trim trailing spaces from package names when checking builddeps.
  164. Closes: #101304.
  165. * Apply patch from bug to fix logic error that kept everything but
  166. Build-Deps from working in checkbuilddeps. Closes: #101511.
  167. * Apply patch to correctly check the output of gcc on hurd, for
  168. dpkg-architecture. Closes: #99874.
  169. * The internal pod docs in dpkg-architecture were updated to reflect
  170. that -f was no longer implied when -q was given, but the build system
  171. wasn't generating new documentation. Closes: #100997.
  172. * deb(5) now has a see-also for deb-old(5). Closes: #99620.
  173. * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
  174. Closes: #97622.
  175. * Set the Architecture to 'source' only when doing source only uploads
  176. in the generated changes files. Closes: #100144.
  177. * Document -nc in the dpkg-buildpackage manpage. Closes: #101038.
  178. * Make dpkg-source work with GNU md5sum. Closes: #97666.
  179. * in dpkg-source, when both arch: all and arch: <arch> packages exist in
  180. debian/control, don't promote the source arch: to any, but only list
  181. all and <arch>. Closes: #94608
  182. * Apply patch from Colin Watson: Closes: #89679
  183. * Reset SIGPIPE to DEFAULT when forking gzip.
  184. * set LANG to C before execing cpio, as we parse its output.
  185. * In checktarcpio() and checktarsane(), use the previously open pipes,
  186. instead of the opening files on disk(which was the old, ancient way).
  187. * Improve the output parsing of tar in checktarsane().
  188. * warn instead of die when find returns an error(which happens if there
  189. is a dangling symlink, because we use -follow). Closes: #51479.
  190. * Change list of allowed urgencies in debian/changelog to: low, medium,
  191. high, and critcial. Closes: #94475.
  192. * Error out if an illegal package name is used in dpkg-gencontrol.pl.
  193. Closes: #61211
  194. * Apply patch from Marcus Brinkmann to dpkg-buildpackage: Closes:
  195. #98201.
  196. * Option -a implies option -d.
  197. * Set ARCH correctly to host architecture, rather than build arch.
  198. -- Adam Heath <doogie@debian.org> Tue, 19 Jun 2001 22:15:25 -0500
  199. dpkg (1.9.10) unstable; urgency=low
  200. * Fix [arch] parsing, and handle extra spaces better. Closes: #100512,
  201. #101031.
  202. * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
  203. Closes: #100474.
  204. * Swap j/k keys on the main menu, so they function like the package
  205. selection screen(and like vi). Closes: #100502.
  206. * Multiple fixes in bug: Closes: #99892.
  207. * s/DEAD_JOE/DEADJOE/ in dpkg-source.
  208. * Switch to auto mode if alternative symlink is missing.
  209. * Update Spanish translation
  210. -- Adam Heath <doogie@debian.org> Sat, 16 Jun 2001 14:57:45 -0500
  211. dpkg (1.9.9) unstable; urgency=low
  212. * The leading and trailing spaces patch in the last upload had some
  213. issues with trailing spaces. This fixes them. No bug to close, as the
  214. bts is still down.
  215. -- Adam Heath <doogie@debian.org> Wed, 6 Jun 2001 22:36:57 -0500
  216. dpkg (1.9.8) unstable; urgency=low
  217. * Remove leading and trailing spaces from versions, and check for
  218. embedded spaces, inside dpkg. Closes: #99186.
  219. * Handle varied use of spaces in dpkg-checkbuilddeps. Closes: #98899.
  220. * Reset SIGPIPE back to default, in dpkg-source. Closes: #98563.
  221. * Remove bogus $! check from dpkg-architecture. Closes: #99428.
  222. -- Adam Heath <doogie@debian.org> Sat, 2 Jun 2001 15:15:04 -0500
  223. dpkg (1.9.7) unstable; urgency=low
  224. * If a new file doesn't exist on disk, but is a going to be installed as
  225. a directory, then don't error out. Closes: Bug#17381.
  226. * Update japanese manpages. Closes: Bug#97831.
  227. * Update it.po. Closes: Bug#98273.
  228. * Fix bad cleanup in dpkg-divert. Closes: Bug#98578,#98828,#98831.
  229. -- Adam Heath <doogie@debian.org> Mon, 28 May 2001 18:59:03 -0500
  230. dpkg (1.9.4) unstable; urgency=low
  231. * Oops. EOF_mmap incorrectly detecting the end of the data block.
  232. Closes: Bug#95981.
  233. * After fixing the above bug, and using debootstrap to build a sid
  234. chroot, I discovered that my previous dependency cycle fix could cause
  235. segfaults in some situations.
  236. -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 23:04:46 -0500
  237. dpkg (1.9.3) unstable; urgency=low
  238. * Fix compiles on ppc. Closes: Bug#95918.
  239. -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 00:29:45 -0500
  240. dpkg (1.9.2) unstable; urgency=low
  241. * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
  242. -- Adam Heath <doogie@debian.org> Mon, 30 Apr 2001 14:21:28 -0400
  243. dpkg (1.9.1) unstable; urgency=low
  244. * Fix segfault with empty status and available, and when missing a
  245. trailing new line. Closes: Bug#95496
  246. * Make dpkg-shlibdeps not care if dpkg --search return with an error.
  247. Closes: Bug#95568
  248. * Fix corruption of user-defined fields in status and available.
  249. Closes: Bug#95567.
  250. * Changed dpkg.cfg to include no-debsig by default, as no debs are
  251. currently signed, and we get false errors when debsig-verify is
  252. installed. This will be removed in the future, when the archive tools
  253. support package signatures. Closes: Bug#95573
  254. * dpkg-buildpackage should only check for valid signinterface if the
  255. user specifies one. Closes: Bug#95598
  256. * Fix removing of diversions. Closes: Bug#95655
  257. * Fix md5sum -c. Closes: Bug#95586
  258. -- Adam Heath <doogie@debian.org> Sat, 28 Apr 2001 16:28:21 -0500
  259. dpkg (1.9.0) unstable; urgency=low
  260. * Things should mostly work OpenBSD 2.8 as well now
  261. * Added a --status-pipe option.
  262. * Fixed several memleaks.
  263. * Profiled dpkg.
  264. * Reworked lib/parse.c:parsedb(). Instead of using getc(), then
  265. calling varbufaddc(), it now reads the entire file at once into a
  266. huge buffer, then moves pointers around, to do the parsing. This
  267. gave a speedup of 33% on a dual celeron 333, when reading status and
  268. available.
  269. * various other speedups.
  270. * Removed all --smallmem code, as smallmem and largemem now actually
  271. use about the same amount of memory, and largemem is faster. Both
  272. --largemem and --smallmem are now obselete options, and will print
  273. a warning if used. Closes: Bug#84905, #67528
  274. * Initialize unitialized variables. This should solve several
  275. segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
  276. merges)
  277. * Found that when working with dependency cycles, and part of the cycle
  278. was a provide, the provider was not being considered, so the cycle
  279. could not be broken. Closes: Bug#87985(and 3 others)
  280. * Update German translation, Closes: Bug#80529,#80532,#87581
  281. * Update French translation, Closes: Bug#65284,#85035,#87238
  282. * Update Japanese translation, Closes: Bug#93873
  283. * Updated all other translations (but no bugs filed)
  284. * Add Danish translation
  285. * Remove spurious '%s' in Polish translation, Closes: Bug#74814
  286. * Add French manpages, courtesy of Philippe Batailler
  287. * Ingore vim swapfiles in dpkg-source, Closes: Bug#81630
  288. * remove --import option from dpkg-statoverride, Closes: Bug#81358
  289. * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
  290. optlib, for non-GNU systems.
  291. * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
  292. * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
  293. #90982.
  294. * Small fixes to the buildsystem. Closes: Bug#84361
  295. * Fix dpkg-statoverride --update for things other then plain files.
  296. Closes: Bug#84449
  297. * Fix race with source directory disappearing in dpkg-source.
  298. Closes: Bug#45511
  299. * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
  300. * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
  301. * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
  302. #84582
  303. * fix typo in usage message for dpkg-divert, Closes: Bug#85977
  304. * Use full path for argv[0] when calling scripts. Closes: Bug#68783
  305. * Add ia64 support to dpkg-architecture.
  306. * Minor script changes, Closes: Bug#87485
  307. * Stop dpkg-genchanges from complaining about missing packages
  308. when doing a source-only build. Closes: Bug#87571,#15644,#25496
  309. * Various dpkg-architecture cleanups. Closes: Bug#87505
  310. * Modify dpkg-architecture to handle gcc versions containing letters.
  311. Closes: Bug#83083
  312. * dpkg-buildpackage updates: Closes: Bug#87572,#85847
  313. + make -C work properly
  314. + fix test for gpg secret keyring
  315. + improve source messages
  316. + skip signing pause when building unsigned packages
  317. + test for invalid signinterface. Closes: Bug#87579
  318. + remove debsign support, it's useless and doesn't work
  319. + Use correct architecture when naming .changes file. Closes: Bug#88015
  320. * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
  321. * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
  322. * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
  323. and modify dpkg-buildpackage to call it if wanted.
  324. Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
  325. * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
  326. * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
  327. Closes: Bug#83468
  328. * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
  329. output anything. Closes: Bug#84328
  330. * Remove Linux reference from all scripts, they should run fine on
  331. other OSes as well.
  332. * Mark last argument in dpkg-scanpackages usage info as optional.
  333. Closes: Bug#86658
  334. * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
  335. * Fix formatting error in dpkg-source.1. Closes: Bug#82723
  336. * Change dpkg-gencontrol to fix comma-related syntax errors after
  337. processing substvars. Closes: Bug#92908
  338. * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
  339. * Handle window resize in dselect main menu. Closes: Bug#93559
  340. * Initialize all parts of the package record. This should fix several
  341. segfaults people have been seeing in dpkg. Closes: Bug#90328.
  342. * Apply patch from bug#86847, that escapes intl chars in filenames.
  343. Closes: Bug#83752, #85040, #86847, #89000.
  344. * Errors during dpkg -s(and other similiar commands) are now printed
  345. on stderr. Closes: Bug#88987.
  346. * Add a --retry option to start-stop-daemon. Closes: Bug#75139
  347. * Fix regeps to extract Closes magic from a changelog so the #
  348. is really optional. Closes: Bug#94474
  349. * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
  350. * Make the debian changelog parser identify itself with $progname.
  351. Closes: Bug#89409
  352. * Give a syntax error when we get an unexpected PGP signature in control
  353. files. Closes: Bug#75562
  354. * Change dpkg manpage to reflect that --force-statoveride is no enabled
  355. by default. Closes: Bug#95023
  356. * Handle dangling symlinks, by ignoring error code 1 from find, when
  357. processing --recursive. Closes: Bug#4784
  358. * dpkg -L, -S, -l, -s, and -p now return an error code if any package
  359. does not exist. Closes: Bug#4974, #72406
  360. * dselect has a configuration file as well now
  361. * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
  362. Closes: Bug# 31620
  363. * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
  364. * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
  365. * Fix formating and a typo in the dpkg manpage
  366. * Document the dpkg.cfg configuration file in dpkg(8)
  367. -- Wichert Akkerman <wakkerma@debian.org> Thu, 26 Apr 2001 12:39:16 +0200
  368. dpkg (1.8.3.1) unstable; urgency=low
  369. * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
  370. -- Ben Collins <bcollins@debian.org> Sat, 13 Jan 2001 08:52:11 -0500
  371. dpkg (1.8.3) unstable; urgency=low
  372. * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
  373. * Fix recusion in dpkg-shlibdeps, Closes: Bug#81322
  374. * Really completely revert dpkg-source patches which broke backwards
  375. compatibility
  376. -- Wichert Akkerman <wakkerma@debian.org> Fri, 12 Jan 2001 00:02:22 -0800
  377. dpkg (1.8.2) unstable; urgency=low
  378. * Don't attempt to read from an input source when we only want 0 bytes.
  379. Also handle buggy systems that return EAGAIN instead of EINTR. Closes:
  380. #81881.
  381. -- Adam Heath <doogie@debian.org> Thu, 11 Jan 2001 00:43:50 -0600
  382. dpkg (1.8.1.1) unstable; urgency=low
  383. * Apply patch from bug to fix badly generated diffs(in some
  384. circumstances). Closes: #81152
  385. -- Adam Heath <doogie@debian.org> Sat, 6 Jan 2001 16:07:33 -0600
  386. dpkg (1.8.1) unstable; urgency=low
  387. * Make --name a valid option. Closes: #31206, #51953.
  388. * dpkg-deb -I <pkg> <control> works again
  389. * Update Swedish translation
  390. -- Wichert Akkerman <wakkerma@debian.org> Thu, 4 Jan 2001 19:31:13 +0100
  391. dpkg (1.8.0) unstable; urgency=low
  392. * Add -k|--symlink option to dpkg-name. Closes: #35040
  393. * Made the accelerator keys in dselect's main menu separate options, so
  394. that they can be translated separately. Closes: #50955.
  395. * Added depends on sysvinit (>= 2.72), so that we can make sure that
  396. /etc/rcS.d exists. Closes: #55037.
  397. * update-rc.d: Changed documentation and help, as -f only applies during
  398. remove. Closes: #55049.
  399. * Added a --force-all option. Closes: #61354.
  400. * Format help string for --abort-after like other option help strings.
  401. Closes: #62464.
  402. * Fix dselect methods to pass admindir to dpkg from dselect.
  403. * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
  404. it doesn't get applied multiple times. Closes: #65021
  405. * Add --nicelevel to start-stop-daemon, to alter a programs priority
  406. before starting. Closes: #65191.
  407. * Document that --largemem is the default, and that the test point is
  408. 24 megs. Closes: #65607.
  409. * Document that --set-selections does not actually install any
  410. packages. Closes: #65340.
  411. * Fix typo in dpkg-deb.1. Closes: #65945.
  412. * Add --truename option to dpkg-divert. Closes: #68489.
  413. * Documented COLUMNS in dpkg(8). Closes: #77001.
  414. * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
  415. use the result of the test during build time. Closes: Bug#75138
  416. * Added description for "suggests" in main/depcon.c:describedepcon().
  417. Closes: Bug#74113
  418. * Removed bashing from dpkg.postinst.
  419. * Make '#' optional in Closes: tags. Closes: Bug#63137.
  420. * Add -t to -h output in dpkg-buildpackage: Closes: Bug#49598.
  421. * Fix typo in --compare-versions error message. Closes: Bug#66474.
  422. * -R doesn't mean --root. Closes: Bug#66068, #72013
  423. * Add armv3l to archtable. Closes: Bug#72125
  424. * Fix two memory leaks, and lesson the memory foot print a tad. Hints
  425. taken from 74259.
  426. * Fix some things perl5.6 complains about. Closes: Bug#77337
  427. * Fix referenes to dpkg-deb manpage. Closes: Bug#77855
  428. * Update Galish translation
  429. * Add new --import option to dpkg-statoverride to make it easy to
  430. import suidmanager settings.
  431. * Speedup patches by Adam Heath
  432. * statoverride fixes by Robert Luberda, Closes: Bug#78436
  433. * Add Linux S/390 support. Closes: Bug#79063
  434. * Using libz to decompress data instead of calling gzip.
  435. Closes: Bug#49581
  436. * Add gettext to build-depends
  437. * Fix warning when trying to remove a non-existing statoverride.
  438. Closes: Bug#79352
  439. * Be more paranoid with file permissions when extracing files
  440. * Apply statoverrides to more then just files
  441. * Update update-alternatives manpage to use FHS instead of FSSTND.
  442. Closes: Bug#80237
  443. * List descriptions for udebs in .changes
  444. -- Wichert Akkerman <wakkerma@debian.org> Mon, 25 Dec 2000 17:19:31 +0100
  445. dpkg (1.7.2) unstable; urgency=low
  446. * Fix parsing of configuration files
  447. * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
  448. * No longer bother to install emacs things. I don't use emacs myself
  449. and can't support that properly.
  450. * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
  451. "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
  452. warning if there is a NEEDED line in the objdump output that we cannot
  453. grok.
  454. * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
  455. of the libc major version, and ldconfig -p output. Solves problems
  456. with errant libc5 deps.
  457. * Correct name of .changes file when doing source-only builds
  458. * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
  459. * Fix typo in update-alternatives manpage. Closes: Bug#77829
  460. * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
  461. -- Wichert Akkerman <wakkerma@debian.org> Thu, 23 Nov 2000 18:55:50 +0100
  462. dpkg (1.7.1) unstable; urgency=medium
  463. * Fix a typo in the dpkg-statoveride manpage
  464. * dpkg-statoverride reads and writes the right file now
  465. * Make update-alternatives use the right dir for alternatives again
  466. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Nov 2000 01:16:39 +0100
  467. dpkg (1.7.0) unstable; urgency=low
  468. * Allow the administrator to override file mode and ownership using the
  469. new dpkg-statoverride tool.
  470. * Use objdump instead of ldd in dpkg-shlibdeps
  471. * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
  472. in its documentation
  473. * Make update-alternatives update slave links with --config and properly
  474. switch the alternative to manual mode
  475. * HURD updates, Closes: Bug#57753,#57754,#57755
  476. * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
  477. * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
  478. and dpkg-gencontrol. Closes: Bug#62069,#64774
  479. * dpkg-genchanges: add new Changed-By field to .changes with the last
  480. person who made a change, and modify the Maintainer-field to be the
  481. actual maintainer. Update the format-version to 1.7 to reflect this.
  482. * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
  483. * dpkg-deb: reorder files when building a package
  484. * dpkg-statoverride: new tool to override ownership and modes for files
  485. * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
  486. * Add Origin and Bugs fields to the control file
  487. * Install new /etc/dpkg/origins/debian file
  488. * Corrections and updates to Swedish translation.
  489. * Add Galician, German, Dutch and Brazilian translations
  490. * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
  491. There wont be a full binary-sparc64 port. Closes: Bug#70788
  492. * dselect/main.cc: small fixups to get it to compile with gcc-2.96
  493. * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
  494. * Document -k option for dpkg-buildpackage. Closes: Bug#71808
  495. * Install commented dummy shlibs.default and shlibs.override files
  496. * Give dpkg a configurationfile
  497. * dpkg-scanpackages now uses the most recent version if multiple versions
  498. of a package are found.
  499. * don't rename a file to itself in dpkg-source. Closes: Bug#75060
  500. * Fix buffer overflow in cmdname handling in start-stop-daemon.
  501. Closes: Bug#75103
  502. * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
  503. Closes: Bug#75105
  504. * Update formating of start-stop-daemon manpage. Closes: Bug#75110
  505. * Make a missing package a warning instead of an error in dpkg-genchanges
  506. -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Nov 2000 17:28:39 +0100
  507. dpkg (1.6.13) frozen unstable; urgency=low
  508. * Add Format-flag to .dsc format: we know we are going to change the
  509. format in the next release, this change will make dpkg-source abort
  510. with a reasonable error instead of doing unexpected things.
  511. * Fix error in gettext'ized string
  512. * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
  513. * debian-changelog-mode.el: fix documentation string for
  514. debian-changelog-finalise-last. Closes: Bug#63003
  515. -- Wichert Akkerman <wakkerma@debian.org> Mon, 8 May 2000 16:08:53 +0200
  516. dpkg (1.6.12.99) frozen unstable; urgency=low
  517. * Pre-release for 1.6.13. which will only feature translation updates
  518. * Fix typo in dpkg-divert, Closes: Bug#60243
  519. * dpkg-genchanges: recognize non-deb packages (tarballs, such as
  520. dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
  521. include them when figuring out the Arch field in the .changes
  522. * mark another string as translateable, Closes: Bug#62543
  523. * fix location of --abort-after in --help output, Closes: Bug#62464
  524. * fix allocation error in checkpath(), Closes: Bug#62364
  525. * add Hold to list of desired package states in -l output, Closes: Bug#58765
  526. -- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Apr 2000 11:52:59 +0200
  527. dpkg (1.6.12) frozen unstable; urgency=high
  528. * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
  529. unsigned packages again. Closes: Bug#60395
  530. * Updated Spanish and Swedish translations. Closes: Bug#41735
  531. * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
  532. -- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Apr 2000 16:50:02 +0200
  533. dpkg (1.6.11) frozen unstable; urgency=high
  534. * Oops, missed one case where the libc/ncurses conflict reared its
  535. ugly head and broke dselect miserably.
  536. * fix syntax error in dpkg-divert. Closes: Bug#60050
  537. -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Mar 2000 11:52:07 +1100
  538. dpkg (1.6.10) frozen unstable; urgency=low
  539. * The `it rains in Sydney' release
  540. * Mark another string in dselect as translateable, Closes: Bug#58618
  541. * Fix typos, Closes: Bug#58619
  542. * Change dselect keybindings slightly so `n' really does searchagain
  543. * Updated Czech and Spanish translations, Closes: Bug#58617
  544. * dpkg-divert.pl: reinstate last writeability-patch. Modified
  545. to not abort on ENOENT: this indicates a directory does not (yet)
  546. exist. If this happens don't try to rename. This should fix all
  547. current dpkg-divert problems. Closes: Bug#59207,#58596
  548. * update-alternatives: switch back to auto-mode when manually selected
  549. alternative is removed, Closes: Bug#54933
  550. * dselect no longer segfaults on SIGWINCH but does The Right Thing
  551. instead. Closes: Bug#54303,#58697,#59419
  552. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Mar 2000 15:09:47 +1100
  553. dpkg (1.6.9) frozen unstable; urgency=low
  554. * Fix typo in update-alternatives manpage
  555. * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
  556. * Cleanup bits of install-info to make it more stable
  557. * Fix Build-Dependency for ncurses, Closes: Bug#58073
  558. * Some more documentation updates, Closes: Bug#57985
  559. * Revert patch to check for writeable filesystems in dpkg-divert,
  560. Closes: Bug#57840
  561. -- Wichert Akkerman <wakkerma@debian.org> Fri, 18 Feb 2000 12:11:58 +0100
  562. dpkg (1.6.8) frozen unstable; urgency=low
  563. * Turn --force-overwrite on by default
  564. * Fix a couple of small buildsystem errors
  565. * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
  566. * Updated Czech and Swedish translations
  567. * Revert patch to change order of things when purging a package,
  568. Closes: Bug#56374
  569. * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
  570. * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
  571. * Update extended description for dpkg-dev, Closes: Bug# 56675
  572. * Implement verbose option for update-alternative
  573. * Fix conflicts handling
  574. -- Wichert Akkerman <wakkerma@debian.org> Thu, 10 Feb 2000 15:31:31 +0100
  575. dpkg (1.6.7) frozen unstable; urgency=low
  576. * dpkg compiles on HP-UX, Solaris and IRIX now
  577. * start-stop-daemon can chroot now, Closes: Bug#54513
  578. * Allow space between # and the bugnumber in the changelog
  579. * Display package description with waddnstr, Closes: Bug#54313
  580. * Updated Japanese manpages, Closes: Bug#54690, #55080
  581. * Upload full source for packages with version *-0.1, Closes: Bug#54651
  582. -- Wichert Akkerman <wakkerma@debian.org> Sun, 16 Jan 2000 18:36:10 +0100
  583. dpkg (1.6.6) unstable; urgency=low
  584. * dpkg-buildpackage supports debsign, Closes: Bug#58333
  585. * fix update-alternatives manpage, Closes: Bug#53859
  586. * Updated Polish translation
  587. * Pass admindir to dpkg, Closes: Bug#54039
  588. * Fix dpkg -l output
  589. * Remove dpkg-safelist again, it had issues
  590. -- Wichert Akkerman <wakkerma@debian.org> Fri, 7 Jan 2000 19:51:45 +0100
  591. dpkg (1.6.5) unstable; urgency=low
  592. * Update Spanish translation
  593. * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
  594. * Don't use \z in dpkg-scansources, Closes: Bug# 53182
  595. * Correctly unregister internals manual, Closes: Bug# 53200
  596. * dselect helpessages can be translated now, Closes: Bug# 51381
  597. * dselect UI tweaks, including a new --expert mode
  598. * Added build-depends, Closes: Bug# 53394
  599. * Added THANKS-file with people who have contributed to the code
  600. * Use full width of tty in packagelisting, Closes: Bug# 53395
  601. * Add -z option to dpkg-deb to set compressionlevel when building
  602. packages, Closes: Bug# 53398
  603. * Fix segfaults when producing a diff between current and new conffile,
  604. Closes: Bug# 52197
  605. -- Wichert Akkerman <wakkerma@debian.org> Sat, 25 Dec 1999 04:47:09 +0100
  606. dpkg (1.6.4) unstable; urgency=low
  607. * No longer byte-compile for emacs
  608. * Add Swedish translation
  609. * start-stop-daemon: honour --oknodo if we fail to kill a process
  610. Closes: Bug#52580,#52185,#52457
  611. * Fix dselect program description, Closes: Bug#52328
  612. * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
  613. * Accept single-number values in update-rc.d, Closes: Bug#46810
  614. -- Wichert Akkerman <wakkerma@debian.org> Sun, 19 Dec 1999 16:27:48 +0100
  615. dpkg (1.6.3) unstable; urgency=high
  616. * Comment dselect changes from 1.6.2, they seem to have a problem
  617. Closes: #52043,52058,52088,51437
  618. * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
  619. * Fix copyright display in dselect menu, Closes: #52093
  620. * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
  621. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Dec 1999 17:06:00 +0100
  622. dpkg (1.6.2) unstable; urgency=low
  623. * New dpkg-scansources, Closes: #51888
  624. * Fix default for elispdir, Closes: #51919,51525
  625. * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
  626. * Buildsystem updates, Closes: #51525, 51855, 51914
  627. * Modify dselect behaviour for suggests and recommends
  628. -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Dec 1999 19:29:50 +0100
  629. dpkg (1.6.1) unstable; urgency=low
  630. * Fix some slight packaging errors
  631. -- Wichert Akkerman <wakkerma@debian.org> Fri, 26 Nov 1999 20:18:48 +0100
  632. dpkg (1.6) unstable; urgency=low
  633. * Major overhaul of the buildsystem
  634. * Update Standards-Version to 3.1.0
  635. * Move to version 1.6 to reflect the amount of changes made
  636. * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
  637. * utils/start-stop-daemon.c: Added ability for user.group arg to
  638. --chuid. Also, always call initgroups() when using --chuid.
  639. * utils/start-stop-daemon.8: Document above change, also add note to the
  640. --make-pidfile option concerning its problem with daemons that fork
  641. -- Wichert Akkerman <wakkerma@debian.org> Thu, 25 Nov 1999 04:30:01 +0100
  642. dpkg (1.4.1.19) unstable; urgency=low
  643. * Fix replaces for dpkg-dev
  644. * Add gettext-support to dselect
  645. * Added Czech and Polish translations for dpkg
  646. * Fixed incorrect patch for --print-architecture (oops, oh well
  647. it was already broken when there was no gcc anyway :)
  648. * Fixed missing mipseb that was supposed to be in the archtable
  649. * Better output in update-alternatives --config, now shows the
  650. current, and the prefered choices.
  651. * dpkg-name: ignore epoch when getting version
  652. * 50dpkg-dev.el: add it as a conffile for dpkg-dev
  653. * internals.sgml: Removed references to the versions of build tools,
  654. they date the document.
  655. * debian-changelog-mode.el: added hint for better log-email handling
  656. * Added recognition for new source-depends fields for policy
  657. referenced in bug #41232
  658. * dpkg-buildpackage: add -ap option to force a pause prior to starting
  659. the sign process. This helps for people who don't keep their signatures
  660. on the filesystem (on a floppy perhaps, then mount as needed).
  661. * minor script corrections
  662. * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
  663. move cpio, patch and make to the depends line
  664. * Leave file info intact in available when installing packages. MD5sum,
  665. Filename, and MSDOS-Filename used to get lost when installing a
  666. package.
  667. * Added armv4l to archtable
  668. * Added 'D' to the list of choices for conffile handling, closes: #48137
  669. * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
  670. package that contains the generated output from this file (.ps, .html
  671. and .info), includes doc-base support. Internals.sgml is also not
  672. generated on the binary-arch target, and is no longer "byhand"
  673. * dpkg-gencontrol: add "Source" to the fields placed in the control file
  674. * dpkg-parsechangelog: fixed loop for parsepath (#48526)
  675. * main/{processarc.c,depcon.c}: added new structure for conflictors,
  676. which contains a struct for conflicts. This is used to create an array
  677. of conflicting packages, which are going to be replaced. Allows for
  678. multiple conflicts and replaces. All conflictor handlers were
  679. converted to loops to handle each one (processarc.c).
  680. * dpkg-divert: Fix check for writable filesystem, closes: #48646
  681. -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Oct 1999 15:14:40 +0200
  682. dpkg (1.4.1.18) unstable; urgency=low
  683. * Backout dep check patch
  684. -- Ben Collins <bcollins@debian.org> Sat, 23 Oct 1999 00:39:24 -0400
  685. dpkg (1.4.1.17) unstable; urgency=low
  686. * Add support for long filenames, along with --assert-longfilenames
  687. * Added --chuid option to start-stop-daemon to allow switching to
  688. a different uid when starting a process
  689. * Add mipseb and mipsel to the archtable too, since mips and mipseb are
  690. both viable names for the mips big endian arch, and mipsel is also needed
  691. * Update dpkg-architecure's archtable
  692. * Added --config option to update-alternatives to allow easy changing
  693. of the registered alternatives for a specific name
  694. * Updated the deb-control(5) man page with all the current fields
  695. and uses
  696. * Made the large info screen show 5 lines of the pkglist so that
  697. it scrolled properly, and still showed the cursor in dselect
  698. * Removed references to dpkg(5) which seems to not exist anymore
  699. * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
  700. when it's actually --nocheck (went with the hardcoded option, so
  701. this is just a documentation fix).
  702. * Added better check in disk.setup for a working NFS server. Makes
  703. it compatible with other non-Linux servers.
  704. * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
  705. a .tar.gz instead of a .deb)
  706. * Applied patch to correct improper TMPDIR handling in dpkg-deb
  707. * When encountering an error in extracting the tar archives in the
  708. packages, we should abort the install, not simply give an error
  709. and continue.
  710. * Make dpkg give the builtin arch if there was an error while exec()'ing
  711. the C compiler with --print-architecture. We still fail if the
  712. output from gcc was bad in some way, since they may be of importance.
  713. * Removed the maintainer-configure portion in debian/rules, since
  714. we should be shipping the source with all the auto* stuff
  715. already generated anyway
  716. * Removed the ltconfig patch, and resort to a debian/rules fix
  717. to libtool itself after running configure
  718. * Removed shlibs.default.i386. It's now a template for arch porting to
  719. Debian/dpkg, we install it still, if there exists a file matching the
  720. arch
  721. * Reimplemented a better *stat cache for the removal checking code,
  722. this helps a lot when doing upgrades where the packages are a lot
  723. different in layout
  724. * Increased largemem auto detection to >= 24megs, since it's not uncommon
  725. for dpkg to actually use 16megs of ram all on its own when using the
  726. largemem setting (old minimum was 16megs)
  727. * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
  728. in the clean phase just rm -rf $(BUILD), we don't need to run
  729. distclean and all that other stuff. Don't run "make dist", we
  730. simply copy the .tar.gz that dpkg-source creates for the byhand
  731. source.
  732. * Make start-stop-daemon exit(1) when we don't find one of the
  733. pid's we are trying to kill, in accordance with the man page.
  734. * When running --configure on an already installed package, just
  735. say it's installed, and not that it is in an unconfigurable
  736. state
  737. * Fixed some compiler warnings
  738. * Make dpkg check for uid 0 requirement, before checking the path
  739. since not being root, is probably the reason that the PATH is
  740. borked in the first place
  741. * Make -p short for --print-avail, and -P short for --purge
  742. * Fix typo in md5sum(1) man page
  743. * start-stop-daemon: Add --background and --make-pidfile options
  744. * update-alternatives: make sure we remove "old" symlinks when they
  745. are no longer pertinent. Add /etc/alternatives/README that refers
  746. to the update-alternatives(8) man page.
  747. * dpkg-divert: Add check for being able to write to the old/new
  748. destination before doing a rename. We fail on this, without
  749. changing the diversion registry
  750. * Fix bad regex in update-rc.d
  751. -- Wichert Akkerman <wakkerma@debian.org> Thu, 21 Oct 1999 17:49:03 +0200
  752. dpkg (1.4.1.16) unstable; urgency=medium
  753. * Hardcode ENOENT again since the errno-part of the POSIX module
  754. isn't in perl-*-base. sigh.
  755. -- Wichert Akkerman <wakkerma@debian.org> Fri, 15 Oct 1999 04:01:14 +0200
  756. dpkg (1.4.1.15) unstable; urgency=low
  757. * non-maintainer release.
  758. * Move dselect into its own package
  759. * Remove conffiles before directories when purging
  760. * Check if integrity from other packages will broken when processing
  761. an archive
  762. * dpkg-deb can handle package made with Linux ar.
  763. * Add check to update-alternatives to see if the sequencecode is between
  764. 0 and 99
  765. * Fix failed assertion, which was actually two bugs: a logic error in
  766. checkforremoval and a wrong assumption in findbreakcycle
  767. * dselect doesn't die when you resize the terminal
  768. * check if a file is also in a new package before removing it when upgrading
  769. * offer to show a diff between the old and new conffile
  770. * dpkg-scanpackages: don't abort but only skip a package if we can't
  771. open it
  772. * Add HURD-support to start-stop-daemon
  773. * Reinstate patch to not read available when doing --list-files
  774. * Add a couple of --force options to handle changed conffiles
  775. -- Wichert Akkerman <wakkerma@debian.org> Thu, 14 Oct 1999 04:20:56 +0200
  776. dpkg (1.4.1.14) unstable; urgency=low
  777. * non-maintainer release.
  778. * dpkg-source works again on empty diffs, Closes: Bug# 46159
  779. * Install locale-files in /usr/share, Closes: Bug# 46631
  780. * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
  781. * Actually include fix to make update-alternatives works filesystems (oops!)
  782. * Check if codenumber is between 0 and 99, Closes: Bug# 46810
  783. -- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 19:19:05 +0200
  784. dpkg (1.4.1.13) unstable; urgency=low
  785. * Non-maintainer release.
  786. * NMU number 13, lets see what breaks :)
  787. * update-alternatives works across filesystems now
  788. * Make -sgpg work in dpkg-buildpackage (typo)
  789. -- Wichert Akkerman <wakkerma@debian.org> Tue, 28 Sep 1999 01:26:19 +0200
  790. dpkg (1.4.1.12) unstable; urgency=low
  791. * Non-maintainer release.
  792. * Fix typo in chmodsafe_unlink that made dpkg chmod files that
  793. weren't setuid or setgid
  794. -- Wichert Akkerman <wakkerma@debian.org> Sun, 26 Sep 1999 02:41:30 +0200
  795. dpkg (1.4.1.11) unstable; urgency=low
  796. * Non-maintainer release.
  797. * Added sparc64 to archtable
  798. * Added entries for newer alpha architectures to the archtable
  799. * Always run patch and diff with LANG set to C.
  800. * Handle diff warning for files with no newline at the end of file
  801. Closes: Bug#45642
  802. -- Wichert Akkerman <wakkerma@debian.org> Fri, 24 Sep 1999 03:23:54 +0200
  803. dpkg (1.4.1.10) unstable; urgency=low
  804. * Non-maintainer release.
  805. * Build dpkg-scansources manpages using pod2man
  806. * dpkg-buildpackage changes:
  807. + fix signinterface-detection
  808. + use gpg by default if $HOME/.gnupg/secring.gpg exists
  809. -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 Sep 1999 15:36:43 +0200
  810. dpkg (1.4.1.9) unstable; urgency=low
  811. * Non-maintainer release.
  812. * Updated dpkg-scansources to current version from Roderick Schertler
  813. * Update location of GPL in internals-manual
  814. * Update location of GPL and dpkg copyright in all manpages
  815. * Include patch from Roman Hodek for dpkg-source to handle diffs of files
  816. with lines that begin with two dashes.
  817. * Move dpkg-scansources to dpkg-dev package
  818. * Move dpkg-scansources manpage to section 8
  819. * Fix error that moved a lot of manpages to the dpkg package.
  820. * It looks like not reading the available-file for listfiles was not greeted
  821. with much enthiousiasm, so reverse the change.
  822. -- Wichert Akkerman <wakkerma@debian.org> Wed, 15 Sep 1999 03:45:07 +0200
  823. dpkg (1.4.1.8) unstable; urgency=low
  824. * Non-maintainer release.
  825. * Merge dpkg-doc-ja
  826. * Add patch from Raphael Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
  827. to skip comments in signatures. This allows packages to also use GnuPG.
  828. -- Wichert Akkerman <wakkerma@debian.org> Mon, 13 Sep 1999 04:16:33 +0200
  829. dpkg (1.4.1.7) unstable; urgency=low
  830. * Non-maintainer release.
  831. * Use /usr/share/doc
  832. * Merge changes from dpkg-iwj tree:
  833. + change section in dpkg-deb.1 to 1
  834. + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
  835. + varbufprintf (used for some error messages) vsnprintf return value
  836. assumption changed to correspond to reality rather than glibc-doc.
  837. + Don't read available-info when not needed (slightly improved from
  838. dpkg-iwj: don't read for listfiles either :)
  839. + Cleanup --assert-* code
  840. + Assume largemem on systems without sysinfo(2).
  841. + modify preexec-script for easier script execution
  842. + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
  843. + Sanity-check numbers for parameters
  844. + Move some logic from process_archive into wantinstall
  845. + Print '0' in dpkg-scanpackages if no packages found.
  846. -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Sep 1999 04:06:32 +0200
  847. dpkg (1.4.1.6) unstable; urgency=low
  848. * Non-maintainer release.
  849. * scripts/dpkg-architecture.pl: Update to latest version.
  850. * scripts/dpkg-architecture.1: Likewise.
  851. -- Marcus Brinkmann <brinkmd@debian.org> Sat, 24 Jul 1999 18:24:21 +0200
  852. dpkg (1.4.1.5) unstable; urgency=low
  853. * Non-maintainer release.
  854. * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
  855. (closes:Bug#20776,#31030).
  856. * Removed references to the packaging and policy manuals from debian/control.
  857. * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
  858. * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
  859. (closes:Bug#28270,#29702,#26876,#29184,and others).
  860. * Note that bug number 17367 was fixed in 1.4.0.26.
  861. * Add Zack Weinberg's install-info patch for GNU install-info
  862. compatibility (closes:Bug#28965).
  863. * Add dpkg-architecture stuff from Marcus Brinkmann.
  864. * Remove debian-keyring suggests from dpkg.
  865. * Add -k<keyid> flag to dpkg-buildpackage.
  866. * --textmode works in gpg, remove kluge from dpkg-buildpackage.
  867. * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
  868. * Attempt to make Debian source useful for non-Debian systems
  869. (i.e. distclean tree instead of maintainer-clean tree).
  870. * Sync with wichert's 1.4.1.4.
  871. * Add my ltconfig-1.3.2.diff (RPATH workaround).
  872. * Add dpkg-scansources program and man page.
  873. * Man pages in /usr/share/man.
  874. -- Joel Klecker <espy@debian.org> Tue, 13 Jul 1999 18:12:15 -0700
  875. dpkg (1.4.1.4) unstable; urgency=low
  876. * Also change developer-keyring to debian-keyring for dpkg-dev package
  877. * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
  878. * Depend on perl5 instead of perl
  879. -- Wichert Akkerman <wakkerma@debian.org> Mon, 5 Jul 1999 00:04:14 +0200
  880. dpkg (1.4.1.3) unstable; urgency=low
  881. * Modify tarobject() so it does not complain if we are creating a
  882. directory that replaces a removed file. This works around the
  883. problem that the filedatabase doesn't remember what filetype a
  884. file was by assuming it already was a directory
  885. -- Wichert Akkerman <wakkerma@debian.org> Mon, 31 May 1999 23:49:23 +0200
  886. dpkg (1.4.1.2) unstable; urgency=low
  887. * Non-maintainer upload
  888. * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
  889. to also fix the i8n-problems.
  890. * Incorporate 1.6 format of .changes, patch from Guy Maor
  891. * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
  892. * Disable force-overwrites again, since we're in unstable
  893. * Assume largemem on systems for which sysinfo is not available, Bug# 33658
  894. -- Wichert Akkerman <wakkerma@debian.org> Wed, 26 May 1999 15:50:17 +0200
  895. dpkg (1.4.1.1) unstable; urgency=low
  896. * Non-maintainer upload
  897. * Install emacs-startup scripts with mode 0644 (lintian)
  898. * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
  899. <vincent@waw.com> for slink:
  900. + Apply patch from Jim Pick for update-alternatives.pl to
  901. fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
  902. #27703, #27736, #27097(merged bugs)) in jdk1.1.
  903. * Incorporate changes in NMU 1.4.0.33 made by me for slink:
  904. + Fix illegal perl construct (Bug# 30985)
  905. + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
  906. + Update shlibs.default for libncurses 4 (Bug# 30332)
  907. + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
  908. + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
  909. + Make dpkg-deb.1 aware that it is in section 1, not 8
  910. + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
  911. + Fix typo in --force-help (Bug# 26193)
  912. + Correct path for debian-changelog-mode.el (Bug# 24606)
  913. + Make disk-method for dpkg use /var/run instead of /tmp to fix
  914. symlink-attacks (Bug# 21399)
  915. + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
  916. + Add --abort-after option to change after how many errors we abort and
  917. change the default to 50 (Bug# 22940)
  918. + Fix controllib.pl: don't check debian/substvars unless needed, and
  919. don't depend on language settings (Bug# 31508)
  920. + Allow a - in the architecture-field (Bug# 25537)
  921. -- Wichert Akkerman <wakkerma@debian.org> Mon, 1 Feb 1999 00:44:01 +0100
  922. dpkg (1.4.1) unstable; urgency=low
  923. * Maintainer release by IWJ.
  924. * Changed Maintainer: field description.
  925. * Various changes to make the damn thing build.
  926. * Add .cvsignore files.
  927. -- Ian Jackson <ian@davenant.greenend.org.uk> Sun, 1 Nov 1998 17:33:38 +0000
  928. dpkg (1.4.0.31) unstable; urgency=low
  929. * dpkg/processarc.c: Make newfileslist static like the other arguments
  930. for register_cleanup's cu_* functions.
  931. * N-th fix for controllib.pl (simulate old behavior by trying stdin,
  932. stdout, and stderr for getlogin()).
  933. * Enable --force-overwrite for slink release, and comment where to do
  934. so (dpkg/main.c).
  935. * Recompile against ncurses4.
  936. -- Daniel Jacobowitz <dan@debian.org> Thu, 22 Oct 1998 17:37:23 -0400
  937. dpkg (1.4.0.30) unstable; urgency=low
  938. * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
  939. in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
  940. for pointing this out.
  941. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 26 Sep 1998 13:59:23 +0200
  942. dpkg (1.4.0.29) unstable; urgency=low
  943. * For now, prefer PGP over GPG.
  944. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 22 Sep 1998 09:38:09 +0200
  945. dpkg (1.4.0.28) unstable; urgency=low
  946. * Added gpg (GNU Privacy Guard) support:
  947. * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
  948. secret key file is found), as GPG, unlike PGP, is DFSG-free.
  949. * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
  950. section.
  951. * Worked around broken textmode implementation in GPG.
  952. * dpkg-dev now Suggests: gnupg .
  953. * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
  954. dpkg-dev now Recommends: developer-keyring.
  955. * Compiled with latest libstdc++ (2.9).
  956. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 21 Sep 1998 13:17:14 +0200
  957. dpkg (1.4.0.27) unstable; urgency=low
  958. * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
  959. -- Daniel Jacobowitz <dan@debian.org> Fri, 27 Jul 1998 15:58:04 -0400
  960. dpkg (1.4.0.26.0.1) unstable; urgency=low
  961. * Binary-only upload for x86 and fixed dpkg-dev
  962. -- Daniel Jacobowitz <dan@debian.org> Fri, 24 Jul 1998 15:58:04 -0400
  963. dpkg (1.4.0.26) unstable; urgency=low
  964. * Non-maintainer upload.
  965. * Make --root work with maintainer scripts (Patch by Scott Barker,
  966. bugs #4863 and #3170).
  967. * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
  968. -- Daniel Jacobowitz <dan@debian.org> Thu, 23 Jul 1998 12:02:04 -0400
  969. dpkg (1.4.0.25) unstable; urgency=low
  970. * Non-maintainer upload.
  971. * Add the requested -nc option to dpkg-buildpackage (Do
  972. not clean source tree, useful in debugging cycles).
  973. * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
  974. I redirected STDERR onto fd 0 before calling getlogin().
  975. * tools.m4: Fix display of whether c++ works.
  976. * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
  977. fflush() move the current fpos. Until someone can fix that,
  978. protect with seek.
  979. * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
  980. * Start using lchown() if available.
  981. * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
  982. file. The correct place is in tl_canon.m4.)
  983. -- Daniel Jacobowitz <dan@debian.org> Tue, 21 Jul 1998 03:14:14 -0400
  984. dpkg (1.4.0.24) unstable; urgency=low
  985. * Non-maintainer upload.
  986. * dpkg/main.c: Turn --force-overwrite off as default.
  987. * dpkg/main.c: don't list --force-overwrite as default in --force-help,
  988. noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
  989. others. [#23542, part of #17409].
  990. * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
  991. <jrv@vanzandt.mv.com>. [#21061]
  992. * dpkg-deb/build.c (do_build): add missing \n and improve error message
  993. when conffile name is too long. [#7057]
  994. * scripts/update-alternatives.8: replaced with better man page from
  995. Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
  996. * scripts/dpkg-source.1: corrected logic error in documentation for
  997. dpkg-gencontrol's -p option, as noticed by Oliver Elphick
  998. <olly@linda.lfix.co.uk>. [#14655]
  999. * scripts/controllib.pl (findarch): correct typo in error message,
  1000. noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
  1001. * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
  1002. maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
  1003. <apharris@onshore.com> and others. [#10175, #15559]
  1004. * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
  1005. <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
  1006. architecture specific packages in mostly architecture independent
  1007. multi-binary source packages. [#14341, #20192].
  1008. * doc/Makefile.am: remove any reference to the packaging manual, as it is
  1009. now provided by the separate "packaging-manual" package.
  1010. * doc/packaging.sgml: removed.
  1011. * doc/developer-keys.pgp: updated to the current debian keyring.
  1012. * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
  1013. egcs' --print-libgcc-file-name output. [#20353]
  1014. * debian/copyright: correct FSF address.
  1015. * debian/rules: add code from lesstif's debian/rules to make libtool
  1016. less of a fool (i.e. not use -rpath and to link shared libraries
  1017. against libraries it depends on). Code by Richard Braakman
  1018. <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
  1019. * debian/rules: remove all reference to the packaging manual as it is
  1020. now provided by the seperate "packaging-manual" package. [#21581,
  1021. #21186, #22698, #23342]
  1022. * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
  1023. of a real manpage has been reported in #11093.
  1024. * debian/README.compile: removed gawk and bogus comment about gettext
  1025. being in experimental, as reported by Santiago Vila <sanvila@unex.es>
  1026. [#23344]. Added libpaperg (debiandoc2ps needs paperconf).
  1027. * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
  1028. <herbert@gondor.apana.org.au>. [#13140]
  1029. * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
  1030. perl-base) is needed by most of the perl dpkg-* scripts, noticed by
  1031. Joel Klecker <jk@espy.org>. [#22115]
  1032. -- James Troup <jjtroup@comp.brad.ac.uk> Wed, 24 Jun 1998 14:38:52 +0200
  1033. dpkg (1.4.0.23.2) frozen unstable; urgency=low
  1034. * Non-maintainer upload.
  1035. * dpkg/main.c: Turn --force-overwrite back on as default.
  1036. -- James Troup <jjtroup@comp.brad.ac.uk> Tue, 23 Jun 1998 22:19:26 +0200
  1037. dpkg (1.4.0.23.1) frozen unstable; urgency=low
  1038. * No real changes, only a new version code to make this go to frozen too.
  1039. -- Nils Rennebarth <nils@debian.org> Wed, 10 Jun 1998 17:29:58 +0200
  1040. dpkg (1.4.0.23) frozen unstable; urgency=low
  1041. * Non-maintainer bug-fix release
  1042. * Update the disk method to the hamm directory structure (Bug#21000)
  1043. -- Nils Rennebarth <nils@debian.org> Sun, 7 Jun 1998 19:14:51 +0200
  1044. dpkg (1.4.0.22) frozen unstable; urgency=medium
  1045. * Non-maintainer bug-fix release
  1046. * Install main changelog file as `changelog.gz' instead of
  1047. `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
  1048. * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
  1049. * Make sure diversions file is always created with mode 0644 (Bug#19494)
  1050. * When removing a file, chmod it to 000 if it's a char or block
  1051. device or remove its s[ug]id bits, if any (Bug#6006)
  1052. * Minor fixes in the programmer's manual (Bug#6206)
  1053. * Always create readable status and available files
  1054. (Bug#9869,11887,14636,15786,19146)
  1055. * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
  1056. * Allow different archs for the same binary in debian/files (Bug#9894)
  1057. * Added workaround in /usr/lib/dpkg/methods/disk/setup
  1058. to avoid bash warning (Bug#10111,10131)
  1059. * Recognize old .deb packages with other locales (Bug#12232)
  1060. * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
  1061. * Move some files from dpkg to dpkg-dev (part of Bug#13295)
  1062. * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
  1063. * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
  1064. * Strip /usr/lib/libdpkg* (Bug#15671)
  1065. * dpkg: send output of --help, --force-help and -Dhelp to stdout
  1066. (Bug#16051,18574)
  1067. * send correct signals with start-stop-daemon (Bug#17258)
  1068. * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
  1069. * Determine properly the architecture if gcc is egcs (Bug#20353)
  1070. -- Juan Cespedes <cespedes@debian.org> Sun, 5 Apr 1998 17:37:01 +0200
  1071. dpkg (1.4.0.21) unstable; urgency=low
  1072. * Non-maintainer release to include a new update-rc.d
  1073. * Fixed date on files in the archive from 2017 and 2018 by running
  1074. touch foo; find . -newer foo | xargs -r touch; rm foo
  1075. * Changed start-stop-deamon message "No <program> found; none killed." to
  1076. "No <program> found running; none killed."
  1077. -- Miquel van Smoorenburg <miquels@cistron.nl> Thu, 5 Mar 1998 14:19:46 +0100
  1078. dpkg (1.4.0.20) unstable; urgency=low
  1079. * Disabled --force-overwrites.
  1080. * Removed core file from source
  1081. -- Michael Alan Dorman <mdorman@debian.org> Tue, 9 Jan 2018 03:34:28 -0500
  1082. dpkg (1.4.0.19) unstable; urgency=low
  1083. * Changed methods/disk.setup to use output of
  1084. 'dpkg --print-installation-architecture' instead of hard-coded
  1085. '1386' (fixes #10995).
  1086. * Patched dpkg-source to properly quote metacharacters in strings
  1087. before using them in pattern-matching expressions (fixes #10811).
  1088. * Fixed several documentation typos (fixes #10764).
  1089. * dpkg-source now works around 100-character filename limitation of cpio
  1090. (fixes #10400).
  1091. * dpkg-source now properly handles '\ no newline in source' message from
  1092. patch (fixes #5041).
  1093. -- Klee Dienes <klee@debian.org> Sun, 13 Jul 1997 19:28:22 -0700
  1094. dpkg (1.4.0.18) unstable; urgency=low
  1095. * dpkg-source now uses new -z option to GNU patch (still needs to be
  1096. changed to detect and use old version as well) (fixes #9904, #10005, #10007).
  1097. * Added i686 to archtable.
  1098. * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
  1099. * debian-changelog-mode now uses interruptible completing type-in fields
  1100. instead of the previous 'select-a-letter method'. I consider this
  1101. better and more standard than the previous way, but I'd welcome
  1102. opinions to the contrary. Consider this a 'probationary' change for
  1103. now (fixes #9873, #9874).
  1104. -- Klee Dienes <klee@debian.org> Sun, 25 May 1997 09:56:08 -0400
  1105. dpkg (1.4.0.17) unstable; urgency=low
  1106. * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
  1107. french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
  1108. * Fix leading spaces before day in 822-date.
  1109. * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
  1110. building on non-Debian systems; minor Makefile fixes.
  1111. * Added 'ppc powerpc powerpc' to archtable.
  1112. * Changed documentation paper size to US/Letter instead of A4 (A4
  1113. may be better, but it's easier to print US/Letter on A4 than it is
  1114. to print A4 on US/Letter).
  1115. -- Klee Dienes <klee@debian.org> Tue, 13 May 1997 15:24:31 -0400
  1116. dpkg (1.4.0.16) experimental; urgency=low
  1117. * Added generated sources to GNU-format source archive so it no longer
  1118. requires perl to build.
  1119. -- Klee Dienes <klee@debian.org> Sat, 10 May 1997 17:34:29 -0400
  1120. dpkg (1.4.0.15) experimental; urgency=low
  1121. * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
  1122. ($arch ne 'all') (fixes #9688).
  1123. * Fixed bug in start-stop-daemon.c (was using optarg after argument
  1124. parsing was over) (fixes #9597, #9603, #9364).
  1125. * Provide 50dpkg-dev.el for xemacs as well as emacs.
  1126. * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
  1127. .el file as workaround until xemacs can read emacs19 .elc files.
  1128. * Pass top_distdir explicitly to 'make dist' to accomodate bug in
  1129. automake_1.1o-1.
  1130. * Fix debian/build to make html documentation without including
  1131. directories in tar archives (fixes #9348).
  1132. -- Klee Dienes <klee@debian.org> Fri, 9 May 1997 13:17:18 -0400
  1133. dpkg (1.4.0.14) experimental; urgency=low
  1134. * Fixed buglet in install-info.pl (fixes #9438).
  1135. * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
  1136. <miquels@cistron.nl> (fixes #9434, #9436).
  1137. * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
  1138. -- Klee Dienes <klee@debian.org> Tue, 6 May 1997 22:01:07 -0400
  1139. dpkg (1.4.0.13) experimental; urgency=low
  1140. * Fix to start-stop-daemon so that it still takes numeric arguments (had
  1141. been broken in 1.4.0.12) (fixes #9598).
  1142. * Fix 822-date to sanity-check localtime() output (seconds must be the
  1143. same as GMT).
  1144. * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
  1145. pristine (MD5-equivalent) upstream sources.
  1146. * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
  1147. update-rc.d.pl to fix handling multiple start/stop entries on a single
  1148. line.
  1149. * Several fixes to dpkg-genchanges to support -B option (added in
  1150. 1.4.0.12) (fixes #9340).
  1151. * Handle errors from 822-date in debian-changelog-mode.el.
  1152. * Changed cl-debian.pl to correctly handle extra whitespace in changelog
  1153. datestamps.
  1154. -- Klee Dienes <klee@debian.org> Mon, 5 May 1997 18:12:43 -0400
  1155. dpkg (1.4.0.12) experimental; urgency=low
  1156. * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
  1157. (New Zealand in DST is +1300, for example) (fixes #7130).
  1158. * Patch from Juergen Menden <menden@morgana.camelot.de> to support
  1159. archdependent-only builds (fixes #8912, #9245, #5359).
  1160. * Fix archtable entry for powerpc (fixes #8794).
  1161. * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
  1162. * Moved start-stop-daemon to /sbin (fixes #8669).
  1163. * Set sharedstatedir and localstatedir for $(MAKE) install in
  1164. debian/rules (fixes #8852).
  1165. * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
  1166. (fixes #8576).
  1167. * No longer do variable substitutions when generating change file (fixes
  1168. #5862).
  1169. * Support symbolic signal names in start-stop-daemon (fixes #7715).
  1170. * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
  1171. (fixes #4519, #5841).
  1172. * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
  1173. --print-architecture, used by dpkg-gencontrol; make is needed for any
  1174. debian/rules file) (fixes #8470).
  1175. * Minor changes to packaging manual section on source package
  1176. conversion (fixes #6801).
  1177. * Renamed "programmer's manual" to 'packaging manual'.
  1178. * Start of new "programmer's manual" containing information on dpkg
  1179. internals and build information. This manual uses the new
  1180. TeXinfo-SGML format, currently included in doc/.
  1181. * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
  1182. * Changed makefiles to support building outside of source directory.
  1183. * Include GNU-format source distribution with other non-debian packages.
  1184. -- Klee Dienes <klee@debian.org> Sun, 4 May 1997 11:08:19 -0500
  1185. dpkg (1.4.0.11) experimental; urgency=low
  1186. * Patches for alpha and libc6 from Michael Alan Dorman
  1187. <mdorman@calder.med.miami.edu>.
  1188. * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
  1189. * Fix regex to detect directory creation in dpkg-source.pl.
  1190. * Minor changes for automake-1.1n.
  1191. -- Klee Dienes <klee@debian.org> Sun, 23 Mar 1997 18:09:33 -0500
  1192. dpkg (1.4.0.10) unstable; urgency=medium
  1193. * Fixed bug in controllib.pl (@fowner was entire passwd entry,
  1194. not just [uid, gid] as it should have been).
  1195. -- Klee Dienes <klee@debian.org> Thu, 20 Mar 1997 13:06:52 -0500
  1196. dpkg (1.4.0.9) unstable; urgency=low
  1197. * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
  1198. * dpkg-shlibdeps no longer gives error for Java and statically linked
  1199. binaries (fixes #4988).
  1200. * Change 'details of the old format' to 'details of the new format' in
  1201. deb-old.5 (fixes #7605).
  1202. * dpkg-source -b now warns (was previously silent) if maintainer changes
  1203. create new subdirectories. dpkg-source -x now warns (previously gave
  1204. error) if maintainer changes create new subdirectories (partially
  1205. fixes #6866, #6671, #5045, #6482).
  1206. * Added manual page for start-stop-daemon (8).
  1207. * Added C version of start-stop-daemon by
  1208. Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
  1209. * Converted to use GNU automake for the build process by Tom Lees
  1210. <tom@lpsg.demon.co.uk>.<
  1211. * Preliminary support for dpkg functions as a shared library (now
  1212. provides libdpkg.so, but much work needs to be done in better
  1213. segregating and defining the interface).
  1214. * Preliminary internationalization support by Galen Hazelwood
  1215. <galenh@debian.org>. Only the library, dpkg-deb, md5sum, and dpkg
  1216. have been converted so far. No translations have yet been
  1217. constructed.
  1218. * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
  1219. ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
  1220. * Removed policy.sgml (it has been moved to the debian-policy package).
  1221. * Include patch from Darren Stalder <torin@daft.com> for
  1222. dpkg-buildpackage to choose PGP key based on Maintainer: field of
  1223. package being built (or -m<maintainer> option, if present) (fixes
  1224. #7898).
  1225. * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
  1226. (in that order) to determine the intended ownership of
  1227. debian/{files,substvars}, (fixes #7324, #6823, #5659, #5965, #5929,
  1228. #9239, #5366).
  1229. * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
  1230. release (fixes #7260).
  1231. * Updated developer-keys.pgp to latest revision (fixes #6134).
  1232. -- Klee Dienes <klee@debian.org> Mon, 17 Mar 1997 16:11:24 -0500
  1233. dpkg (1.4.0.8) unstable; urgency=medium
  1234. * Corrected update-rc.d for bash 2.0
  1235. * Updated developer-keys.pgp from
  1236. http://www.iki.fi/liw/debian/debian-keyring.tar.gz
  1237. -- Guy Maor <maor@ece.utexas.edu> Mon, 3 Feb 1997 04:05:01 -0600
  1238. dpkg (1.4.0.7) stable unstable; urgency=HIGH
  1239. * Fixed --assert-support-predepends failing between unpack & configure.
  1240. * Added --assert-working-epoch option.
  1241. -- Guy Maor <maor@ece.utexas.edu> Sat, 25 Jan 1997 23:02:11 -0600
  1242. dpkg (1.4.0.6) stable unstable; urgency=high
  1243. * Patched lib/vercmp.c to hopefully fix dselect epoch processing
  1244. (Bug#6204), (Bug#4590).
  1245. * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
  1246. scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
  1247. <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
  1248. * Patched dpkg-genchanges to actually honor the -u switch to specify
  1249. directory (Bug#5564).
  1250. * Applied patch to main/archive.c to correct problems setting set[gu]id
  1251. binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
  1252. (Bug#5479).
  1253. * Applied patch to dpkg-source to correct debian-only package names,
  1254. courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
  1255. -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 2 Jan 1997 11:36:09 -0500
  1256. dpkg (1.4.0.5) stable frozen unstable; urgency=medium
  1257. * Distribution for frozen too.
  1258. -- Heiko Schlittermann <heiko@lotte.sax.de> Thu, 5 Dec 1996 09:13:42 +0100
  1259. dpkg (1.4.0.4) stable unstable; urgency=medium
  1260. * Bug2962 fixed: patch from Ian Jackson applied
  1261. (cursor keys won't work after search)
  1262. * Manuals 2.1.2.2
  1263. -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 15 Nov 1996 20:21:18 +0100
  1264. dpkg (1.4.0.3) unstable; urgency=medium
  1265. * dpkg-source -x: created bad permissions (set x-bit for
  1266. all files pointed to by a symlink)
  1267. -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 18 Oct 1996 18:32:06 +0200
  1268. dpkg (1.4.0.2) unstable; urgency=medium
  1269. * dpkg-buildpackage.sh: reverted the quoting change -- (you
  1270. should use super, sudo, realy, but not su. Or write a wrapper
  1271. around su)
  1272. * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
  1273. more the way Ian likes ;-)
  1274. * dpkg-source.pl: new function deoctify() as replacement for eval()
  1275. (turn \ddd into the corresponding character) [rem: probably better
  1276. solution would be to convert cpios output names into complete \ddd
  1277. representation as well tars output names]
  1278. * dpkg-source.pl: fixed 2 typos in failure message on creating
  1279. $origtargz.tmp-nest.
  1280. * main/main.c: typo `tread' -> `treat'
  1281. * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
  1282. * main/enquiry.c: missing version is now handled as described in `dpkg --help'
  1283. (or at least as I understood `dpkg --help' PLEASE TRY IT)
  1284. * lib/parsehelp.c: fixed parsing of epoch information
  1285. -- Heiko Schlittermann <heiko@lotte.sax.de> Sun, 6 Oct 1996 23:27:47 +0200
  1286. dpkg (1.4.0.1) unstable; urgency=medium
  1287. * dpkg-source: doesn't get screwed up from hardlinks
  1288. in the archive now
  1289. * dpkg-source: doesn't get screwed up from `unprintable' characters
  1290. in file names (e.g. from the kbd package)
  1291. * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
  1292. * dpkg-buildpackge: quoting for $rootcommand (thanx Michael Meskes)
  1293. and `eval' as default $rootcommand
  1294. * dpkg-*, controllib.pl: created debian/files and debian/substvars
  1295. are chown'ed to `getlogin()' and its group
  1296. * doc/: mv changed to mv -f
  1297. * dpkg-buildpackage: added an option -a for overriding the
  1298. architecture in the changes _file_name_
  1299. * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
  1300. * dpkg-name moved to dpkg-dev
  1301. -- Heiko Schlittermann <heiko@lotte.sax.de> Sat, 21 Sep 1996 22:06:01 +0200
  1302. dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
  1303. * Corrected buffer overrun when dpkg-deb generates filename. (Bug#4467.)
  1304. * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
  1305. * Added libm.so.5 to shlibs.default for i386/m68k.
  1306. * Split binary package into two: dpkg and dpkg-dev.
  1307. * dpkg-source(1) documents mode and ownership setting during extraction.
  1308. * dpkg-scanpackages moved to /usr/bin.
  1309. * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
  1310. * Copyright file changed slightly.
  1311. * debian-changelog-mode uses magic key substitution strings. (Bug#4419.)
  1312. * Changed email address in control file to <ian@chiark.greenend.org.uk>.
  1313. * Manuals and own Standards-Version: updated to 2.1.1.0.
  1314. -- Ian Jackson <ian@chiark.greenend.org.uk> Thu, 12 Sep 1996 01:13:33 +0100
  1315. dpkg (1.3.14) unstable; urgency=low
  1316. * dpkg-buildpackage new -tc (clean source tree) option.
  1317. * Formatted documentation removed by `make clean' and so not in source.
  1318. * Manuals and own Standards-Version: updated to 2.1.0.0.
  1319. * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
  1320. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 1 Sep 1996 20:43:40 +0100
  1321. dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
  1322. * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
  1323. * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
  1324. * dpkg-source copes better with missing final newline messages from diff.
  1325. * dpkg-buildpackage usage message fixed: -si is the default. (Bug#4350.)
  1326. * dpkg-source error message about src dir mismatch typo fixed. (Bug#4349.)
  1327. * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
  1328. * dpkg-source change date fixed. (Bug#4351.)
  1329. * More developers' keys.
  1330. * Manual updates, own Standards-Version updated.
  1331. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 31 Aug 1996 20:08:18 +0100
  1332. dpkg (1.3.12) unstable; urgency=medium
  1333. * dpkg prints old version number when upgrading. (Bug#4340.)
  1334. * dpkg-deb tries to detect and flag corruption by ASCII download.
  1335. * dpkg-genchanges and dpkg-buildpackage say what source is included.
  1336. * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand). (Bug#4342.)
  1337. * dpkg-source prints better error for cpio not honouring -0t.
  1338. * control file Suggests cpio >= 2.4.2, rather than just cpio.
  1339. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 30 Aug 1996 15:31:51 +0100
  1340. dpkg (1.3.11) unstable; urgency=low
  1341. * EBUSY when dpkg removes a directory is only a warning.
  1342. * dpkg-genchanges generates sensible warning (not confusing error
  1343. about mismatch) for missing Section/Priority in binary packages.
  1344. * Added dpkg --print-gnu-build-architecture option.
  1345. * shlibs.default for m68k provided, as a copy of i386 version.
  1346. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 29 Aug 1996 14:05:02 +0100
  1347. dpkg (1.3.10) unstable; urgency=medium
  1348. * dpkg-source(1) manpage alias symlinks are not dangling.
  1349. * dselect selects things by default if they are installed.
  1350. * Added `pentium' as alias for `i386' architecture.
  1351. * Added `Suggests: cpio, patch' and explanatory text to Description.
  1352. (Bugs #4262, #4263.)
  1353. * More developers' PGP keys.
  1354. * Manual updates, new source format released.
  1355. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 26 Aug 1996 14:30:44 +0100
  1356. dpkg (1.3.9) unstable; urgency=low (high for new source format)
  1357. * dpkg --get-selections and --set-selections added.
  1358. * New dpkg --force-not-root flag.
  1359. * Don't replace directory with another package's file. (Bug#4202.)
  1360. * All manpages now installed compressed.
  1361. * Copyright file moved to /usr/doc/dpkg/copyright.
  1362. * Standards-Version updated (0.2.1.1).
  1363. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 24 Aug 1996 19:09:30 +0100
  1364. dpkg (1.3.8) unstable; urgency=low (high for new source format)
  1365. * dpkg-buildpackage -sa, -si options work correctly.
  1366. * update-rc.d(8) updated to reflect design and reality.
  1367. * Programmers' and policy manual updates.
  1368. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 23 Aug 1996 12:48:26 +0100
  1369. dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
  1370. * dselect +/-/_/= on lines for all broken, new, local or whatever
  1371. packages do not affect _all_ packages. (Bug#4129.)
  1372. * Support for diff-only uploads in source packaging tools.
  1373. * dpkg-genchanges -d<descripfile> option renamed to -C.
  1374. * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
  1375. * Support for debian/shlibs.local added to dpkg-shlibdeps.
  1376. * Shared library files' search order defined in dpkg-source(1), and
  1377. relevant files added to the FILES section.
  1378. * Programmers' manual describes source packaging tools.
  1379. * Policy manual mentions shared library control area file.
  1380. * dpkg-source manpage includes dpkg-shlibdeps in title line.
  1381. * Manuals have changelog and automatic version numbering.
  1382. * changelogs (for dpkg and for manuals) installed.
  1383. * binary target split into binary-arch and binary-indep in manual.
  1384. * Manpages should be compressed.
  1385. * Copyright file is moved to /usr/doc/<package>/copyright.
  1386. * Changelogs must be installed in /usr/doc/<package>.
  1387. * dpkg-deb(8) moved to dpkg-deb(1).
  1388. * binary target split into binary-arch and binary-indep in source.
  1389. * changelog entry for 1.2.14 copied from that (forked) release.
  1390. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 15:36:12 +0100
  1391. dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
  1392. * dpkg-source now has broken argument unparsing for tar. (Bug#4195.)
  1393. * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
  1394. * dpkg-shlibdeps script added.
  1395. * Back to old sh update-rc.d, and removed manpage, because new Perl
  1396. version and the manpage have different syntax and semantics.
  1397. * update-rc.d prints usage message for missing terminal `.'. (Bug#4122.)
  1398. * Use rm -rf instead of just rm -r in dpkg-deb --info &c. (Bug#4200.)
  1399. * Added support for Installed-Size to dpkg-gencontrol, and documented.
  1400. * Source packaging substitution variables and name syntax rationalised.
  1401. * dpkg-source scripts' usage messages improved slightly.
  1402. * dpkg-source works with non-empty second (orig dir) argument.
  1403. * Added rationale for copyright policy to manual.
  1404. * More developers' PGP keys.
  1405. * Control database handling cleanups (usu. Source field blanked).
  1406. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 20 Aug 1996 15:39:58 +0100
  1407. dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
  1408. * 822-date script included. (Bug#4136.)
  1409. * debian-changelog-add-version works on empty file.
  1410. * debian-changelog-mode mode-help works properly.
  1411. * dpkg-source tells patch not to make numbered backups. (Bug#4135.)
  1412. * More developers' PGP keys.
  1413. * Paragraph on uucp -a and -g options removed from policy manual.
  1414. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 14 Aug 1996 14:46:47 +0100
  1415. dpkg (1.3.4) experimental; urgency=low
  1416. * Removed debugging output from dpkg-source -x. Oops.
  1417. * Removed section on source package permissions from policy manual -
  1418. dpkg-source now sorts these out.
  1419. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 11 Aug 1996 13:25:44 +0100
  1420. dpkg (1.3.3) experimental; urgency=low
  1421. * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
  1422. * Old guidelines.info and text files in /usr/doc/dpkg removed.
  1423. * dpkg-source sets permissions on extracted debianised source tree
  1424. and does not copy ownerships out of archive even if running as root.
  1425. * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
  1426. * Default changelog format renamed from `dpkg' to `debian'.
  1427. * debian-changelog-mode sets fill-prefix correctly.
  1428. * debian-changelog-mode urgencies except HIGH lowercase by default.
  1429. * debian-changelog-mode displays keymap in doc string and so mode help.
  1430. * More maintainers' PGP keys.
  1431. * Remove built changelog parsers with `clean' target in source.
  1432. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 23:35:51 +0100
  1433. dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
  1434. * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
  1435. * install-info --test doesn't lock dir. (Bug#3992, thanks Darren).
  1436. * dpkg-source doesn't break in the presence of any symlinks.
  1437. * More developers' keys added to doc/developer-keys.pgp.
  1438. * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
  1439. * dpkg-source documents undefined substvar behaviour.
  1440. * minor debian/rules cleanups.
  1441. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 02:13:47 +0100
  1442. dpkg (1.3.1) experimental; urgency=LOW
  1443. * manpage for dpkg-source et al now available.
  1444. * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
  1445. * dpkg-source prints correct string for not-understood tar -vvt output.
  1446. * dpkg-source parsing of tar -vvt output made more robust.
  1447. * dpkg-buildpackage prints usage message on usage error.
  1448. * dpkg-gencontrol can print usage message.
  1449. * -T<varlistfile> option added to dpkg-source.
  1450. * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
  1451. * -m<maintainer> synopsis changed in dpkg-genchanges usage.
  1452. * debian/substvars may now contain blank lines.
  1453. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 8 Aug 1996 02:36:04 +0100
  1454. dpkg (1.3.0) experimental; urgency=LOW
  1455. * dpkg can install named pipes.
  1456. * dpkg-deb supports directory for destination, generates filename.
  1457. * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
  1458. dpkg-distaddfile scripts to support new source package format.
  1459. * a.out build no longer supported.
  1460. * Changed to new source package format.
  1461. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 6 Aug 1996 02:31:52 +0100
  1462. dpkg (1.2.14) stable unstable; urgency=MEDIUM
  1463. * dselect +/-/_/= on lines for all broken, new, local or whatever
  1464. packages do not affect _all_ packages. (Bug#4129.)
  1465. * NOTE - THE HISTORY FORKS HERE. 1.2.14's change appears in 1.3.7.
  1466. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 00:39:52 +0100
  1467. dpkg (1.2.13) unstable; urgency=LOW
  1468. * dpkg --search produces correct output for diversions.
  1469. * dpkg-name remove unnecessary arch missing warning. (Bug#3482.)
  1470. * dpkg-deb --build warns about uppercase chars in package name.
  1471. * dpkg-scanpackages error messages updated and manpage provided
  1472. (thanks to Michael Shields).
  1473. * dpkg-scanpackages warns about spurious entries in override file.
  1474. * dpkg-scanpackages `noverride' renamed to `override' everywhere.
  1475. * dpkg-scanpackages field ordering to put Architecture higher.
  1476. * dpkg-scanpackages field names capitalised appropriately.
  1477. * dpkg-scanpackages invokes find with -follow. (Bug#3956.)
  1478. * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
  1479. * Many developers' PGP keys added.
  1480. * configure script uses ${CC} instead of $(CC) (again :-/).
  1481. * developers' keys included in dpkg source tree and /usr/doc.
  1482. * configure remade using autoconf 2.10-3 (was 2.4-1).
  1483. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 1 Aug 1996 02:46:34 +0100
  1484. dpkg (1.2.12); priority=LOW
  1485. * dpkg --search and --list understand and comment on diversions.
  1486. * dpkg-divert displays diversions more intelligibly.
  1487. * Guidelines are somewhat clearer about descriptions.
  1488. * deb(5) describes new format; old moved to deb-old(5). (Bug#3435.)
  1489. * deb-control(5) carries a warning about being out of date.
  1490. * Added 1996 to dselect version/copyright.
  1491. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Jul 1996 15:04:49 +0100
  1492. dpkg (1.2.11); priority=MEDIUM
  1493. * dselect had dependency bug if installed package newer than avail.
  1494. * Added `replaces' to dselect's list of package relationship strings.
  1495. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 1 Jul 1996 02:51:11 +0100
  1496. dpkg (1.2.10); priority=MEDIUM
  1497. * Fixed bug in old-style version/revision number parsing. (Bug#3440.)
  1498. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 29 Jun 1996 03:32:45 +0100
  1499. dpkg (1.2.9); priority=MEDIUM
  1500. * Fixed status database updates reading bug.
  1501. * `Setting up' message includes version number.
  1502. * `existence check' message changed to say `cannot access archive'.
  1503. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 27 Jun 1996 13:39:36 +0100
  1504. dpkg (1.2.8); priority=LOW
  1505. * dpkg --record-avail puts data in Size field.
  1506. * strip / for rmdir(2) in cleanup to work around kernel bug. (Bug#3275.)
  1507. * dpkg-split --msdos no longer allows `-' and other chars in filenames.
  1508. * manual dpkg-split(8) written.
  1509. * dpkg-split minor typo in --auto usage error message fixed.
  1510. * dpkg-deb(8) very minor cosmetic fix to --build option.
  1511. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 25 Jun 1996 03:00:14 +0100
  1512. dpkg (1.2.7); priority=LOW
  1513. * dpkg-scanpackages syntax errors fixed.
  1514. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 21 Jun 1996 04:10:38 +0100
  1515. dpkg (1.2.6); priority=MEDIUM
  1516. * NFS, CDROM and partition dselect methods include mountpoint
  1517. in paths given to dpkg in [I]install, so they should now work.
  1518. * Removed some leftover files from source tree.
  1519. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 12 Jun 1996 14:35:19 +0100
  1520. dpkg (1.2.5); priority=MEDIUM
  1521. * Allow, but do not create, packages in half-installed state
  1522. with no version number. (Aargh.)
  1523. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 04:55:43 +0100
  1524. dpkg (1.2.4); priority=MEDIUM
  1525. * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
  1526. * Disappeared packages can't own conffiles any more ! (Bug#3214.)
  1527. * install-info creates Miscellaneous sections with a newline
  1528. following the heading. (Bug#3218.)
  1529. * cleanup-info script installed in /usr/sbin; called as appropriate
  1530. by postinst. Thanks to Kim-Minh Kaplan. (Bug#3125.)
  1531. * Allow superseded Essential packages to be purged after they've
  1532. been removed (clear the Essential flag on removal, and ignore it
  1533. on packages that are in stat_configfiles).
  1534. * dselect disk methods understand `y' as well as `yes' for using
  1535. development tree.
  1536. * dselect doesn't make packages appear as `new' again if update
  1537. of available packages fails.
  1538. * dselect places method selection cursor over option last selected.
  1539. * dpkg-scanpackages doesn't die when repeated packages are found.
  1540. * dpkg-scanpackages allows many old maintainers (`//'-separated).
  1541. * `Version' field is now mandatory (some operations already
  1542. wouldn't work right anyway if it was't there).
  1543. * update-rc.d(8) now says you must remove the script. (Bug#3215.)
  1544. * dpkg --force-help says that --force-overwrite is on by default.
  1545. * dpkg-deb manpage rewritten.
  1546. * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
  1547. * Some database parsing grunge removed (pdb_preferversion, &c).
  1548. * Source tree doc/sgml contains some embryonic manuals.
  1549. * Leftover files in lib directory in source tree deleted.
  1550. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 03:52:01 +0100
  1551. dpkg (1.2.3); priority=HIGH
  1552. * install-info doesn't replicate section headings (Bug#3125, #2973).
  1553. * New dpkg-name manpage broken off from script (oops!).
  1554. * dselect help screens made consistent with new strings, flags, &c.
  1555. * dselect error flag column labelled E (Error), not H (Hold).
  1556. * `Escape' no longer bound to `exit list without saving' in dselect.
  1557. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 28 May 1996 02:14:57 +0100
  1558. dpkg (1.2.2); priority=MEDIUM
  1559. * Fixed dselect coredump found by Erick Branderhorst (thanks).
  1560. * Sort obsolete removed packages separately, not under Available.
  1561. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 23 May 1996 21:31:05 +0100
  1562. dpkg (1.2.1); priority=MEDIUM
  1563. * `=' key in dselect really does `hold' rather than `unhold'.
  1564. * dselect dependency processing now interacts better with `hold'.
  1565. * dselect `I' key (not `i') modifies display of the info window.
  1566. * dselect shows unavailable packages as being unavailable.
  1567. * dselect main menu headings and many other strings changed to try to
  1568. discourage people from deselecting every package and using [R]emove.
  1569. Notably, `select' changed to `mark' throughout.
  1570. * dselect disk methods now print a few fewer double slashes.
  1571. * dselect disk access methods will offer to use dpkg --record-avail
  1572. to scan the available packages, if no Packages file is found.
  1573. * New dpkg --compare-versions option, for the benefit of scripts &c.
  1574. * New dpkg --clear-avail option forgets all available packages info.
  1575. * New dpkg --print-avail option, prints `available' data (from Packages, &c).
  1576. * dpkg usage message is more informative, but no longer fits on screen.
  1577. * dpkg --avail option renamed --record-avail.
  1578. * Latest dpkg-name from Erick Branderhorst.
  1579. * dpkg-scanpackages has more sensible problem reporting.
  1580. * postinst configure now gets null argument (not <unknown> or <none>)
  1581. when there is no previously configured version.
  1582. * Guidelines say that postinst configure is given previous version.
  1583. * Guidelines don't refer to maintainer-script-args.txt in main text.
  1584. * Guidelines (Texinfo source) uploaded separately.
  1585. * Own version of strcpy (used for debugging) removed.
  1586. * Interface to access methods document in source (doc/dselect-methods.txt).
  1587. * debian.buildscript moves changes file into parent directory.
  1588. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 22 May 1996 01:26:31 +0100
  1589. dpkg (1.2.0); priority=MEDIUM
  1590. * dselect can sort packages by available and installed states, and
  1591. display their version numbers. (Use O, o and V.)
  1592. * Hold is properly integrated as a real `wanted state', rather than
  1593. a separate flag.
  1594. * Epochs in version numbers implemented, using the syntax
  1595. <epoch>:<version>-<revision>. (Epoch not usually displayed.)
  1596. * dselect disk method is architecture-independent (uses dpkg's
  1597. installation architecture, and looks in the right part of the tree).
  1598. * dselect disk method doesn't try to satisfy the predependencies of
  1599. packages which are on hold.
  1600. * Fixed conflict-related assertion failure. (Bug#2784.)
  1601. * conffiles do not cause file conflicts if the conflicting package
  1602. is in the `configuration only' state. (Bug#2720.)
  1603. * Fixed messages where available version number was reported as installed
  1604. version in conflict and dependency messages. (Bug#2654, Bug#2974.)
  1605. * New format .deb files are default even for a.out compiles (but
  1606. a.out version of dpkg is in old format).
  1607. * Characters @:= (at colon equals) in package names now strictly
  1608. forbidden everywhere (_ is still allowed in existing packages).
  1609. * New dpkg --print-installation-architecture option prints installation
  1610. architecture (compiled in), rather than build architecture (determined
  1611. from gcc -print-libgcc-file-name).
  1612. * Version messages show whether compiled a.out or ELF (i386 only).
  1613. * Fixed missing space in version syntax error messages.
  1614. * Manpage dpkg.8 installed with warning about inaccuracy.
  1615. * Guidelines don't say to stop and restart daemons in runlevels 2345;
  1616. instead they say to start in 2345 and stop in 016.
  1617. * Guidelines and version messages say just Debian Linux.
  1618. * Guidelines typo fix `"stop2' => `"stop"'. (Bug#2867.)
  1619. * doc/Makefile.in clean properly deletes various guidelines.info* files.
  1620. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 16 May 1996 00:01:21 +0100
  1621. dpkg (1.1.6); priority=MEDIUM
  1622. * Check virtual dependencies when removing (ouch! - thanks SDE.)
  1623. * Fixed bug in internal database validity management that could
  1624. make dselect and dpkg dump core. (Bug#2613.)
  1625. * Fixed two coredumping bugs when using local diversions. (Bug#2804.)
  1626. * Fixed disappearance of overwritten packages. (Bug#2696.)
  1627. * install-info won't modify dir file before start of menu.
  1628. * install-info will create Miscellaneous heading if no sections yet.
  1629. * Only alphanums and +-. allowed in package names - enforced by
  1630. dpkg-deb --build and documented in Guidelines.
  1631. * dselect doesn't display packages unless they are installed, selected
  1632. or available.
  1633. * dselect doesn't show spurious section and priority headings.
  1634. * dselect has a few extra keybindings (from Lee Olds).
  1635. * --force message changed to `--force enabled' so that default is OK.
  1636. * dpkg-name now includes architecture component in .deb filename,
  1637. and translates - in package name to _.
  1638. * .deb file has architecture component in filename.
  1639. * Guidelines changed to say Pre-Depends is for experts only.
  1640. * Guidelines say to provide a unidiff (-u) rather than an old context diff.
  1641. * Guidelines say 755 root.root for shared libraries.
  1642. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 1 May 1996 00:47:22 +0100
  1643. dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
  1644. * Fixed coredump when using diversions. (Bug#2603.)
  1645. * Fixed typo in dpkg-divert which could lose diversions. (Bug#2662.)
  1646. * --force-overwrite is the default.
  1647. * diversions.text provides better examples.
  1648. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 10 Apr 1996 13:59:30 +0100
  1649. dpkg (1.1.4); priority=MEDIUM
  1650. * Allow overwriting of conflicting packages being removed. (Bug#2614.)
  1651. * a.out control file says Pre-Depends: libc4 | libc. (Bug#2640.)
  1652. * ELF control file and libc dependencies changed to use finalised scheme.
  1653. * ELF control file and libc dependencies for i386 only. (Bug#2617.)
  1654. * Guidelines say use only released libraries and compilers.
  1655. * Install wishlist as /usr/doc/dpkg/WISHLIST.
  1656. * Remove spurious entries for Guidelines in info dir file.
  1657. * dpkg-deb --build checks permissions on control (DEBIAN) directory.
  1658. * Spaces in control file fields not copied by dpkg-split. (Bug#2633.)
  1659. * Spaces in split file part control data ignore. (Bug#2633.)
  1660. * Portability fixes, including patch from Richard Kettlewell.
  1661. * Fixed minor configure.in bug causing mangled GCC -W options.
  1662. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Apr 1996 01:58:40 +0100
  1663. dpkg (1.1.3); priority=LOW
  1664. * dselect disk methods support Pre-Depends installation ordering.
  1665. * When dpkg fails and --auto-deconfigure would help it says so.
  1666. * dpkg --search output lists several packages with same file on one line.
  1667. * Improved dpkg usage message somewhat.
  1668. * dpkg-deb --build checks permissions and types of maintainer scripts.
  1669. * dpkg-deb --build treats misspecified conffiles as error, not warning.
  1670. * dpkg --print-architecture prints compiler's architecture while
  1671. dpkg --version (&c) print system's arch (this to help cross-compiling).
  1672. * More minor guidelines changes, including dir entry fixup.
  1673. * configure script caches more values.
  1674. * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
  1675. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 16 Mar 1996 19:18:08 +0000
  1676. dpkg (1.1.2); priority=LOW
  1677. * Packaging guidelines installed properly (and as guidelines
  1678. rather than debian-guidelines).
  1679. * ELF version has more checks to stop you wrecking your dpkg installation.
  1680. * dselect disk methods now look for a `local' tree as well, for
  1681. people who want locally-available software of various kinds.
  1682. * dpkg-divert has debugging message removed.
  1683. * Minor guidelines changes.
  1684. * Various makefile cleanups, mainly to do with ELF vs. a.out support.
  1685. * debian.rules cleans out ~ files itself, as well as calling make clean.
  1686. * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
  1687. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 14 Mar 1996 03:38:29 +0000
  1688. dpkg (1.1.1elf); priority=LOW
  1689. * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
  1690. * Replaces field now allows automatic removal of conflicting packages.
  1691. * Replaces field now required to overwrite other packages' files.
  1692. * Architecture field, and dpkg --print-architecture, supported.
  1693. * build new format archives by default when compiled with ELF compiler.
  1694. * symlinks are now installed atomically (good for shared libraries).
  1695. * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
  1696. * Pre-Depends now correctly fails if package never configured.
  1697. * dselect disk methods mount with -o nosuid,nodev.
  1698. * update-rc.d defaults doesn't add both K and S in any one runlevel;
  1699. dpkg postinst fixes up this situation if it sees it.
  1700. * Assorted fixups to the Guidelines, which are now in one piece.
  1701. * dpkg --list prints version string in one piece.
  1702. * dpkg-scanpackages doesn't produce notice on output with list of
  1703. packages with Section and/or Priority control file fields.
  1704. * control file and debian.rules work both for ELF and non-ELF compiles.
  1705. * most files compiled with -O2 (-O3 only for some critical files) -
  1706. this fixes ELF build.
  1707. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Mar 1996 04:25:28 +0000
  1708. dpkg (1.1.0); priority=LOW
  1709. * dpkg supports Pre-Depends.
  1710. * postinst script gets most-recently-configured version as $2.
  1711. * lib/tarfn.c #includes <errno.h> (portability fix).
  1712. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 11 Feb 1996 21:07:03 +0000
  1713. dpkg (1.0.17); priority=LOW
  1714. * dpkg --recursive follows symlinks (useful for devel tree).
  1715. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Feb 1996 15:58:46 +0000
  1716. dpkg (1.0.16); priority=LOW
  1717. * dpkg-deb much faster reading new format archives. (Bug#2256.)
  1718. * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
  1719. * Fixed typo in control file Description.
  1720. * configure script tries to improve matters wrt sysinfo.
  1721. * any debian-tmp.deb is deleted by `./debian.rules clean'.
  1722. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 4 Feb 1996 15:51:59 +0000
  1723. dpkg (1.0.15); priority=LOW
  1724. * dselect disk methods should never unmount things they didn't mount.
  1725. * debian.README aka /usr/doc/copyright updated.
  1726. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 15:05:39 +0000
  1727. dpkg (1.0.14); priority=MEDIUM
  1728. * fixed file descriptor leak in dpkg introduced in 1.0.11.
  1729. * included dpkg-name in this package (conflicts with dpkg-name).
  1730. * redraw in dselect main menu changed to use clearok (like in lists).
  1731. * sa_restorer in struct sigaction no longer used (portability fix).
  1732. * removed Guidelines from source package.
  1733. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 02:52:29 +0000
  1734. dpkg (1.0.13); priority=MEDIUM
  1735. * dselect partition and mounted methods work again.
  1736. * dpkg-deb --no-act in usage message.
  1737. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 26 Jan 1996 18:37:03 +0000
  1738. dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
  1739. * Fixed frequent dpkg coredump introduced in 1.0.11. (Bug#2219.)
  1740. * dpkg-deb ensures version numbers start with alphanumerics.
  1741. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 24 Jan 1996 00:42:31 +0000
  1742. dpkg (1.0.11); priority=MEDIUM
  1743. * corrected potentially serious problem with dpkg low-memory in-core
  1744. files database.
  1745. * dpkg-split --msdos puts output files in right directory. (Bug#2165.)
  1746. * diversions implemented - see `dpkg-divert --help'.
  1747. * dselect shows and uses (for dependencies) currently installed
  1748. version of a package if that is more recent.
  1749. * dpkg --force-... options are in separate help screen.
  1750. * better error messages for corrupted .deb archives. (Bug#2178.)
  1751. * dselect NFS method will unmount correct copy of NFS area if mounted
  1752. twice.
  1753. * removes some ELF compilation warnings.
  1754. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 Jan 1996 02:41:46 +0000
  1755. dpkg (1.0.10); priority=MEDIUM
  1756. * dpkg-deb option parsing unmuddled (-I option was removed
  1757. in 1.0.9 and broke dpkg-deb). (Bug#2124.)
  1758. * dpkg-split will work when ELF `ar' is installed, and is faster.
  1759. * nfs dselect method now available.
  1760. * disk methods don't prompt spuriously for Packages files.
  1761. * cdrom+harddisk methods can find Packages files.
  1762. * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
  1763. * various changes to help compilation of dpkg-deb, dpkg-split
  1764. and md5sum on non-Debian systems.
  1765. * <sys/fcntl.h> replaced by <fcntl.h> throughout.
  1766. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 Jan 1996 02:55:19 +0000
  1767. dpkg (1.0.9); priority=MEDIUM
  1768. * dselect uninitialised variable coredump fixed (thanks Carl).
  1769. * version numbers printed by --version fixed. (Bug#2115.)
  1770. * disk method problem with missing Packages files fixed. (Bug#2114.)
  1771. * dependency version relationships now <= >= << >> =. (Bug#2060.)
  1772. * install-info is in /usr/sbin, not /usr/bin. (Bug#1924.)
  1773. * dpkg regards Revision field as obsolete.
  1774. * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
  1775. * scripts/Makefile.in `clean' target deletes scripts.
  1776. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 11 Jan 1996 20:51:20 +0000
  1777. dpkg (1.0.8); priority=LOW
  1778. * update-alternatives slightly more helpful message. (Bug#1975.)
  1779. * cosmetic improvements to disk installation method. (Bug#1970,1956.)
  1780. * mounted filesystem and unmounted partition separate methods. (Bug#1957.)
  1781. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Dec 1995 04:07:47 +0000
  1782. dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
  1783. * dselect harddisk/CDROM method script handles multiple package
  1784. areas.
  1785. * Everything has a manpage, though many are very unhelpful indeed.
  1786. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 30 Nov 1995 03:59:14 +0000
  1787. dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
  1788. * conffiles can now be taken over properly from one package by
  1789. another which replaces it. (Bug#1482.)
  1790. * dpkg will not deconfigure essential packages when --auto-deconfigure
  1791. is set (this bug was fairly unlikely ever to be exercised).
  1792. * dpkg checks for the presence of certain important programs on the PATH.
  1793. * dselect is now more informative when a dependency is missing, saying
  1794. "<package> does not appear to be available". (Bug#1642, 1705).
  1795. * `make distclean' fixed; config.* &c removed from source archive.
  1796. * lib/lock.c now uses fcntl rather than flock, for better portability.
  1797. * `Package_Revision: 0' removed from control file.
  1798. * Some inaccuracies and bad formatting in various messages corrected.
  1799. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 21 Nov 1995 20:15:18 +0000
  1800. dpkg (1.0.5); priority=LOW
  1801. * dpkg-split allows some space for the header. (Bug#1649.)
  1802. * dpkg-split now has --msdos option for 8.3 filenames.
  1803. * dpkg-split --join &c will not complain about trailing garbage.
  1804. * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
  1805. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 13 Oct 1995 13:59:51 +0100
  1806. dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
  1807. * fixed bug which prevented dselect from displaying the bottom line of
  1808. any listing screen. This was introduced in 1.0.3, sorry !
  1809. * a conffile will never cause a prompt if the package maintainer
  1810. distributes a file identical to the user's, even if the file has
  1811. been edited by both the user and the maintainer or is a
  1812. newly-registered conffile. (Bug#1639.)
  1813. * dselect disk/cdrom method script says where to get Packages file.
  1814. * dselect help has better descriptions of the functions of Return and Q.
  1815. * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
  1816. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 12 Oct 1995 01:45:38 +0100
  1817. dpkg (1.0.3); priority=MEDIUM
  1818. * dselect: fixed segfault when doing some multiple (de)selections.
  1819. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 10 Oct 1995 03:21:12 +0100
  1820. dpkg (1.0.2); priority=MEDIUM
  1821. * problem with screen refresh after `o' (change order) corrected.
  1822. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 9 Oct 1995 13:11:04 +0100
  1823. dpkg (1.0.1); priority=LOW
  1824. * much better dpkg performance on low-memory systems.
  1825. * start-stop-daemon --name should now work. (oops!)
  1826. * fixed typo which could turn into memory overwriting bug sometime.
  1827. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 8 Oct 1995 20:12:29 +0100
  1828. dpkg (1.0.0); priority=LOW
  1829. * Version 1.0.0: dpkg is no longer beta.
  1830. * tar extractor no longer looks up an empty string using getgrnam
  1831. (this causes the libc to coredump when using NIS).
  1832. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 1 Oct 1995 13:07:36 +0100
  1833. dpkg (0.93.80); priority=LOW
  1834. * dselect help screen intro changed to remove `much' before `help'.
  1835. * update-alternatives.pl contains hardcoded ENOENT value, instead
  1836. of requiring POSIX.pm to be present.
  1837. * Makefiles changed to strip when installing instead of when building.
  1838. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 30 Sep 1995 01:44:12 +0100
  1839. dpkg (0.93.79) BETA; priority=LOW
  1840. * DPKG_NO_TSTP environment variable which stops dpkg sending the
  1841. process group a SIGTSTP (Bug#1496).
  1842. * End key should work in dselect lists (Bug#1501).
  1843. * various message typos (missing \n's) fixed (Bug#1504).
  1844. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 29 Sep 1995 03:27:01 +0100
  1845. dpkg (0.93.78) BETA; priority=LOW
  1846. * dselect keystrokes help file typo fix.
  1847. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 28 Sep 1995 20:31:02 +0100
  1848. dpkg (0.93.77) BETA; priority=MEDIUM
  1849. * dpkg --remove --pending will purge things when appropriate.
  1850. * fixed failure to null-terminate dpkg conflict problem messages.
  1851. * fixed bug in formatting of dependency version problem messages.
  1852. * Conffiles resolution prompt for new conffile: typo fixed.
  1853. * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
  1854. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 23:44:35 +0100
  1855. dpkg (0.93.76) BETA; priority=MEDIUM
  1856. * dpkg --auto-deconfigure option (used automatically by dselect) allows
  1857. `important' packages which many others depend on to be split.
  1858. * dpkg should no longer fail an assertion during complicated
  1859. multiple configurations involving packages which are on hold.
  1860. * update-alternatives supports negative priorities.
  1861. * /etc/alternatives is included in the .deb archive.
  1862. * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
  1863. Optional (Opt) and Extra (Xtr). For backward compatibility Base is an
  1864. alias for Required, and Recommended is kept as a level just below Standard.
  1865. * dselect shows introductory help screen when entering package lists (both
  1866. main and recursive).
  1867. * dselect help messages made more friendly.
  1868. * dselect package list `quit, confirm, and check dependencies' key is
  1869. now Return rather than lowercase `q'; likewise method list `select this
  1870. one and configure it' key.
  1871. * dselect selects packages with priority `standard' or better by default.
  1872. * dselect `v=verbose' becomes `v=terse' when in verbose mode.
  1873. * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
  1874. * disk methods' install message uses `stty' to find out what the
  1875. interrupt character is, and uses that in the prompt (rather than ^C).
  1876. * dpkg now tolerates ^Z characters in Packages files.
  1877. * harddisk method doesn't display extra slash when updating packages file.
  1878. * harddisk method burbles less if it doesn't have a good default.
  1879. * dpkg-deb now supports new flexible format, but old format still default.
  1880. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 02:49:41 +0100
  1881. dpkg (0.93.75) BETA; priority=MEDIUM
  1882. * dselect no longer segfaults when you try to modify the last item.
  1883. * dselect Makefile compiles with -g, and links without -s, but installs
  1884. with -s, so that built source directory has debugabble binary.
  1885. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Sep 1995 02:59:29 +0100
  1886. dpkg (0.93.74) BETA; priority=LOW
  1887. * dpkg-split implemented and installed in /usr/bin/dpkg-split.
  1888. (NB this is not compatible with Carl Streeter's old dpkg-split script.)
  1889. * dpkg uses dpkg-split.
  1890. * floppy disk method available - NB this is a first attempt only.
  1891. * hard disk method uses --merge-avail rather than --update-avail.
  1892. * installation by default of `standard' packages removed again.
  1893. (I don't think this is the right place to do this.)
  1894. * update-alternatives --remove correctly deletes all slave links;
  1895. minor cosmetic improvements.
  1896. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Sep 1995 02:06:05 +0100
  1897. dpkg (0.93.73) BETA; priority=LOW
  1898. * dselect multi-package selection now done by `divider' lines
  1899. actually in the package list, rather than horizontal highlight
  1900. movement.
  1901. * dselect help available, and keybindings rationalised.
  1902. * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
  1903. 0.93.42.3 or earlier.
  1904. * `hold' flag changed to be settable by the user only, and
  1905. made orthogonal to the `reinstallation required' flag.
  1906. * dpkg will install by default any packages with priority of
  1907. `standard' or better unless they're explictly deselected.
  1908. * dselect dependency/conflict resolution will suggest marking absent
  1909. packages for `purge' rather than `deinstall'.
  1910. * disk method script produces message about invoking dpkg.
  1911. * dpkg produces warning, not error, when it gets EPERM trying to
  1912. remove a directory belonging to a package being removed.
  1913. * dpkg, dpkg-deb usage error reporting improved.
  1914. * dselect detects too-dumb terminals and stops.
  1915. * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
  1916. * dselect debugmake script uses -O0.
  1917. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 10 Sep 1995 12:23:05 +0100
  1918. dpkg (0.93.72) BETA; priority=MEDIUM
  1919. * /usr/sbin/update-alternatives added.
  1920. * New names for certain control file fields (old names work
  1921. as aliases): Optional -> Suggests, Recommended -> Recommends,
  1922. Class -> Priority.
  1923. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 3 Sep 1995 16:37:41 +0100
  1924. dpkg (0.93.71) BETA; priority=LOW
  1925. * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
  1926. * case now not significant in Essential, Status and Class (Bug#1280).
  1927. * dselect checks method scripts for execute, not for write.
  1928. * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
  1929. * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
  1930. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 31 Aug 1995 13:56:08 +0100
  1931. dpkg (0.93.70) BETA; priority=MEDIUM
  1932. * dselect unmounted harddisk method has many silly bugs fixed.
  1933. * dpkg --root option restored (was removed by mistake in 0.93.68).
  1934. * minor cosmetic change to dselect subprocess failure message.
  1935. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
  1936. dpkg (0.93.69) BETA; priority=MEDIUM
  1937. * dpkg --configure and --remove should work properly when
  1938. they have to defer processing (this tends to happen when many
  1939. packages are processed at once). (Bug#1209.)
  1940. * dpkg --configure and --remove work better when `processing'
  1941. several related packages with --no-act.
  1942. * dpkg --auto is now two options, --pending or -a (for configure,
  1943. remove, &c) and --recursive or -R (for install, unpack, &c).
  1944. * dpkg debug options in usage message, and values available (-Dh).
  1945. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
  1946. dpkg (0.93.68) BETA; priority=MEDIUM
  1947. * dpkg won't get an internal error if you try to use the default
  1948. conffiles response (ie, if you just hit return). (Bug#1208.)
  1949. * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
  1950. * dselect allows you to go straight to `update' or `install' if
  1951. you have already set up an access method.
  1952. * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
  1953. * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
  1954. * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
  1955. * dpkg --help message rationalised somewhat.
  1956. * Obsolete `examples' and `dpkg-split' directories removed from
  1957. source tree. The `hello' package is a better example.
  1958. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 7 Aug 1995 02:16:25 +0100
  1959. dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
  1960. * dpkg no longer statically linked and -g.
  1961. * calls to abort() changed to print string, file and line number first.
  1962. * removed unused variable from dpkg source.
  1963. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 4 Aug 1995 01:39:52 +0100
  1964. dpkg (0.93.66) ALPHA; priority=MEDIUM
  1965. * dpkg will correctly remove overwritten files from the lists of
  1966. the package(s) that used to contain them.
  1967. * dpkg --purge is now an action, rather than a modifier for --remove,
  1968. and the -P alias for it is withdrawn.
  1969. * dpkg --unpack/--install filenames in messages are now more sensible
  1970. about when to use .../ (show as many trailing components as possible
  1971. in 40 characters, or the whole path if that the last component is
  1972. longer than that).
  1973. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 3 Aug 1995 02:11:03 +0100
  1974. dpkg (0.93.65) ALPHA; priority=MEDIUM
  1975. * dpkg --remove should, when a package being removed is depended-on
  1976. by another that is also queued for removal, defer the depended-on
  1977. package rather than aborting it. (Bug#1188.)
  1978. * dpkg will not attempt to configure or remove a package more than
  1979. once in the same run. (Bug#1169.)
  1980. * dpkg cosmetic fix to dependency problems message (this bug
  1981. hasn't been triggered to my knowledge).
  1982. * perl-dpkg no longer installed in /usr/bin.
  1983. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 2 Aug 1995 13:02:58 +0100
  1984. dpkg (0.93.64) ALPHA; priority=MEDIUM
  1985. * dpkg marks a package as no longer `to be configured in this run'
  1986. when an error occurs, so that other packages which depend on it
  1987. will fail (rather than causing a loop and an assertion failure,
  1988. packages.c:166: failed assertion `dependtry <= 4').
  1989. * dselect initial selection granularity is single-package.
  1990. * dpkg --no-also-select option renamed to --selected-only (old option
  1991. still accepted, but no longer in --help). Changed -N to -O.
  1992. * dselect `update' option changed to `install' (and other options
  1993. renamed too). NB: old access methods will not work, because
  1994. the `update' script should now be an `install' script.
  1995. * dselect `installation methods' renamed to `access methods'.
  1996. * dpkg --skip-same-version and --refuse-downgrade produce friendlier
  1997. messages when they skip packages.
  1998. * --licence option now properly mentioned in all programs' --version
  1999. messages.
  2000. * bad fix for ELF compile problem involving myopt.h removed (compile
  2001. problem turned out to be a GCC bug.)
  2002. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 1 Aug 1995 03:03:58 +0100
  2003. dpkg (0.93.63) ALPHA; priority=LOW
  2004. * preinst works around shell bug/misfeature involving `trap'.
  2005. * dpkg --skip-same-version doesn't skip packages which have
  2006. an error flag set or which aren't in a standard `installed' state.
  2007. * dpkg --search now does a substring search if the string doesn't
  2008. start with a wildcard character (*, [ or ?) or slash.
  2009. * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
  2010. with compiling with GCC 2.7.0.
  2011. * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
  2012. not shipped in the distribution source and will be rebuilt on the
  2013. target system.
  2014. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 27 Jul 1995 13:38:47 +0100
  2015. dpkg (0.93.62) ALPHA; priority=HIGH
  2016. * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
  2017. rather than associating them with the wrong package. (Bug#1101.)
  2018. * dpkg won't `disappear' packages containing no files or directories,
  2019. nor a package required for depends/recommended. (Bug#1128.)
  2020. * dpkg follows directory symlinks. (Bug#1125.)
  2021. * dselect fixups for ELF/GCC2.7.0 compilation.
  2022. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 21 Jul 1995 21:43:41 +0100
  2023. dpkg (0.93.61) ALPHA; priority=LOW
  2024. * dselect keybindings and status characters and descriptions changed
  2025. (in pursuance of Bug#1037, user interface problems, still open.)
  2026. * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
  2027. for newer C++ draft standard (`for' variable declaration scope change).
  2028. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 18 Jul 1995 01:42:51 +0100
  2029. dpkg (0.93.60) ALPHA; priority=HIGH
  2030. * dpkg doesn't think packages have `disappeared' if you install
  2031. several packages at once. (later reported as Bug#1132.)
  2032. * usage error messages tidied up.
  2033. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 17:56:56 +0100
  2034. dpkg (0.93.59) ALPHA; priority=HIGH
  2035. * dpkg doesn't break maintainer scripts &c if package `foo' exists
  2036. when processing package `foobar'. (Related to Bug#1101.)
  2037. * dpkg implements `disappear' functionality.
  2038. * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
  2039. * dpkg --list now sorted correctly and output somewhat improved.
  2040. * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
  2041. * dpkg prints `Removing foo' message even if foo is not configured.
  2042. * dpkg only prints `serious warning: files list file ... missing'
  2043. once for each package.
  2044. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 02:32:11 +0100
  2045. dpkg (0.93.58) ALPHA; priority=HIGH
  2046. * dpkg should write out status even for packages which it has only
  2047. encountered in the `available' file so far.
  2048. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 20:19:21 +0100
  2049. dpkg (0.93.57) ALPHA; priority=LOW
  2050. * dpkg does chroot when running maintainer scripts (--instdir
  2051. should work right now, though I haven't been able to test it).
  2052. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 01:32:30 +0100
  2053. dpkg (0.93.56) ALPHA; priority=HIGH
  2054. * dpkg can now overwrite symlinks to directories, and will
  2055. do correct handling of symlinks to plain files.
  2056. * dpkg should not replace any directory with a symlink.
  2057. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 13 Jul 1995 02:43:36 +0100
  2058. dpkg (0.93.55) ALPHA; priority=MEDIUM
  2059. * dpkg can now extract hardlinks.
  2060. * dpkg configuration/removal works in the presence of dependency cycles.
  2061. * dpkg should no longer fail an assertion at processarc.c:193.
  2062. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 12 Jul 1995 01:34:44 +0100
  2063. dpkg (0.93.54) ALPHA; priority=MEDIUM
  2064. * dpkg and dselect no longer throw away all Class and Section
  2065. information in /var/lib/dpkg/available. (Oops.)
  2066. * dpkg --refuse-<something> now works (this broke some dselect
  2067. method scripts' attempts to use --refuse-downgrade).
  2068. * dpkg --audit and --list implemented.
  2069. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 10 Jul 1995 00:35:13 +0100
  2070. dpkg (0.93.53) ALPHA; priority=LOW
  2071. * dpkg --install/--unpack only skips on-hold packages with --auto.
  2072. * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
  2073. * dpkg error handling and reporting cleaned up.
  2074. * dpkg now lists any failed packages/files just before exiting.
  2075. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 9 Jul 1995 16:31:36 +0100
  2076. dpkg (0.93.52) ALPHA; priority=MEDIUM
  2077. * dpkg won't segfault due to missing (Package_)Revision fields.
  2078. * dpkg --search works.
  2079. * dpkg will set execute permissions on scripts if necessary.
  2080. * dpkg prints filenames in --unpack and --install.
  2081. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 12:41:39 +0100
  2082. dpkg (0.93.51) ALPHA; priority=HIGH
  2083. * dpkg --status and --listfiles now work.
  2084. * dpkg --remove --auto won't try to remove everything (!)
  2085. * dpkg --unpack doesn't coredump after unpacking the first package.
  2086. * dpkg won't fail an assertion if it bombs out of --configure
  2087. or --remove because of too many errors.
  2088. * Support for `Essential' in dpkg (not yet in dselect).
  2089. * `available' (Packages) file class and section override those
  2090. from package control files.
  2091. * `Essential: yes' added to control file.
  2092. * Locking strategy changed, now uses flock (no more stale locks).
  2093. * preinst now more helpful about conffiles upgrade problem.
  2094. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 01:15:26 +0100
  2095. dpkg (0.93.50) ALPHA
  2096. * C dpkg now in service.
  2097. * dselect now installs in /usr/bin instead of /usr/sbin.
  2098. * Improved `explanation of display' help and changed HSOC to EIOW.
  2099. * dselect goes back to top of info display when you move the
  2100. highlight.
  2101. * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
  2102. * --admindir doesn't append `var/lib/dpkg' to its argument.
  2103. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
  2104. dpkg (0.93.42.3) BETA; priority=LOW
  2105. * Rebuilt using ncurses 1.9.2c-0.
  2106. * Silenced `subcritical error' message if errno == ENOENT.
  2107. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 12 Jun 1995 13:09:24 +0100
  2108. dpkg (0.93.42.2) BETA; priority=HIGH
  2109. * install-info --remove properly removes multi-line entries.
  2110. * Slightly changed ^L redraw code in dselect package list.
  2111. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Jun 1995 14:06:01 +0100
  2112. dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
  2113. * update-rc.d default no longer adds K entries in runlevels 2345.
  2114. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 6 Jun 1995 18:56:23 +0100
  2115. dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
  2116. * Fix unitialised variable reference bug in dselect (#890).
  2117. * Fix problem with wordwrapping package and method descriptions.
  2118. * Create /var/lib/dpkg/methods/mnt.
  2119. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
  2120. dpkg (0.93.41) BETA; priority=LOW
  2121. * Create /var/lib/dpkg/methods.
  2122. * dpkg.pl noisily ignores --skip-same-version rather than barfing.
  2123. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 13:28:27 +0100
  2124. dpkg (0.93.40) BETA; priority=LOW
  2125. * dselect's subprogram failure message made to stand out more.
  2126. * When switching out of curses, always move the cursor to the
  2127. bottom right corner of the screen.
  2128. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 01:03:38 +0100
  2129. dpkg (0.93.39) BETA; priority=LOW
  2130. * dselect can now:
  2131. - allow you to select and configure an installation method;
  2132. - invoke installation method scripts to update the available file
  2133. and unpack packages;
  2134. - invoke dpkg to configure and remove packages.
  2135. There are no installation methods available yet.
  2136. * Search feature in dselect works (it was purely an ncurses bug).
  2137. * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
  2138. * The target directory for dpkg-deb --extract (also available as
  2139. dpkg --extract) is no longer optional. dpkg-deb suggests the use
  2140. of dpkg --install if you omit it.
  2141. * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
  2142. md5sum/md5.c, for portability to Solaris 2.
  2143. * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
  2144. * Revised function attribute support checking in configure script.
  2145. * Removed obsolete `dselect.pl' from scripts directory.
  2146. * New option --licence on all the C programs.
  2147. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 May 1995 18:05:38 +0100
  2148. dpkg (0.93.38) BETA; priority=MEDIUM
  2149. * Version number comparisons (in dpkg and dselect) now >= <=
  2150. as documented (Bug#831; thanks to Christian Linhart).
  2151. * dselect now has a non-superuser readonly mode.
  2152. * dselect doesn't pop up unsatisfied `Optional's when quitting.
  2153. * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
  2154. * Made dpkg convert `revision' to `package_revision' when reading
  2155. (eg) the `status' file. libdpkg.a has `revision' as a synonym
  2156. for `package_revision' and writes the former.
  2157. * Major improvements and many changes to C option parsing, database
  2158. management, error handling, Makefiles &c to support dpkg.
  2159. * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
  2160. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 24 Apr 1995 12:34:39 +0100
  2161. dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
  2162. * Fixed segfault if no description available (Bug#735);
  2163. thanks to Peter Tobias for the bug report.
  2164. * Fixed other assorted minor bugs in description displays.
  2165. * Changed dpkg-deb --info short option from -i to -I, to make
  2166. it unique across dpkg and dpkg-deb (-i still works with
  2167. dpkg-deb for backwards compatibility).
  2168. * Produce more sensible error when main package list is empty.
  2169. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 7 Apr 1995 02:24:55 +0100
  2170. dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
  2171. * All the C code (including dselect) updated to support `provides'
  2172. (virtual packages).
  2173. * Revamped dselect's related package selection/deselection
  2174. algorithms.
  2175. * Everything can now handle arbitrary `class' values (as well
  2176. as the predefined ones which we understand and can interpret).
  2177. * Fixed bug that prevented display update when moving down a small
  2178. recursive package list in dselect.
  2179. * Column heading characters corrected from `SHOC' to `HSOC'.
  2180. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 6 Apr 1995 12:48:13 +0100
  2181. dpkg (0.93.35) BETA; priority=MEDIUM
  2182. * Preserve ownerships and permissions on configuration files.
  2183. * Fix bug in conffile updating that could leave a hardlink
  2184. <foo>.dpkg-new to the conffile <foo>.
  2185. * Improved dselect's package list help messages.
  2186. * Highlight now moves on after (de)selecting just one package.
  2187. * Better algorithm for scrolling up/down when moving highlight.
  2188. * Fixed bug in display of `preformatted' extended Description lines.
  2189. (dselect is still ALPHA, but is fairly stable.)
  2190. * Improved dpkg's message when configuring a package that doesn't
  2191. exist, and when selecting or skipping a package that isn't
  2192. currently selected (during unpack processing).
  2193. * Description in control file expanded.
  2194. * Scroll back to top when changing what is in the `info' area.
  2195. dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
  2196. * dselect: Fixed bug which caused a coredump if you exited the
  2197. package list if you'd made any changes. Ouch !
  2198. * dselect: Improved selection algorithm to show fewer extraneous
  2199. packages; improved display for unavailable packages.
  2200. * dpkg: Improved progress messages during unpacking somewhat.
  2201. dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
  2202. * dselect now has a main menu.
  2203. * Fixed nasty uninitialised data bug in dselect.
  2204. * dselect now locks and unlocks the packages database.
  2205. Mon, 27 Mar 1995 03:30:51 BST Ian Jackson <iwj10@cus.cam.ac.uk>
  2206. * dpkg (0.93.32): Alpha dselect released and installed in
  2207. /usr/sbin/dselect.
  2208. * dpkg (0.93.32): Many portability enhancements: should now
  2209. compile using GCC 2.6.3, and dpkg-deb should
  2210. compile better on non-Linux systems.
  2211. * dpkg (0.93.32): dpkg will not loop if its stdin disappears
  2212. and it needs to prompt.
  2213. * dpkg (0.93.32): Fixed removal dependency error to show
  2214. correct package (Bug #648).
  2215. * dpkg (0.93.32): Tidied up copyright notices.
  2216. * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
  2217. installed in /usr/man.
  2218. * dpkg (0.93.32): Changes to top-level Makefile.in to improve
  2219. error trapping.
  2220. * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
  2221. targets.
  2222. * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
  2223. dselect directories.
  2224. * dpkg (0.93.32): Added vercmp.c with version comparison code.
  2225. * dpkg (0.93.32): varbufextend message changed - varbufs not
  2226. just for input buffers.
  2227. * dpkg (0.93.32): varbuf has C++ member functions in header
  2228. #ifdef __cplusplus.
  2229. Changes in dpkg 0.93.31:
  2230. * start-stop-daemon --pidfile now works (Bug#571).
  2231. * Fixed dependency processing bugs which could require a rerun of
  2232. dpkg --configure (Bug#566).
  2233. * Fixed garbage output for `language' of control file in dpkg-deb --info.
  2234. Changes in dpkg 0.93.30:
  2235. * Added /usr/sbin/start-stop-daemon.
  2236. Changes in dpkg 0.93.09:
  2237. * Made postinst scripts really be run when dpkg --purge used.
  2238. * Added new --force-extractfail option - VERY DANGEROUS.
  2239. Changes in dpkg 0.93.28:
  2240. * Removed undef of 0x_p21 in read_database_file, which caused the
  2241. the whole status database to become trashed when any update files
  2242. were read.
  2243. * Make infinite-loop prevention and cycle detection work.
  2244. * Made findbreakcycle work (ie, break properly when cycle detected).
  2245. * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
  2246. * dpkg.pl now sets the umask to 022.
  2247. * Cosmetic error message fix to dpkg-deb.
  2248. * Deleted OLD directory altogether.
  2249. * Improved error-trapping in top-level Makefile loops.
  2250. Changes in dpkg 0.93.27:
  2251. * Make version number specifications in Depends &c work.
  2252. * Added AC_PROG_CXX to autoconf.in for dselect.
  2253. * Changed myopt.h not to have cipaction field in cmdinfo (this was
  2254. specially for dpkg-deb) - now we have a generic void*.
  2255. * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
  2256. * Much work in `dselect' subdirectory.
  2257. * Deleted executables, objects and libraries from OLD tree !
  2258. * Minor changes to various copyright notices and top-of-file comments.
  2259. * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
  2260. Changes in dpkg 0.93.26:
  2261. * Added --no-also-select instead of not auto-selecting on --unpack
  2262. but doing so on --install; removed --force-unpack-any.
  2263. Changes in dpkg 0.93.25:
  2264. * Fixed duplicate output (failure to flush before fork) bug.
  2265. * More clarification of md5sum.c copyright.
  2266. * Corrected typo in ChangeLog in 0.93.24 source package.
  2267. Changes in dpkg 0.93.24:
  2268. * dpkg could copy conffiles info from one package to another. Aargh.
  2269. Bug #426.
  2270. * dpkg failed to initialise status if you tried to remove or
  2271. configure a nonexistent package. Bug #419.
  2272. * install-info now handles START-INFO-DIR-ENTRY entries like:
  2273. * Gdb:: The GNU debugger.
  2274. Previously it would only accept (Bug #407):
  2275. * Gdb: (gdb). The GNU debugger.
  2276. * When installing a new foo.info[.gz], install-info now replaces
  2277. * Foo: (foo.info). The Gnoo Foo.
  2278. as well as just * Foo: (foo). ...
  2279. * Moved option parsing out of dpkg-deb into libdpkg.
  2280. * Assorted minor source code rearrangements.
  2281. * Fixed assorted copyright notices, clarified md5sum copyright.
  2282. * Corrected typo in 0.93.23 source package's ChangeLog.
  2283. Changes in dpkg 0.93.23:
  2284. * `dpkg-deb' --build now does a syntax check on the control file.
  2285. * `dselect' is now no longer called `debian', spurious copy removed
  2286. from package top-level source directory.
  2287. * C control information parsing complete and somewhat tested.
  2288. * Moved `global' include files into $(srcdir)/include from ../lib,
  2289. added some files to the lib Makefile, and arranged for pop_cleanup().
  2290. Changes in dpkg 0.93.22:
  2291. * Fixed bug which caused dpkg to see failures of md5sum where there
  2292. were none (would also have caused dpkg to miss a real failure).
  2293. * Fixed failure to update some `status' database fields.
  2294. Changes in dpkg 0.93.21:
  2295. * Fixed error-handling bug which could corrupt database.
  2296. Changes in dpkg 0.93.20:
  2297. * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
  2298. * Fixed dpkg usage message which claimed -i => both --install & --info.
  2299. * Use Colin Plumb's MD5 code - faster, and better copyright.
  2300. * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
  2301. Deluth Miller. Also, an xfig picture of some C program innards.
  2302. Changes in dpkg 0.93.19:
  2303. * Don't delete the `list' file from the dpkg database.
  2304. * Fixed various bugs in the conffile handling.
  2305. * Conffiles that are symlinks will now be treated as if the
  2306. `dereferenced' name of the file was listed in conffiles. This means
  2307. that /etc/foo -> /usr/etc/foo will cause all conffile updates of
  2308. /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead. However, the
  2309. link will be removed if --purge is used to delete all the conffiles.
  2310. * When doing a new installation, or when updating a conffile that
  2311. wasn't listed as a conffile in the old version of the package, don't
  2312. do any prompting but just install the version from the archive.
  2313. * Corrected error message if exec of dpkg --vextract failed
  2314. and --instroot or --root specified.
  2315. * Added new --force-unpack-any option.
  2316. * Extra newline after --status output.
  2317. * Added -W options to CFLAGS.
  2318. * Fixed mistake in previous ChangeLog entry.
  2319. Changes in dpkg 0.93.18:
  2320. * Fixed invocation of dpkg-deb --vextract if --root or --instdir
  2321. not specified.
  2322. * Create /var/lib/dpkg/updates.
  2323. Changes in dpkg 0.93.17:
  2324. * install-info --remove exits with status 0 if it doesn't find the
  2325. thing to remove, instead of status 1.
  2326. * Error handling functions have __attribute__((format...)) if GCC.
  2327. * push_cleanup its arg takes void **argv instead of char **argv.
  2328. * Top-level Makefile.in has set -e before `for' loops.
  2329. * dpkg-deb --info not-an-existing-file produces fewer error messages.
  2330. Changes in dpkg 0.93.16:
  2331. * Made --root= option really extract to $instroot instead of `/'.
  2332. * install-info clears the 0444 bits in its umask.
  2333. * Fixed a few database handling bugs which cause dpkg always to fail,
  2334. and usually to corrupt the status database in various ways.
  2335. * dpkg-deb completely rewritten, now doesn't tinker with
  2336. /var/{adm,lib}/dpkg. Should be faster.
  2337. * Directory structure and Makefiles in source package reorganised.
  2338. Changes in dpkg 0.93.15:
  2339. * Added `debian' (dselect), still very primitive.
  2340. * Database format changed, and moved from /var/adm to /var/lib.
  2341. * Added dpkg --avail mode, --list, --status and --search.
  2342. * Set of dpkg => dpkg-deb pass-through operations changed (but
  2343. dpkg-deb not yet updated).
  2344. * Added --root, --admindir and --instdir, as well as --isok &c.
  2345. * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
  2346. database handling.
  2347. * Put packages in `purge' state even if `deinstall' requested if
  2348. they have no postrm and no conffiles.
  2349. * Version number comparisons fixed.
  2350. * insert-version.pl now installes lib.pl filename too.
  2351. * Strip trailing slashes when reading files from file lists.
  2352. Changes in dpkg 0.93.14:
  2353. * Fixed parsing of DEPENDS &c fields with trailing whitespace.
  2354. * postinst now fixes up broken ispell.control file.
  2355. * Cyclic dependency/multiple package removal processing: don't consider
  2356. packages we've just removed when looking for a reason not to go ahead.
  2357. * Added call to postinst with `purge' argument for expunging old
  2358. configuration etc. that aren't listed in conffiles.
  2359. Changes in dpkg 0.93.13:
  2360. * sub S_ISREG defined in dpkg.pl.
  2361. * Checking of DEPENDS &c fields was too lax, causing an internal error
  2362. if you fed it certain kinds of broken control file.
  2363. * Fixed misleading message from bogus installationstatus call.
  2364. * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
  2365. directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
  2366. Changes in dpkg 0.93.12:
  2367. * No longer needs *.ph files, since these appear to be broken.
  2368. * Postinst fixes up *.control files with curly brackets.
  2369. * embryo of dselect.
  2370. Changes in dpkg 0.93.11:
  2371. * New --ignore-depends option.
  2372. * This ChangeLog changed format here.
  2373. Wed Nov 30 15:38:21 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
  2374. * dpkg 0.93.11 released.
  2375. * conffile updating fixed.
  2376. * Message `updgrade' in dpkg changed to `replace'.
  2377. * install-info now copes with multi-line entries.
  2378. * version numbers now done automatically in dpkg and install-info.
  2379. * more debugging around conffiles updates.
  2380. * *.hash files not deleted so soon.
  2381. * adds brand new packages to status array so we can install them.
  2382. * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
  2383. Mon Nov 28 02:00:13 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
  2384. * dpkg 0.93.10 released.
  2385. * dpkg.pl completely rewritten.
  2386. * dpkg-deb: removed dabase-processing and --install option.
  2387. * Makefiles reworked, debian.rules added.
  2388. * Don't install anything in /usr/doc/examples.
  2389. * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
  2390. Thu Oct 20 13:22:20 1994 Ian Murdock (imurdock@debra.debian.org)
  2391. * dpkg 0.93.9 released.
  2392. * dpkg.pl: Use $argument, not $package, with `--build'.
  2393. Make sure that saved postinst scripts are executable.
  2394. Tue Oct 18 09:40:57 1994 Ian Murdock (imurdock@debra.debian.org)
  2395. * dpkg 0.93.8 released.
  2396. * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
  2397. when `errno' is ENOTEMPTY (Directory not empty), because in this
  2398. case we have found the highest-level directory in the package and
  2399. are ready to exit the loop (i.e., it is a normal occurrence).
  2400. Mon Oct 17 10:44:32 1994 Ian Murdock (imurdock@debra.debian.org)
  2401. * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
  2402. * deb/remove.c (pkg_remove): Make sure that parent directories are
  2403. removed LAST! This will result in complete removal of packages
  2404. when --remove is called. dpkg 0.93.7 (and earlier) had problems
  2405. with this because it tried to remove directories in order, which
  2406. will work most of the time, but not necessarily all of the time.
  2407. * deb/list.c (pkg_list): Output is sorted by package name.
  2408. Tue Oct 4 12:27:10 1994 Ian Murdock (imurdock@debra.debian.org)
  2409. * deb/contents.c (pkg_contents): When a list file cannot be
  2410. opened, silently fail and let the front-end explain the problem.
  2411. * deb/util.c (return_info): When a control file cannot be opened,
  2412. silently fail and let the front-end explain the problem.
  2413. * deb/search.c (pkg_search): Exit 0 if the regular expression is
  2414. matched and 1 if it is not.
  2415. Mon Oct 3 18:38:53 1994 Ian Murdock (imurdock@debra.debian.org)
  2416. * dpkg.pl: New file. Replaces dpkg.sh.
  2417. * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
  2418. * deb/build.c (pkg_build): `--build' is less verbose, instead
  2419. letting the front-end add verbosity where appropriate.
  2420. * deb/install.c (pkg_install): Ditto.
  2421. * deb/remove.c (pkg_remove): Ditto.
  2422. * deb/search.c (pkg_search): Ditto.
  2423. * deb/describe.c (pkg_describe): `--describe' is less verbose,
  2424. instead letting the front-end add verbosity where appropriate.
  2425. The ``Description:'' label has been removed.
  2426. * deb/version.c (pkg_version): `--version' is less verbose,
  2427. instead letting the front-end add verbosity where appropriate.
  2428. The ``Version:'' label has been removed, as has the maintainer
  2429. information.
  2430. Mon Sep 12 14:22:04 1994 Ian Murdock (imurdock@debra.debian.org)
  2431. * deb/version.c (pkg_version): `--version' now reports the
  2432. version number of dpkg if no argument is specified.
  2433. Thu Sep 1 13:31:37 1994 Ian Murdock (imurdock@debra.debian.org)
  2434. * dpkg 0.93.7 released.
  2435. * deb/build.c (pkg_build): check status and exit if non-zero.
  2436. * deb/contents.c (pkg_contents): ditto.
  2437. * deb/install.c (archive_extract): ditto.
  2438. Thu Sep 1 13:20:08 1994 Ian Murdock (imurdock@debra.debian.org)
  2439. * deb/version.c (pkg_version): indent to the same point as
  2440. pkg_describe.
  2441. Thu Sep 1 12:21:11 1994 Ian Murdock (imurdock@debra.debian.org)
  2442. * Makefile.in (dist): added debian.rules binary, source and
  2443. dist targets to make final distribution easier to make.
  2444. (install): install programs to /usr/bin.
  2445. * deb/Makefile.in (install): install programs to /usr/bin.
  2446. * deb/list.c (pkg_list): enforce a maximum limit of ten characters
  2447. for the package name in the output.
  2448. (pkg_list): left-justify the version number to make it easier for
  2449. the front-end to parse the output.
  2450. (pkg_list): replace first '\n' character in packages[n].description
  2451. with '\0'.
  2452. * deb/install.c (archive_extract): use the `p' option to `tar' to
  2453. ensure that permissions are preserved.
  2454. Sat Aug 27 09:53:37 1994 Ian Murdock (imurdock@debra.debian.org)
  2455. * dpkg 0.93.6 released.
  2456. * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
  2457. true!
  2458. Fri Aug 26 15:38:22 1994 Ian Murdock (imurdock@debra.debian.org)
  2459. * dpkg 0.93.5 released.
  2460. * deb/contents.c (pkg_contents): merged function archive_contents
  2461. into function pkg_contents.
  2462. * deb/contents.c (pkg_contents): use lstat (rather than stat) so
  2463. that symbolic links are recognized.
  2464. (pkg_contents): print the usual `<path> -> <link_to>' now that we
  2465. recognize symbolic links.
  2466. * deb/util.c (return_info): create a FIFO to pipe the needed
  2467. information to the ``formatter'' rather than creating a directory
  2468. in /tmp for the package information, which is what we used to do.
  2469. Thu Aug 25 11:46:27 1994 Ian Murdock (imurdock@debra.debian.org)
  2470. * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
  2471. area.
  2472. (mk_mode_string): ditto.
  2473. * dpkg.sh: make sure the control information is extracted to a
  2474. uniquely-named temporary directory during package installation.
  2475. * dpkg.sh: execute the pre- and post-removal scripts during
  2476. package removal.
  2477. * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
  2478. * deb/install.c (pkg_control): make sure that `package' exists and
  2479. is a Debian archive before doing anything.
  2480. * deb/install.c (pkg_extract): make sure that `package' exists and
  2481. is a Debian archive before doing anything.
  2482. * deb/install.c (pkg_install): unlink `extract_output' when done.
  2483. * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
  2484. --remove does not get confused and think that a symbolic link to a
  2485. directory is actually a directory, which results in the symbolic
  2486. link never being removed at all.
  2487. ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.