changelog 159 KB

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