changelog 212 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001
  1. dpkg (1.13.20~) UNRELEASED; urgency=low
  2. [ Frank Lichtenheld ]
  3. * Add gettext support for the Perl scripts. Based on a patch by
  4. Nicolas François. Closes: #165843
  5. * Only print usage information of dpkg-scanpackages on stdout
  6. if requested explicetly. Use stderr in case of error.
  7. Closes: #366659
  8. * Add remarks to dpkg-scansources and dpkg-scanpackages
  9. man pages about the need to compress the generated files
  10. to be able to access them via apt. Closes: #65839
  11. * Allow '+' and '.' in distribution names in Debian changelogs.
  12. Based on a patch by John Wright.
  13. Closes: #361171
  14. * Use the Debian keyring in dpkg-source when checking signatures
  15. of .dsc files, if available. Closes: #364726
  16. * Let dpkg-buildpackage pass through all remotely sensible
  17. -sX options to dpkg-source (-s[nsAkurKUR] currently).
  18. Closes: #36586
  19. * Improve the description of --showformat in dpkg-deb
  20. man page and add a pointer to the complete description
  21. of the option in dpkg-query.
  22. * Don't spew out garbage from dpkg-deb, if the second argument
  23. to -I is a absolute filename. Based on a patch by Ian Eure.
  24. Closes: #35573
  25. * Fix --ignore-depends argument value parsing. Closes: #169125
  26. * Completely remove md5sum diversion madness. Instead, we Pre-Depend
  27. on a version of textutils which provides /usr/bin/md5sum. We rely on
  28. the logic in coreutils to remove our diversions. Patch by
  29. Ian Jackson. Closes: #315784, #313605
  30. * Try harder to detect dependency cycles that contain Provides
  31. links. Closes: #349120, #349442
  32. * Update archtable to reflect current archive: Add amd64 and remove
  33. sh. Closes: #367329
  34. * Don't claim in dpkg man page that we set DPKG_OLD_CONFFILE and
  35. DPKG_NEW_CONFFILE on sub shells since we actually don't.
  36. * Fix printing of user defined fields with --showformat and
  37. document the existance of this feature in dpkg-query man page.
  38. * Make --forget-old-unavail more reliable by deleting architecture
  39. information of removed packages. Patch by Piotr Engelking.
  40. Closes: #208532
  41. * When building packages with dpkg-deb give a more useful error
  42. message in case a conffile entry has leading whitespace. Patch
  43. by David Lopez Moreno. Closes: #281562
  44. * Don't drop directories that contain our conffiles too early from
  45. our file listing. Otherwise we might leave them behind on purge
  46. if we share them with other packages.
  47. Closes: #174180, #198128, #198522, #318825, #366178
  48. [ Nicolas François ]
  49. * fix typos in the Russian man pages. Thanks to Stepan Golosunov.
  50. Closes: #366587
  51. * Honour tabbing requested via --showformat even if the field to
  52. be printed is empty. Closes: #361671
  53. * flush the terminal's input before prompting what to do with a
  54. configuration file. Closes: #316551
  55. * Fix the --force-depends-version option. Closes: #57104
  56. [ Guillem Jover ]
  57. * Standarize scripts usage output format and at the same time make
  58. the strings easier for the translators. Add '--help' and '--version'
  59. for most of the scripts. Print the usage and version to stdout.
  60. * Do not strip the epoch from the source:Upstream-Version substvar.
  61. Closes: #366351
  62. * Properly check and report lock file existence in install-info.
  63. Based on patch by Ben Pfaff. Closes: #368874
  64. * Correct default info directory for '--infodir' in intall-info man
  65. page (Ben Pfaff). Closes: #368875
  66. * Print the bogus version and prefix the error message with 'dpkg: '
  67. when using '--compare-versions'. Closes: #369177
  68. [ Updated dpkg Translations ]
  69. * Portuguese (Miguel Figueiredo).
  70. * Polish (Robert Luberda).
  71. * Hungarian (SZERVÁC Attila).
  72. * Romanian (Eddy Petrişor).
  73. * Russian (Yuri Kozlov). Closes: #366353
  74. * Czech (Miroslav Kure).
  75. * Simplified Chinese (Kov Tchai). Closes: #366985
  76. * Swedish (Peter Karlsson).
  77. * Galician (Jacobo Tarrio).
  78. * Slovak (Peter Mann).
  79. * Dutch (Bart Cornelis).
  80. [ Updated dselect Translations ]
  81. * Polish (Robert Luberda).
  82. * Basque (Piarres Beobide). Closes: #366187
  83. * Czech (Miroslav Kure).
  84. * Romanian (Eddy Petrişor).
  85. [ Updated man pages translations ]
  86. * Polish (Robert Luberda).
  87. *
  88. -- Bart Cornelis (cobaco) <cobaco@linux.be> Tue, 30 May 2006 14:32:00 +0200
  89. dpkg (1.13.19) unstable; urgency=low
  90. [ Frank Lichtenheld ]
  91. * Add -follow (back) to find call in dpkg-scanpackages.
  92. Closes: #358011
  93. * Fix error in archive.c that lead to a infinite loop when
  94. installing files with long, non-ASCII filenames in
  95. certain locales. Closes: #346436
  96. [ Updated dpkg Translations ]
  97. * French (Christian Perrier).
  98. * Galician (Jacobo Tarrio).
  99. * Romanian (Eddy Petrişor).
  100. * Dutch (Bart Cornelis).
  101. * Swedish (Peter Karlsson).
  102. * Danish (Claus Hindsgaul). Closes: #362317
  103. * Czech (Miroslav kure).
  104. * Vietnamese (Clytie Siddall). Closes: #363264
  105. * Spanish (Javier Fernández-Sanguino Peña). Closes: #357911
  106. * Basque (Piarres Beobide). Closes: #363683, #363679
  107. * Japanese (Kenshi Muto). Closes: #365334
  108. [ Updated dselect Translations ]
  109. * Romanian (Eddy Petrişor).
  110. * Galician (Jacobo Tarrio).
  111. * French (Christian Perrier).
  112. * Dutch (Bart Cornelis).
  113. [ Nicolas Francois ]
  114. * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
  115. * Document the shlibs.local format in dpkg-source(1). CLoses: #316485
  116. * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
  117. [ Guillem Jover ]
  118. * Fix strings so that they can be more easily translated. Closes: #134358
  119. * Add new substvars source:Version, source:Upstream-Version and
  120. binary:Version so packages will be able to avoid breaking on binNMUs.
  121. Based on a patch by Ken Bloom and Jeroen van Wolffelaar. Closes: #358530
  122. * Support binNMU safe packages even when source and binary differ in
  123. version.
  124. * Rename dpkg:UpstreamVersion to dpkg:Upstream-Version. Make dpkg:Version
  125. and dpkg:Upstream-Version get the current dpkg versions instead of the
  126. ones from the package being built.
  127. * Split usage strings to make it easier for translators when those change.
  128. Closes: #323957
  129. * Standarize start-stop-daemon usage output format.
  130. * Make install-info '--dir-file' option compatible with GNU install-info
  131. by renaming the infodir variable to dirfile and not appending the
  132. '/dir' string except when initializing from '--info-dir' or
  133. '--infodir' (Wayne Davison). Closes: #61640, #67237, #286275
  134. * Make install-info add a new line after adding the last entry at the
  135. end of the dir file, which makes the info readers able to see those
  136. last enties (Nicolas François). Closes: #164495
  137. * Use the numerical value of errno instead of a string in install-info
  138. when checking if the locking error was due to an already existing
  139. file, which is locale dependent, and die accordingly. Based on a patch
  140. by Nicolas François. Closes: #199204, #210781
  141. * Escape hyphens in man pages.
  142. * Bump Standards-Version to 3.7.1.
  143. * Wrapped debian/control fields except Uploaders given current policy.
  144. -- Guillem Jover <guillem@debian.org> Thu, 4 May 2006 14:05:21 +0300
  145. dpkg (1.13.18) unstable; urgency=low
  146. [ Updated dpkg Translations ]
  147. * Romanian (Sorin Batariuc). Closes: #356664
  148. * Danish (Claus Hindsgaul). Closes: #356188
  149. * Polish (Robert Luberda).
  150. * Dutch (Bart Cornelis).
  151. [ Updated dselect Translations ]
  152. * Spanish (Javier Fernández-Sanguino Peña). Closes: #357912
  153. * Danish (Claus Hindsgaul). Closes: #356188
  154. * Polish (Robert Luberda).
  155. * Russian (Yuri Kowlov). Closes: #361415
  156. [ Updated man pages translations ]
  157. * Typos corrected in French dpkg-source man page
  158. Thanks to Nicolas Bonifas who spotted them
  159. * Russian completed. Thanks to Yuri Kozlov.
  160. Closes: #361415
  161. [ Christian Perrier ]
  162. * Correct typos in man pages. Thanks to A. Costa for spotting them
  163. Closes: #358091, #358092, #358093, #358094, #358095
  164. [ Guillem Jover ]
  165. * Add a '[!]' in --force-all help denoting that it is a dangerous option.
  166. Closes: #359935
  167. * Prefix any chroot path to the exec file name when stating it in
  168. start-stop-daemon. Closes: #318771, #333066
  169. * Add '-r' to the help output of start-stop-daemon (Jared Spiegel).
  170. Closes: #354869
  171. * Use mustsetvar when setting the value of the sversion variable in
  172. dpkg-buildpackage (Andrew Suffield). Closes: #158953
  173. * Pass '--admindir' option over to dpkg-query when passing '--admindir' or
  174. '--root' to dpkg (initial patch by Branden Robinson).
  175. Closes: #153305, #271041, #282853, #307715, #355915
  176. * Support system library directories in dpkg-shlibdeps symlinked from
  177. '/lib/ldconfig'. Closes: #356452
  178. * Document that 'dpkg --get-selections' and 'dpkg-query -l' without a
  179. pattern will not list packages in state purge. Closes: #355633
  180. * Obsolete force/refuse 'auto-select' dpkg option.
  181. * Add new '--clear-selections' option to dpkg (Andrew Suffield).
  182. Closes: #112388
  183. * Use '--clear-selections' in the dpkg man page example on how to transfer
  184. the status to another installation. Closes: #137442
  185. -- Guillem Jover <guillem@debian.org> Mon, 10 Apr 2006 06:40:22 +0300
  186. dpkg (1.13.17) unstable; urgency=low
  187. [ Frank Lichtenheld ]
  188. * Fix handling of -DArchitecure=foo in dpkg-gencontrol. Closes: #251911
  189. * Handle architectures in all dependency fields in debian/control,
  190. even those of binary packages. Closes: #252657, #324741, #347819
  191. * More dpkg-scanpackages fixes (--arch option handling). Closes: #353506
  192. [ Guillem Jover ]
  193. * Add missing parentheses surrounding a man page section reference
  194. in the dpkg-source man page (Matt Kraai). Closes: #353731
  195. * Fix misspelling of "occurred" as "occoured" in dpkg-gencontrol and
  196. dpkg-source (Matt Kraai). Closes: #353949
  197. * Major cleanup of manpages, by using properly the bold and italic
  198. attributes and other embellishments.
  199. * Add dpkg-query(1) in the SEE ALSO section in dpkg(1). Closes: #354643
  200. * Don't try to compile in SELinux support on GNU/kFreeBSD amd64.
  201. * Add new quiet option to dpkg-source to supress warnings. Closes: #355065
  202. * Do not expand architecture aliases anymore in .dsc files.
  203. * Change start-stop-daemon's --exec behaviour again on GNU/Linux to compare
  204. the referred file pointed by the '/proc/<pid>/exe' symlink, stripping
  205. any ' (deleted)' string and stating the result. Closes: #354867
  206. [ Updated man pages translations ]
  207. * Polish (Robert Luberda). Closes: #353782
  208. * French (Philippe Batailler).
  209. [ Updated dselect Translations ]
  210. * Hungarian (Szervác Attila).
  211. * Dutch (Bart Cornelis).
  212. * Czech (Miroslav Kure).
  213. [ Updated dpkg Translations ]
  214. * Italian (Lele Gaifax)
  215. * Simplified Chinese (Carlos Z.F. Liu).
  216. * Portuguese (Miguel Figueiredo).
  217. * Dutch (Bart Cornelis).
  218. * Hungarian (Szervác Attila).
  219. * Czech (Miroslav Kure).
  220. * Russian (Yuri Kozlov). Closes: #357724
  221. -- Guillem Jover <guillem@debian.org> Mon, 20 Mar 2006 03:33:03 +0200
  222. dpkg (1.13.16) unstable; urgency=low
  223. * The "not really a brown paper bag needed but it's close" release
  224. [ Guillem Jover ]
  225. * Move auxiliary autotools scripts to config/.
  226. * Require gettext 0.14.5.
  227. * Move the methods directory to dselect/methods, so the contents will not
  228. be installed if dselect is not to be built.
  229. * Move dselect gettext strings to its own domain provided now by the
  230. dselect package.
  231. [ Frank Lichtenheld ]
  232. * Fix override handling in dpkg-scanpackages which was broken in
  233. 1.13.14 and .15. Closes: #353305
  234. * Make -isp the default behaviour of dpkg-gencontrol as it is
  235. always used anyway these days. Suggested by Matthew Vernon.
  236. Closes: #215233
  237. * Typo fixes in man pages by A. Costa:
  238. - dpkg-deb.1 Closes: #353424
  239. - dpkg-statoverride.8 Closes: #353425
  240. - install-info.8 Closes: #353426
  241. - start-stop-daemon.8 Closes: #353427
  242. - update-alternatives.8 Closes: #353428
  243. - dpkg.1, dpkg.cfg.5 Closes: #353429
  244. -- Frank Lichtenheld <djpig@debian.org> Sat, 18 Feb 2006 17:59:00 +0100
  245. dpkg (1.13.15) unstable; urgency=low
  246. [ Guillem Jover ]
  247. * Add a missing closing parenthesis in a dpkg string (Jordi Mallach).
  248. [ Christian Perrier ]
  249. * Updated Translations:
  250. - Brazilian Portuguese (Andre Luis Lopes). Closes: #352432
  251. - Galician (Jacobo Tarrio). Closes: #352443
  252. [ Updated Translations ]
  253. * Catalan (Jordi Mallach).
  254. * Portuguese (Miguel Figueiredo).
  255. * Swedish (Daniel Nylander).
  256. [ New Translations ]
  257. * Hungarian (Szervác Attila).
  258. [ New Manpage Translations ]
  259. * Hungarian (Szervác Attila): dpkg.cfg.5 and dselect.cfg.5.
  260. -- Frank Lichtenheld <djpig@debian.org> Wed, 15 Feb 2006 23:37:40 +0100
  261. dpkg (1.13.14) experimental; urgency=low
  262. [ Guillem Jover ]
  263. * Make start-stop-daemon print the proper version instead of 'VERSION'.
  264. * Set the HOME environment variable when using the --chuid switch in
  265. start-stop-daemon. Closes: #295169, #267784
  266. * Cleanup and unify program usage and version output, make it more i18n
  267. friendly. Fix wrong gettext usage with interparsed macros.
  268. Thanks to Changwoo Ryu for noticing. Closes: #237915
  269. * Mark some strings as translatable (Changwoo Ryu). Closes: #256387
  270. * Remove a trailing 'C' character from update-alternatives manpage.
  271. * Use pkg-config to get the proper flags to link against libselinux.
  272. Add a Build-Dependency on pkg-config, thighten libselinux1-dev to
  273. at least version 1.28-4 which provides a .pc file, and remove
  274. libsepol1-dev as libselinux1-dev is Depending on it.
  275. * Add command descriptions in the synopis, and add a usage example for
  276. -f in the dpkg-query manpage. Thanks for the initial patch to
  277. Philippe Batailler. Closes: #352091
  278. * Document about the default log file, the behaviour in case of multple
  279. --log options and add a reference to dpkg.cfg manpage in the dpkg manpage.
  280. Thanks to James R. Van Zandt. Closes: #350440
  281. * Escape ` and ' in manpages otherwise they are converted to quotation
  282. marks, which makes cut and paste not work. Thanks to Denis Barbier.
  283. Closes: #349925
  284. [ Frank Lichtenheld ]
  285. * Let dpkg-source ignore comments in the hunk header as used by
  286. diff -p (Anand Kumria). Closes: #344880
  287. * Let dpkg-buildpackage create a .changes file even if signing the
  288. .dsc file failed. This makes it easier to just sign the package
  289. later (Julian Gilbey). Closes: #217963
  290. * Change heuristics of dpkg-buildpackage's gpg check to allow for
  291. more complex setups (Julian Gilbey). Closes: #163061
  292. * Add files and dirs used by bzr to default dpkg-source -i regex
  293. (maximilian attems). Closes: #345164
  294. * Add .git directory to default dpkg-source -i regex.
  295. Suggested by Hans Ulrich Niedermann. Closes: #351885
  296. * dpkg-scanpackages can now output Packages files with multiple
  297. versions of a single package (Don Armstrong). Closes: #229589.
  298. * dpkg-scanpackages outputs help when given the --help or -h option
  299. (Don Armstrong). Closes: #319541
  300. * Document dpkg-scanpackage -m in man page.
  301. * Let warn dpkg-source if more than one -sX option was given and
  302. document the behaviour in this case in the man page.
  303. Closes: #246637
  304. * Make dpkg-source -b more robust regarding to existing symlinks
  305. by creating new files in a secure manner. Closes: #178839, #338591
  306. * Fix some semantic errors in dpkg-shlibdeps due to typos in used
  307. variables.
  308. * On package configuration, differentiate between modified and
  309. deleted configuration files (Ian Jackson). Closes: #351361
  310. * Improve processing of disappearing conffiles (Ian Jackson).
  311. This is part of the fix for #108587.
  312. * Let dpkg-source -x touch all patched files to have the same
  313. timestamp to mitigate time-skew problems (Denis Barbier).
  314. Closes: #105750
  315. * Strip any newlines from Uploaders field on dpkg-source -b.
  316. Closes: #254449
  317. [ Christian Perrier ]
  318. * Switch to po4a for manpages translation. Closes: #320122
  319. This adds a Build-Depends on po4a.
  320. * Add Vietnamese to po/LINGUAS as it was previously missing.
  321. * Updated Translations:
  322. - Catalan (Jordi Mallach). Closes: #351587
  323. - French (Christian Perrier): 1011t.
  324. - Galician (Jacobo Tarrio): 1002t. Closes: #351795
  325. - Basque (Piarres Beobide): 1002t. Closes: #351845
  326. - Slovak (Peter Mann): 1002t. Closes: #352087, #352311
  327. - Vietnamese (Clytie Siddal): 1011t. Closes: #352307
  328. -- Frank Lichtenheld <djpig@debian.org> Sun, 12 Feb 2006 02:32:12 +0100
  329. dpkg (1.13.13) unstable; urgency=low
  330. [ Frank Lichtenheld ]
  331. * dpkg and dselect are now in section admin, not section base.
  332. Correct info in the control file.
  333. * Bump Standards-Version to 3.6.2 (no changes).
  334. * Fix typo in dpkg-architecture man page. Closes: #334330
  335. * Honor LD_LIBRARY_PATH in dpkg-shlibdeps. Fixes a regression
  336. from 1.13.11 to .12.
  337. * Don't recurse into package directories to search for local
  338. shlibs files since it is obviously a waste of time. Based
  339. on a suggestion by Steve Langasek. Closes: #338725
  340. [ Christian Perrier ]
  341. * Updated Translations:
  342. - Dutch (Bart Cornelis). Fix error mentioned in #323908 by
  343. Stephan Kramer.
  344. - Japanese (Kenshi Muto). Closes: #349808
  345. [ Guillem Jover ]
  346. * Fix typo in dpkg-statoverride manpage. Closes: #348113
  347. Thanks to Marc Haber <mh+debian-packages@zugschlus.de>.
  348. * Document the --no-debsig option in dpkg manpage. Closes: #316367
  349. Thanks to Bastian Kleineidam <calvin@debian.org>.
  350. * Fix typos in dselect manpage. Closes: #310358
  351. Thanks to A Costa <agcosta@gis.net>.
  352. * Fix typo in start-stop-daemon's help output. Closes: #333673
  353. Thanks to Christoph Maser <cm@financial.com>.
  354. * Document the correct format string for dpkg-query --showformat option.
  355. Update -l example and lower case the program name in the title header.
  356. Thanks to Zefram <zefram@fysh.org>. Closes: #174976
  357. * Make dpkg-architecture not print the warning about a missmatch between
  358. gcc target machine type and GNU target system type if the actions are
  359. '-e' or '-i'.
  360. -- Frank Lichtenheld <djpig@debian.org> Sat, 28 Jan 2006 13:04:16 +0100
  361. dpkg (1.13.12) experimental; urgency=low
  362. * Due to the changes in dpkg-shlibdeps it is not recommended
  363. to use this version for building packages intended to be
  364. uploaded into an official archive, yet.
  365. [ Frank Lichtenheld ]
  366. * Update AUTHORS and debian/copyright for new maintainer team.
  367. * Don't use the ldd output in dpkg-shlibdeps. Search for the
  368. matching libraries ourself. This fixes problems with both
  369. symlinked directories, Closes: #103024, #145714, #164020, #285857
  370. and biarch builds. Closes: #317082
  371. * Let dpkg-gencontrol bail out with an error if parsedep
  372. found an error while parsing a dependency field. Closes: #228125
  373. * dpkg-source -x now tries to chown all files extracted from
  374. tar files. The temporary directory is now created with mode
  375. 0700, too. Together this should make it safer to run
  376. dpkg-source -x as root. Based on suggestions by Marcus
  377. Brinkmann and Colin Watson. Closes: #144571, #238460
  378. * Let dpkg-source -b check the build relation fields before
  379. putting them into the .dsc. As a side effect they also
  380. get normalized. Closes: #254449
  381. * Check the gpg signatures of .dsc files before unpacking. See
  382. the upstream changelog for a full description of the semantics.
  383. Based on a patch by Matt Zimmerman. Closes: #48711
  384. * Let dpkg-source ensure (as good as possible) that all
  385. build source packages can also be unpacked.
  386. Closes: #6820, #7014
  387. Also fixed handling of md5sum -b output in dpkg-source on
  388. the way. Based on a patch by Ingo Saitz. Closes: #316123
  389. * Check for illegal architecture strings in dpkg-gencontrol and
  390. dpkg-source. dpkg-gencontrol will only issue a warning while
  391. dpkg-source will error out. Closes: #96920
  392. * Add support "package types" to dpkg-shlibdeps. Patch by Joey Hess.
  393. Closes: #335056, #345475
  394. * Fix man page references to dpkg and dselect man pages. Many
  395. of them still had a wrong section.
  396. Closes: #332826
  397. * Let dpkg-source -b warn about special permissions of files added
  398. in the diff since these will get lost. Closes: #306125
  399. * dpkg-source -x didn't work in case the upstream version or
  400. the Debian version ended with ~. Fixed.
  401. [ Christian Perrier ]
  402. * Updated Translations:
  403. - French (Christian Perrier).
  404. - Polish (Bartosz Fenski). Closes: #314237
  405. - Norwegian Bokmal (Hans F. Nordhaug). Closes: #315548, #315990
  406. - Czech (Miroslav Kure). Closes: #323775, #345347
  407. - Russian (Yuri Kozlov). Closes: #323821, #335170
  408. - Japanese (Kenshi Muto). Closes: #323938
  409. - Brazilian Portuguese (Andre Luis Lopes). Closes: #325224, #332872
  410. - Russian (Yuri Kozlov). Closes: #335170, #349151
  411. - Swedish (Peter karlsson). Closes: #325990, #344058, #337164, #334063
  412. - Norwegian Nynorsk (Håvard Korsvoll). Closes: #315987
  413. - Portuguese (Miguel Figueiredo).
  414. Closes: #315461, #323674, #323642, #330021
  415. - Spanish (Javier Fernández-Sanguino Peña). Closes: #323662, #315253
  416. - Danish (Claus Hindsgaul). Closes: #348575, #323779, #337948, #325687
  417. - Dutch (Bart Cornelis). Closes: #323908
  418. - German (Michael Piefel). Closes: #323964
  419. - Italian (Stefano Canepa). Closes: #324114, #344671, #347225
  420. - Catalan (Jordi Mallach). Closes: #324456
  421. - Basque (Piarres Beobide). Closes: #342089, #332698
  422. - Tagalog (Eric Pareja). Closes: #337307
  423. - Simplified Chinese (Tchaikov). Closes: #338268
  424. - Galician (Jacobo Tarrío). Closes: #338904
  425. - Romanian (Eddy Petrişor). Closes: #340674
  426. - Vietnamese (Phan Vinh Thinh, Clytie Siddall).
  427. - Indonesian (Parlin Imanuel). Closes: #344513
  428. - Greek (Galaxico). Closes: #344646
  429. - Czech (Miroslav Kure). Closes: #345347
  430. * Fixed broken translation:
  431. - Brazilian Portuguese (James Troup). Closes: #332872
  432. * Fix Russian man page for start-stop-deamon(8)
  433. Closes: #325804
  434. * Fix German man page for update-alternatives(8)
  435. Closes: #329908
  436. * Fix typo in dpkg online help message. Unfuzzy translations
  437. Closes: #349299
  438. [ Guillem Jover ]
  439. * Add armeb to cputable. Closes: #331232
  440. Thanks to Lennert Buytenhek <buytenh+debian@wantstofly.org>.
  441. * Don't try to compile in SELinux support on GNU/kFreeBSD. Closes: #313300
  442. Thanks to Aurelien Jarno <aurel32@debian.org>.
  443. * When linking statically, explicitly add libsepol, even if its only a
  444. transitive library. The proper fix should come with a pkg-config file.
  445. Based on a patch by Bart Martens <bart.martens@advalvas.be>.
  446. Closes: #347744, #348659
  447. * Add support for architecture wildcards, but for now they will only be
  448. exposed in debian/control files, not in binary nor source packages.
  449. Closes: #291939
  450. * Change start-stop-daemon's --exec option behaviour on GNU/Linux to
  451. compare the filename pointed by '/proc/<pid>/exe' instead of the inode
  452. and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
  453. Closes: #337942
  454. -- Frank Lichtenheld <djpig@debian.org> Tue, 24 Jan 2006 11:15:36 +0100
  455. dpkg (1.13.11.1) unstable; urgency=low
  456. * Change maintainers to new team.
  457. -- Scott James Remnant <scott@netsplit.com> Thu, 12 Jan 2006 07:56:49 +0000
  458. dpkg (1.13.11) unstable; urgency=low
  459. The "Good, clean fun" Release.
  460. * Fixed the always broken error handling so that only the intended
  461. cleanup handlers are run, rather than ones that we didn't expect.
  462. This corrects the bug when a package's postrm fails and the package is
  463. left in an installed state with no files; the package will now be left
  464. in a half-installed state, as originally intended. Found by Marga
  465. Manterola while documenting the maintainer scripts. Closes: #296026.
  466. * Fixed removal of files involved in diversions during upgrade, caused by
  467. checking whether the "directory" was in use by another package without
  468. actually checking whether or not it was a directory. Closes: #310390.
  469. * Fixed package saving to not disappear packages who divert anything from
  470. the installing package out of the way. Closes: #113626.
  471. * Improved clean-up of unpack failure during install or upgrade, to leave
  472. the system in exactly the same state as it started in.
  473. Closes: #47404, #82407, #121173, #170869, #201848, #236733, #268639.
  474. * Fixed crash when unpacking a package which has an unversioned Replaces
  475. declared on it by another package previously unpacked in the same run
  476. (Colin Watson). Closes: #322595.
  477. * New install unwinding fixed to ensure we don't leave a version in the
  478. status db for a not-installed package.
  479. * Corrected error call when encountering a corrupted filesystem tarfile
  480. to not print "Success". Closes: #95570.
  481. * Fixed castration of potentially unsafe devices to not follow symlinks.
  482. Closes: #169928.
  483. * Marked log file descriptor as close-on-exec. Closes: #320925.
  484. * Re-worked dpkg-source -x to allow all manner of strange things maintainers
  485. seem to do, unpacking isn't the right place to enforce sanity; we'll
  486. do it in -b later on >:-). Closes: #316470, #317760, #318473, #318745,
  487. #322359, #322361, #322362.
  488. * Corrected dselect synopsis line to match consensus. Closes: #318659.
  489. * Changed dpkg-name to use a shell redirect rather than the /dev/stderr
  490. device that may not be writable. Closes: #318376.
  491. * Adjusted various dpkg-query options to avoid outputting a trailing
  492. newline. Closes: #151651, #319781.
  493. * Changed references to "statusoverride" file to just "statoverride"
  494. to make it match reality. Closes: #320952.
  495. * Fixed several bugs with the default diff ignore list used by dpkg-source.
  496. * Added ,,* to the list of default diff ignore list. Closes: #322917.
  497. * Fixes to dpkg-dev (Frank Lichtenheld):
  498. - dpkg-checkbuilddeps will now exit with an error if it is unable to
  499. parse a dependency field. Closes: #171762, #302229.
  500. - dpkg-genchanges will now output a warning if given -sd for a native
  501. package, as it's going to ignore it. Closes: #5571.
  502. - dpkg-source fixed to give a more meaningful error message if given
  503. a directory as the first argument. Closes: #306874.
  504. - dpkg-source fixed to handle being given an absolute path to -b.
  505. Closes: #147574.
  506. - Fix controllib.pl to allow whitespace before version operators.
  507. Closes: #273489, #310306.
  508. - Fix architecture dependency parsing that sometimes generated wrong
  509. list of requirements. Closes: #319816.
  510. - Make the default control field name mangling behaviour "nicer" by
  511. upper-casing all letters that come after a dash. Closes: #306474.
  512. - Ignore trailing newlines in single paragraph control files.
  513. Closes: #57194, #156319
  514. * Documentation:
  515. - Fixed typo in dpkg-architecture man page. Closes: #317770.
  516. - Documented dpkg-deb -W/--show and --showformat. Closes: #319784.
  517. -- Scott James Remnant <scott@netsplit.com> Wed, 17 Aug 2005 04:44:44 +0100
  518. dpkg (1.13.10) unstable; urgency=low
  519. The "Bully's Special Prize" Release.
  520. * Removed /usr/sbin/start-stop-daemon. Closes: #313400.
  521. * Fixed md5sum diversion removal. Closes: #313415.
  522. * Fixed dpkg-source to handle native tarballs with a Debian revision.
  523. Closes: #313381, #313433.
  524. * Fixed upgrade from pre-sarge dpkg outside of dselect. Closes: #314575.
  525. * Changed log times to be local rather than UTC. Closes: #313347.
  526. * Changed log writing to be line-buffered. Closes: #314550.
  527. * Moved log creation to postinst, and don't fail if base-passwd hasn't
  528. been configured yet. Closes: #316084.
  529. * Don't try to compile in SELinux support on Hurd. Closes: #313398.
  530. * Place code for SELinux support in the right place so it will actually
  531. get compiled in and used (Manoj Srivastava). Closes: #314886.
  532. * Documentation:
  533. - Added missing word to dpkg-architecture manpage. Closes: #313554.
  534. - Reference to dpkg manpage in dpkg.cfg corrected. Closes: #314262.
  535. * Updated Translations (Christian Perrier):
  536. - Basque (Piarres Beobide Egana). Closes: #313474.
  537. - Catalan (Jordi Mallach). Closes: #313288.
  538. - Czech (Miroslav Kure). Closes: #314431.
  539. - Danish (Claus Hindsgaul).
  540. - French (Christian Perrier).
  541. - German (Jens Seidel). Closes: #314125.
  542. - Greek (Greek team). Closes: #314828.
  543. - Italian (Lele Gaifax).
  544. - Japanese (Kenshi Muto). Closes: #313330.
  545. - Russian (Yuri Kozlov). Closes: #313620.
  546. * Hebrew translation de-activated on request of the translator until there
  547. is better support for RTL languages. Closes: #313282.
  548. -- Scott James Remnant <scott@netsplit.com> Tue, 28 Jun 2005 14:19:06 +0100
  549. dpkg (1.13.9) unstable; urgency=low
  550. The "On like Donkey Kong" Release.
  551. * Only open the log file when we first need to write to it, this avoids
  552. the need to suppress errors when not root which fakeroot defeated anyway.
  553. * Stop dpkg-source clobbering an existing .orig directory during unpacking.
  554. Closes: #21236.
  555. * Allow an alternate output directory to be specified to dpkg-source by
  556. giving a second argument to -x. Closes: #246802, #282323.
  557. * Added .arch-inventory to default diff ignore regexp. Closes: #304297.
  558. SELinux support (Manoj Srivastava):
  559. * On SELinux-enabled systems, try to set the security context when the
  560. package is unpacked. Closes: #193653, #249496, #307139.
  561. * Added build-dependancy on libselinux1-dev.
  562. Improvements to dpkg-source (Brendan O'Dea):
  563. * Support unpacking of "Wig And Pen" (Format 2.0) source packages.
  564. * Multiple pristine upstream tarballs allowed.
  565. * Native and upstream tarballs may be bzip2-compressed instead of gzip,
  566. as may the debian diff or tarball.
  567. * Unsupported format error fixed to output the unsupported format
  568. rather than the supported one. Closes: #156317.
  569. -- Scott James Remnant <scott@netsplit.com> Sun, 12 Jun 2005 15:52:43 +0100
  570. dpkg (1.13.8) experimental; urgency=low
  571. The "In like Flynn" Release.
  572. * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
  573. given a zero length, rather than returning NULL. This is POSIXly
  574. correct, so handle zero-length package control files (like available).
  575. -- Scott James Remnant <scott@netsplit.com> Fri, 10 Jun 2005 07:39:44 +0100
  576. dpkg (1.13.7) experimental; urgency=low
  577. The "Maidenhead Creeping Water Plant" Release.
  578. * Reduced inability to open a log file to a warning, suppressed for
  579. non-root operations. Closes: #312383.
  580. -- Scott James Remnant <scott@netsplit.com> Thu, 9 Jun 2005 06:12:56 +0100
  581. dpkg (1.13.6) experimental; urgency=low
  582. The "Just kidding about the God part" Release.
  583. * Fixed incorrect installation location of /etc/logrotate.d/dpkg caused
  584. by a mis-understanding of dh_install's abilities.
  585. -- Scott James Remnant <scott@netsplit.com> Mon, 6 Jun 2005 05:58:36 +0100
  586. dpkg (1.13.5) experimental; urgency=low
  587. The "Flatulent Elm of West Ruislip" Release.
  588. * Actions and package states are now logged by default in the
  589. /var/log/dpkg.log file. This file is rotated monthly and can be
  590. disabled by commenting the line in /etc/dpkg/dpkg.cfg.
  591. * User decisions about conffiles are now logged.
  592. * dpkg-source no longer complains about Enhances field. Closes: #159642,
  593. #159745, #159746.
  594. * preinst no longer relies on procps being installed. Closes: #311808.
  595. * Architecture Support:
  596. - Change DEB_*_GNU_CPU from i386 to i486, to reflect reality.
  597. DEB_*_ARCH_CPU remains at i386, you should be checking against that.
  598. Closes: #310394.
  599. - Fixed order ostable is read to prevent Linux becoming the Hurd.
  600. Closes: #309603.
  601. * Updated Manpage Translations (Christian Perrier):
  602. - Syntax error corrected in Swedish man page for dpkg-deb.
  603. Closes: #300980.
  604. - Syntax error corrected in Spanish man page for dpkg-scanpackages.
  605. Closes: #300981
  606. -- Scott James Remnant <scott@netsplit.com> Mon, 6 Jun 2005 05:34:21 +0100
  607. dpkg (1.13.4) experimental; urgency=low
  608. The "Or the Wabbit gets it" Release.
  609. * Add -L option to dpkg-architecture to list architecture strings
  610. we can accept.
  611. -- Scott James Remnant <scott@netsplit.com> Tue, 29 Mar 2005 13:31:15 +0100
  612. dpkg (1.13.3) experimental; urgency=low
  613. The "Paying off Karma at a vastly accelerated rate" Release.
  614. * Missing newline added to warning output function. Closes: #283798.
  615. * Fixed prototype warning in dpkg-scansources. Closes: #213577, #219760,
  616. #267505.
  617. * Removed trailing line from debian origins file. Closes: #264904.
  618. * Changed dpkg-buildpackage to say "source changed by" rather than
  619. "source maintainer is". Closes: #247313.
  620. * Fixed dpkg-gencontrol to allow '-' in architecture names. Closes: #274677.
  621. * Fixed "unknown information field" error to report field that it doesn't
  622. know about. Closes: #275243.
  623. * Documentation:
  624. - Remove "medium-level" from description of dpkg. Closes: #292454.
  625. - Harmonised argument names in update-alternatives(8).
  626. Closes: #267095, #284941
  627. - Documented what the '+' and '*' mean in update-alternatives --config
  628. output. Closes: #270486.
  629. - Mention aptitude alongside dselect in 'dpkg --usage' and
  630. 'dpkg-deb --help', fix quote style of mention in 'dpkg --help'.
  631. Closes: #274800, #278118.
  632. - Associate --truename with the description of what it does in
  633. dpkg-divert(8). Closes: #277076.
  634. - Removed last remaining references to the packaging manual, replacing
  635. with better references. Closes: #262775.
  636. - Documented format of file dpkg --set-selections takes. Closes: #270043.
  637. -- Scott James Remnant <scott@netsplit.com> Mon, 21 Mar 2005 03:10:27 +0000
  638. dpkg (1.13.2) experimental; urgency=low
  639. The "Mysteriously Unnamed" Release.
  640. * md5sum has been removed, the coreutils or textutils version will be
  641. diverted to /usr/bin/md5sum. Closes: #6633, #136110.
  642. The following bugs are filed against the dpkg md5sum, so no longer apply.
  643. Closes: #95755, #193877, #223381, #264195, #270241, #286632,
  644. * Take Replaces into account when installing packages; don't issue a
  645. "trying to overwrite" error if the file that already exists is in
  646. a package that Replaces the one being installed.
  647. Closes: #164595, #184635, #277890.
  648. * Allow actions and status changes to be logged to a file. Disabled by
  649. default, uncomment line in /etc/dpkg/dpkg.cfg to enable.
  650. Closes: #957, #53376, #77109, #143882, #284499.
  651. * Don't truncate output of 'dpkg -l' when stdout is not a tty.
  652. Closes: #92263, #253860, #258608, #261822, #282790.
  653. * Fix further compilation problems with gcc 4.0. Closes: #299699
  654. * Handle tar files without trailing slash in directory names.
  655. Closes: #287152.
  656. * Output arguments to maintainer scripts with -D2. Closes: #237684,
  657. #296030.
  658. * Architecture Support:
  659. - Added ppc64. Closes: #263743.
  660. - Split archtable into cputable and ostable, archtable is retained
  661. for compatibility with other packages that might use it only.
  662. - dpkg-architecture no longer canonises -t argument. Closes: #173205.
  663. - dpkg-architecture output includes new DEB_*_ARCH_OS and
  664. DEB_*_ARCH_CPU variables that contain the Debian system and CPU
  665. names respectively.
  666. - dpkg-architecture outputs (mostly) correct GNU system names now,
  667. in particular this means that it will output "linux-gnu" instead
  668. of "linux". You should use the new _ARCH_OS variables instead.
  669. * Documentation:
  670. - Add examples to dpkg-divert(8). Closes: #291816.
  671. - Correct typo in dpkg-architecture(1). Closes: #299090.
  672. -- Scott James Remnant <scott@netsplit.com> Fri, 18 Mar 2005 16:21:32 +0000
  673. dpkg (1.13.1) experimental; urgency=low
  674. The "Livin' like a good boy oughta" Release.
  675. * Removed dpkg --print-gnu-build-architecture option. Use variables
  676. defined by dpkg-architecture instead.
  677. * Soft-deprecated dpkg --print-installation-architecture. Use
  678. dpkg --print-architecture instead, which now does the same thing.
  679. * dpkg --print-architecture no longer calls c-compiler. Closes: #164863.
  680. * Removed third field from /usr/share/dpkg/archtable.
  681. * Now we no-longer pre-depend on dselect, check the upgrade will work
  682. in preinst and give the user a chance to abort if they haven't yet
  683. installed dselect and need to. Closes: #282335.
  684. * Fix handling of GNU longname and longlink when a tarfile entry has
  685. both. Closes: #128388.
  686. * md5sum no longer outputs "-" when no argument is supplied.
  687. Closes: #164591, #164889.
  688. * Add darcs metadirectory to dpkg-source diff ignore list. Closes: #289760.
  689. * Add new '-f' short option to dpkg-query as equivalent to --showformat.
  690. Closes: #281627.
  691. * Report conffile conflicts and per-package errors on the status-fd.
  692. Closes: #297880.
  693. * Correct typo in dpkg-architecture. Closes: #282701.
  694. * Fix start-stop-daemon's support for GNU/kFreeBSD. Closes: #258051.
  695. * Architecture Support:
  696. - Added kfreebsd-amd64. Closes: #280963.
  697. - Added m32r. Closes: #280710.
  698. - Clean up of archtable. Closes: #118910, #286898.
  699. - Clean up of dpkg-architecture. Closes: #256323.
  700. * Updated Translations (Christian Perrier):
  701. - French (French Team).
  702. - Greek (Konstantinos Margaritis). Closes: #295922.
  703. -- Scott James Remnant <scott@netsplit.com> Thu, 3 Mar 2005 12:09:07 +0000
  704. dpkg (1.13.0) experimental; urgency=low
  705. The "Three banana strategy" Release.
  706. * Remove the /usr/info or /usr/info/dir symlinks we used to create.
  707. Closes: #206063, #288415.
  708. * Fix cast in lvalue assignment that gcc 4.0 doesn't like.
  709. Closes: #282669, #284797.
  710. * Correct bashism in disk method update script. Closes: #260568.
  711. * Scorched-earth reimplementation of the build process and control files
  712. with debhelper and automake. Closes: #200683, #217946, #229629, #260568,
  713. #266995, #279701, #283640, #292973, #293041.
  714. * Remove SGML and POD documentation formats due to both licensing and
  715. sanity issues. Closes: #285806.
  716. * The dpkg-doc and dpkg-static packages are no more.
  717. * dpkg.cfg cleaned up to remove non-useful examples.
  718. Closes: #169618, #305192.
  719. -- Scott James Remnant <scott@netsplit.com> Fri, 14 Jan 2005 19:28:00 +0000
  720. dpkg (1.10.28) unstable; urgency=low
  721. The "Awh, yeah? Ripper!" Release.
  722. * New Translations (Christian Perrier):
  723. - Romanian (Eddy Petrisor). Closes: #309714.
  724. - Tagalog (Eric Pareja). Closes: #296407.
  725. * Updated Translations (Christian Perrier):
  726. - French (Christian Perrier).
  727. - Greek (Konstantinos Margaritis). Closes: #295922
  728. - Indonesian (Arief S Fitrianto). Closes: #296733
  729. * Updated Manpage Translations (Christian Perrier):
  730. - French (Philippe Batailler).
  731. - Syntax error corrected in Brazilian Portuguese man page for
  732. update-alternatives. Closes: #300646
  733. -- Scott James Remnant <scott@netsplit.com> Thu, 26 May 2005 18:18:10 +0100
  734. dpkg (1.10.27) unstable; urgency=low
  735. The "Grab your gun and bring in the cat" Release.
  736. * New Translations (Christian Perrier):
  737. - Indonesian (Arief S Fitrianto).
  738. - Norwegian Bokmål (Bjorn Steensrud).
  739. * Updated Translations (Christian Perrier):
  740. - Dutch (confusing option corrected by Christian Perrier).
  741. - Galician (Jacobo Tarrio).
  742. - Korean (Seo Sanghyeon).
  743. - Simplified Chinese (Carlos Liu).
  744. - Traditional Chinese (Asho Yeh).
  745. -- Scott James Remnant <scott@netsplit.com> Thu, 10 Feb 2005 15:10:22 +0000
  746. dpkg (1.10.26) unstable; urgency=low
  747. The "Captain Tight-Pants" Release.
  748. * Fix incorrect claim that 'Q' in dselect quits without saving changes
  749. (really 'X').
  750. * Revert to current 'stable' behaviour of Space/Enter/'Q' in the dselect
  751. help screen, Space leaves the help screen and Enter and 'Q' do nothing.
  752. It's dangerous to encourage users to press Enter or 'Q' since they
  753. commit changes in the package selection screen.
  754. * New Translations (Christian Perrier):
  755. - Basque (Piarres Beobide Egaña). Closes: #281245.
  756. (Was really added in 1.10.24, but forgotten from ALL_LINGUAS.)
  757. - Bosnian (Safir Šećerović).
  758. - Slovak (benco). Closes: #284896, #289341
  759. - Traditional Chinese (Asho Yeh). Closes: #287375.
  760. * Updated Translations (Christian Perrier):
  761. - Brazilian Portuguese (André Luís Lopes). Closes: #281228.
  762. - Catalan (Jordi Mallach). Closes: #281333.
  763. - Czech (Miroslav Kure). Closes: #281231.
  764. - Danish (Claus Hindsgaul). Closes: #281103.
  765. - Dutch (Christian Perrier). Closes: #282087.
  766. - Galician (Héctor Fernéndez López).
  767. - German (Michael Piefel). Closes: #281503.
  768. - Italian (Stefano Canepa). Closes: #282543.
  769. - Japanese (Kenshi Muto). Closes: #281144.
  770. - Korean (Changwoo Ryu). Closes: #282246.
  771. - Norwegian Nynorsk (Håvard Korsvoll). Closes: #281456.
  772. - Polish (Bartosz Feñski).
  773. - Portuguese (Miguel Figueiredo). Closes: #281122, #289359.
  774. - Russian (Yuri Kozlov). Closes: #281166.
  775. - Simplified Chinese (Tchaikov, Carlos Liu).
  776. - Spanish (Javier Fernández-Sanguino Peña). Closes: #281117.
  777. - Swedish (Peter Karlsson). Closes: #281165.
  778. -- Scott James Remnant <scott@netsplit.com> Tue, 11 Jan 2005 16:26:51 +0000
  779. dpkg (1.10.25) unstable; urgency=low
  780. The "你他媽的天下所有的人都該死" Release.
  781. This release is to correct the mangled Simplified Chinese translation
  782. included in 1.10.24 caused by rebellion of the translator's mail client.
  783. * Updated Translations (Christian Perrier):
  784. - Dutch (Bart Cornelis). Closes: #278700.
  785. - Polish (Bartosz Fenski). Closes: #280406.
  786. - Simplified Chinese (Tchaikov, Carlos Liu). Closes: #278676.
  787. -- Scott James Remnant <scott@netsplit.com> Thu, 11 Nov 2004 20:06:57 +0000
  788. dpkg (1.10.24) unstable; urgency=low
  789. The "Donald, where's your troosers?" Release.
  790. * Add support for uncompressed data.tar archive members and bzip2-
  791. compressed data.tar.bz2 members of binary packages. Closes: #34727.
  792. * New Translations (Christian Perrier):
  793. - Basque (Piarres Beobide). Closes: #265491.
  794. - Greek (George Papamichelakis). Closes: #260809.
  795. - Hebrew (Lior Kaplan). Closes: #275267.
  796. - Simplified Chinese (Tchaikov, Carlos Liu). Closes: #265197.
  797. * Updated Translations (Christian Perrier):
  798. - Brazilian Portuguese (Andre Luis Lopes). Closes: #260964, #273947,
  799. #278063.
  800. - Czech (Miroslav Kure). Closes: #255904, #278178.
  801. - Catalan (Jordi Mallach). Closes: #278098.
  802. - Danish (Claus Hindsgaul). Closes: #278097.
  803. - Dutch (Bart Cornelis). Closes: #268271, #268886, #274366, #278061.
  804. - Galician (Hector Fernandez).
  805. - German (Michael Piefel). Closes: #276462, #278168.
  806. - French (Christian Perrier).
  807. - Japanese (Kenshi Muto). Closes: #272456, #278141.
  808. - Italian (Lele Gaifax).
  809. - Korean (Changwoo Ryu). Closes: #261528, #278142.
  810. - Norwegian Nynorsk (Håvard Korsvoll). Closes: #275387, #278286.
  811. - Polish (Bartosz Fenski). Closes: #268452, #278064.
  812. - Portuguese (Miguel Figueiredo). Closes: #268266, #261424, #261519,
  813. #278294.
  814. - Russian (Yuri Kozlov). Closes: #268452, #278154.
  815. - Spanish (Javier Fernández-Sanguino Peña). Closes: #277173, #278117.
  816. - Swedish (Peter Karlsson).
  817. * Updated Manpage Translations (Christian Perrier):
  818. - French (Philippe Batailler). Closes: #268048.
  819. - Spanish (Ruben Porras). Closes: #261807.
  820. - Swedish (Peter Karlsson).
  821. -- Scott James Remnant <scott@netsplit.com> Wed, 27 Oct 2004 09:25:58 +0100
  822. dpkg (1.10.23) unstable; urgency=low
  823. The "Let the Wookie win" Release.
  824. * Updated hurd start-stop-daemon support. Closes: #133640, #254180.
  825. * Removed usage of non-POSIX test options. Closes: #256302.
  826. * Architecture Support:
  827. - Renamed x86-64 to amd64. Closes: #252346, #254598.
  828. * Documentation:
  829. - Correct typo in dpkg-divert(8). Closes: #254175.
  830. * New Translations:
  831. - Korean (Changwoo Ryu). Closes: #254590.
  832. * Updated Translations:
  833. - Catalan (Jordi Mallach).
  834. - Danish (Claus Hindsgaul). Closes: #252407.
  835. - French (Christian Perrier). Closes: #252586.
  836. - Italian (Lele Gaifax).
  837. - Polish (Bartosz Fenski). Closes: #254209.
  838. - Spanish manpages (Ruben Porras). Closes: #246158, #246159, #246160,
  839. #246161, #246162, #246163, #246164.
  840. -- Scott James Remnant <scott@netsplit.com> Mon, 19 Jul 2004 19:52:14 +0100
  841. dpkg (1.10.22) unstable; urgency=low
  842. The DebConf4 Release.
  843. This release is mostly intended to mop up the minor and trivial bug
  844. fixes in the list and clear out the documentation changes. As such,
  845. it should be treated with even more suspicion than is normal.
  846. * Use colouring to break cycles earlier to avoid long loops whilst
  847. installing or configuring packages. Closes: #232445, #246857.
  848. * Don't try to configure packages that disappeared in the same
  849. run. Closes: #202997.
  850. * Fix segfault when "gcc -dumpmachine" returns a non-matching triplet.
  851. Closes: #211850.
  852. * Remove restriction that package names be at least two characters long.
  853. Closes: #237734.
  854. * Fix dpkg-source (actually controllib.pl) to output the field name
  855. properly again. Closes: #226931, #246595.
  856. * Make dpkg-scanpackages output Origin and Bugs fields with proper
  857. casing. Closes: #154422.
  858. * Add support for DOS line-endings to md5sum. Closes: #246103.
  859. * Fix start-stop-daemon segfault on Hurd. Closes: #133640.
  860. * Allow dpkg-shlibdeps to run as non-root users. Closes: #96881.
  861. * Correct various compiler warnings. Closes: #229766.
  862. * Architecture Support:
  863. - Added x86-64 (x86_64 / amd64). Closes: #238483, #241938.
  864. - Added i?86-gnu (Hurd). Closes: #216695, #236331.
  865. - Added i386-kfreebsd-gnu and i386-knetbsd-gnu. Closes: #250176.
  866. * Packaging:
  867. - Create $(docdir) even when --without-sgml-doc is passed so the
  868. ChangeLog can be installed. Closes: #137719.
  869. - Stop hardcoding the list of manual page languages in debian/rules,
  870. so we include Spanish, Russian and Brazilian Portugese. Closes: #245994.
  871. - Quote LDFLAGS in debian/rules to allow multiple options.
  872. Closes: #230242.
  873. * Documentation:
  874. - Move dpkg-scanpackages and dpkg-scansources to section 1 as they
  875. are user tools. Closes: #114946.
  876. - Correct hyphen characters in manpages. Closes: #212284, #247086, #226800.
  877. - Remove obsolete references to the Debian Packaging Manual.
  878. Closes: #122910, #140695.
  879. - Correct 'n' and 'p' key descriptions in dselect help message.
  880. Closes: #120562.
  881. - Add --force-bad-verify to dpkg manpage. Closes: #192812.
  882. - Correct dpkg manpage to refer to --force-remove-reinstreq instead of
  883. -non-existant --force-reinstreq option. Closes: #232831.
  884. - Correct documentation of --compare-versions arguments. Closes: #232317.
  885. - Correct usage of "et al" to "et al.". Closes: #230751.
  886. - Add dpkg-reconfigure(8) to SEE ALSO section of dpkg(8). Closes: #233282.
  887. - Suggest packages that provide additional functionality in the dpkg
  888. manpage. Closes: #81355.
  889. - Suggest dselect update in description of dpkg --update-avail.
  890. Closes: #206163.
  891. - Suggest aptitude as well as dselect. Closes: #217042.
  892. - Suggest fakeroot for dpkg-source -r. Closes: #175897.
  893. - Correct documentation of start-stop-daemon. Closes: #41554, #211856.
  894. - Correct documentation of start-stop-daemon manpage to refer to --retry
  895. alongside --stop. Closes: #204691.
  896. - Add note that start-stop-daemon will chdir("/") unless -d is specified.
  897. Closes: #217823, #218060.
  898. - Correct documentation of dpkg-query --list. Closes: #232639.
  899. - Correct invalid use of &quot; within update-alternatives(8) with .BR.
  900. Closes: #244624.
  901. - Rewrite description of dpkg-source -i to indicate the intent of the
  902. default setting rather than the exact exclusions. Closes: #227169.
  903. - Correct documentation of dpkg-statoverride --update. Closes: #85079.
  904. - Correct documentation of update-alternatives --install. Closes: #179648.
  905. - Documented dpkg:Version and dpkg:UpstreamVersion substvars.
  906. Closes: #85815, #85818.
  907. - Fix spelling error in utils/md5sum.1. Closes: #250281.
  908. - Replace "&c." with the slightly clearer "etc.". Closes: #235773.
  909. - Correct various typos. Closes: #219623, #221235.
  910. * Updated Translations:
  911. - Catalan (Jordi Mallach).
  912. - French (Christian Perrier). Closes: #246359.
  913. - Italian (Lele Gaifax).
  914. - Japanese manpages (KISE Hiroshi). Closes: #248483.
  915. - Russian (Nikolai Prokoschenko). Closes: #249254.
  916. - Spanish manpages (Ruben Porras). Closes: #246158, #246159, #246160,
  917. #246161, #246162, #246163, #251830.
  918. * New Translations:
  919. - German start-stop-daemon and update-alternatives manpages
  920. (Helge Kreutzmann). Closes: #247116, #249454.
  921. - Spanish dpkg-scansources manpage (Ruben Porras). Closes: #246164.
  922. -- Scott James Remnant <scott@netsplit.com> Tue, 1 Jun 2004 18:21:40 -0300
  923. dpkg (1.10.21) unstable; urgency=low
  924. * Fix incorrect linked list node removal code that caused every second
  925. shared or diverted conffile to be deleted by dpkg.
  926. Closes: #10879, #33046, #47267, #90623, #98210, #109691, #146167.
  927. Closes: #155456, #204275.
  928. * Call mknod with the required device type. Closes: #158916.
  929. * Correct the default query output format to be consistent with
  930. what the underlying library expects. Closes: #174973.
  931. * Fix missing NULL-termination in dpkg-query -W display of dependency
  932. fields. Closes: #174978
  933. * Strip output from md5sum(1) after the first whitespace character.
  934. Closes: #200763.
  935. * Output a warning if we cannot open a configuration file instead of
  936. treating it as a fatal error, in case our home directory is not readable
  937. by root. Closes: #200701.
  938. * Set LC_ALL to C before spawning off dpkg --search, to avoid searching
  939. on localized strings. Closes: #244316.
  940. * Don't require argument for start-stop-daemon -V. Closes: #237589.
  941. * Correct use of @ARGV within dpkg-scanpackages, allowing -u to work
  942. once again. Closes: #225086, #241503.
  943. * Make sure file permissions passed to dpkg-statoverride are numeric.
  944. Closes: #161156.
  945. * Correctly break out of the loop in install-info.
  946. Closes: #124225, #160761.
  947. * Add --dir-file option to install-info for GNU install-info
  948. compatibility. Closes: #179192
  949. * Refer to debian-policy in dpkg-doc's description instead of the
  950. non-existant packaging-manual. Closes: #120970.
  951. * Remove incorrect mention of build-essential from dpkg-checkbuilddeps
  952. manpage. Closes: #219210.
  953. * Add a note about diverting shared libraries to the dpkg-divert
  954. manpage. Closes: #214699.
  955. * Updated Translations:
  956. - Brazilian Portugese (Andre Luis Lopes). Closes: #237864.
  957. - Catalan (Jordi Mallach).
  958. - Danish (Claus Hindsgaul). Closes: #237624.
  959. - Dutch (Pieter-Paul Spiertz, Bart Cornelis, Erwin).
  960. Closes: #102094, #151799, #207758.
  961. - French (Sam Hocevar). Closes: #243191.
  962. - German (Florian Ernst). Closes: #109669, #115352, #187952, #244098.
  963. - Japanese manpages (KISE Hiroshi). Closes: #220776.
  964. - Polish (Bartosz Fenski). Closes: #242870.
  965. - Spanish (Javier Fernández-Sanguino Peña). Closes: #166052.
  966. - Swedish (Peter Karlsson).
  967. * New Translations:
  968. - Japanese dpkg-source manpage (KISE Hiroshi). Closes: #239000.
  969. - Norwegian Nynorsk (Gaute Hvoslef Kvalnes). Closes: #233614.
  970. - Portguese (Miguel Figueiredo). Closes: #240081.
  971. - Spanish dpkg-source manpage (Ruben Porras). Closes: #171489.
  972. -- Scott James Remnant <scott@netsplit.com> Sun, 25 Apr 2004 18:55:10 +0100
  973. dpkg (1.10.20) unstable; urgency=high
  974. * Update Japanese translation. Closes: #224616
  975. * Update French translation. Closes: #218713
  976. * Fix spelling error in German md5sum man page. Closes: #230750
  977. * Fix typo in pt_BR po file. Closes: #192102
  978. * Revert fix for #232916, this turns out to be a bug in the pgpgp
  979. wrapper, dpkg worked fine with pgp itself.
  980. -- Scott James Remnant <scott@netsplit.com> Thu, 11 Mar 2004 11:24:54 +0000
  981. dpkg (1.10.19) unstable; urgency=high
  982. * Distinguish unmet build dependencies from build conflicts.
  983. Closes: #217943, #235266.
  984. * Force NULL-termination of all tar file entry names. Closes: #232025.
  985. * Allow dselect to use the full window width. Closes: #139781.
  986. * Pass correct number of arguments for format string when out of disk
  987. space. Closes: #213038, #217286, #213543, #213846.
  988. * Remove duplicated entries from ChangeLog. Closes: #157437.
  989. * Fix dpkg-buildpackage when used with PGP. Closes: #232916.
  990. * Update support for Debian FreeBSD. Closes: #211566.
  991. * Store Architecture in the status file. Closes: #228253.
  992. * Don't print offending lines in md5sum. Closes: #170953.
  993. * Check bounds of md5sum lines. Closes: #168443, #199489, #199693.
  994. -- Scott James Remnant <scott@netsplit.com> Mon, 8 Mar 2004 19:05:32 +0000
  995. dpkg (1.10.18.1) unstable; urgency=medium
  996. * Non-maintainer upload to fix release-critical bugs.
  997. * Terminate string buffer in main/remove.c. Closes: #228379.
  998. * Prevent stashing of hardlinked devices and setuid or setgid binaries
  999. by removing permissions on upgrade as well as on remove.
  1000. Closes: #225692.
  1001. * Update dpkg conflicts to << 1.10, instead of 1.9.
  1002. Closes: #190611, #221989, #222760.
  1003. -- Scott James Remnant <scott@netsplit.com> Thu, 26 Feb 2004 01:17:27 +0000
  1004. dpkg (1.10.18) unstable; urgency=medium
  1005. * Rebuild, tagging and releasing correctly from cvs this time.
  1006. -- Adam Heath <doogie@debian.org> Mon, 27 Oct 2003 13:39:56 -0600
  1007. dpkg (1.10.17) unstable; urgency=medium
  1008. * Make dselect do conflict resolution when dealing with automatically
  1009. selected recommended package. Thanks to Colin Watson for the analysis
  1010. and patch. Closes: Bug#151663
  1011. * Branden Robinson <branden@debian.org>:
  1012. s/dpkg-checkbuild/dpkg-checkbuilddeps/ in usage.
  1013. * dpkg-checkbuilddeps now sets $reduce_arch. Closes: #212796.
  1014. * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
  1015. Add -u in dpkg-scanpackages. Closes: #214123.
  1016. Add -a<arch> command to dpkg-scanpackages.
  1017. * Add .#* to dpkg-source's default ignore filter. Closes: #217380.
  1018. * Matthias Urlichs <smurf@smurf.noris.de>:
  1019. Don't assume /usr/info/dir exists if /usr/info does. Closes: #165770.
  1020. * Jordi Mallach <jordi@debian.org>:
  1021. Update Catalan translation.
  1022. * Fix errors with dependency fields that reference ${dpkg:Version}.
  1023. Closes: #213108.
  1024. -- Adam Heath <doogie@debian.org> Mon, 27 Oct 2003 13:04:57 -0600
  1025. dpkg (1.10.16) unstable; urgency=low
  1026. * Almost *EVERY* damn file was including config.h in the wrong spot.
  1027. After making it the first include, then off_t/size_t/etc could actually
  1028. be redefined to be 64-bit compatible.
  1029. * Jordi Mallach <jordi@debian.org>:
  1030. Fix configure to set HAVE_SETLOCALE. Closes: #211816
  1031. * "Loïc Le Loarer" <lll_deb@m4x.org>:
  1032. Add a -d|--chdir option to start-stop-daemon. Closes: #151802
  1033. * Split the background block into 2 parts: one that does the fork, and
  1034. opens /dev/tty and /dev/null, and one that does everything else. The
  1035. second block is then moved to be run right before the exec. This
  1036. allows error messages to be seen from the child(previously, they were
  1037. lost), and allows for the chroot to not require the device files.
  1038. These changes based on the bugs filed by:
  1039. Marc Herbert <Marc.Herbert@ens-lyon.fr>: Closes: #155219
  1040. Loïc Le Loarer <lll_deb@m4x.org>: Closes: #151800
  1041. * Mario Lang <mlang@debian.org>:
  1042. When --start, --startas and --pidfile are given, print 'process'
  1043. instead of '(null)' for the process name, if it's already running.
  1044. Closes: #209355
  1045. * Imported several translated manpages, from debian-doc cvs:
  1046. * Spanish: 822-date.1 cleanup-info.8 deb-control.5 deb-old.5
  1047. deb.5 dpkg-checkbuilddeps.1 dpkg-deb.1 dpkg-divert.8 dpkg-name.1
  1048. dpkg-scanpackages.8 dpkg-split.8 dpkg-statoverride.8 dpkg.8
  1049. dselect.8 md5sum.1 start-stop-daemon.8 update-alternatives.8
  1050. "Esteban Manchado Velázquez" <zoso@debian.org>: Closes: #171489
  1051. * French: deb.5
  1052. Julien Louis <arthur51@ifrance.com>: Closes: #164906
  1053. * Portuguese: dpkg.8 dselect.8
  1054. * Matt Zimmerman <mdz@debian.org>
  1055. In dpkg's manpage, -O had an inverted word. Closes: #111711
  1056. * Marcin Owsiany <porridge@debian.org>:
  1057. Fix Polish translation of 'conflicts with' Closes: #112057
  1058. * Jiri Masik <masik@darbujan.fzu.cz>:
  1059. Improve Czech translation of: "dpkg - warning: ignoring request to
  1060. remove %s which isn't installed." Closes: #117518
  1061. * Marco Nenciarini <mnencia@prato.linux.it>:
  1062. Fix missing space in Italian translation when listing files, and the
  1063. file is diverted. Closes: #138244
  1064. * Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl>:
  1065. Update Polish translation. Closes: #142370
  1066. * Martin Quinson <mquinson@ens-lyon.fr>:
  1067. Fix missing space in French translation of: "%s - warning: downgrading
  1068. %.250s from %.250s to %.250s.\n" Closes: #149142
  1069. * Hidetaka Iwai <tyuyu@sings.jp>:
  1070. Fix typo in Japanese translation of dpkg --force-help; dowgrade ->
  1071. downgrade: Closes: #157819
  1072. * Martin Quinson <mquinson@ens-lyon.fr>:
  1073. Fix French translation when listing files, and the file is diverted.
  1074. Closes: #162154
  1075. * Rune Schjellerup <olberd@odense.kollegienet.dk>:
  1076. Fix Danish translation of(was missing the leading space): " does not
  1077. appear to be available\n" Closes: #192972
  1078. * Fix md5sum when handling large files. Closes: #162691
  1079. * Fix dpkg-checkbuilddeps calling of parsedep. It wasn't setting
  1080. use_arch. Closes: #212796.
  1081. * Joey Hess <joeyh@debian.org>:
  1082. Change formatting of info.dir. Closes: #167379.
  1083. -- Adam Heath <doogie@debian.org> Sat, 25 Oct 2003 15:46:16 -0500
  1084. dpkg (1.10.15) unstable; urgency=low
  1085. * Fix detection of va_copy.
  1086. * Back out debian/rules build-arch detection. It is *not* possible *at
  1087. all* to detect available targets in a rules file. Period.
  1088. -- Adam Heath <doogie@debian.org> Fri, 19 Sep 2003 20:02:19 -0500
  1089. dpkg (1.10.14) unstable; urgency=low
  1090. * controllib.pl:
  1091. * Rewrote the parsedep stuff, so that it wasn't done during control
  1092. file parsing. Scripts that need the internal parsed format should
  1093. call parsedep on the field's value.
  1094. * Split the substvars parsing into a separate function.
  1095. * No longer validate dependency fields when reading the control file.
  1096. Some fields may have vars in them, which breaks the validation.
  1097. * dpkg-gencontrol calls substvars after parsing the control file, and
  1098. then validates the substituted depends lines. Originally,
  1099. substitution occured only during writing of the final output file.
  1100. * Andreas Barth <aba@not.so.argh.org>:
  1101. Fix bad regex that didn't allow spaces in dependency field parsing.
  1102. It now directly matches what the c code expects. It previously was
  1103. allowing all of \S, which matched on '('.
  1104. Closes: #211660.
  1105. * Remove stale debug in debian/control that would have broken
  1106. installation on s390.
  1107. * We were calling our own local copy of dpkg-gencontrol, but the
  1108. system-installed copy of dpkg-shlibdeps. Now, both are called from
  1109. the build directory.
  1110. -- Adam Heath <doogie@debian.org> Fri, 19 Sep 2003 12:29:34 -0500
  1111. dpkg (1.10.13) unstable; urgency=low
  1112. * Fix parsing of deps when both () and [] are specified.
  1113. * Set $host_arch in controllib.pl:parsedep.
  1114. * dpkg-checkbuilddeps doesn't output the [] stuff when finding invalid
  1115. deps.
  1116. -- Adam Heath <doogie@debian.org> Wed, 17 Sep 2003 13:23:15 -0500
  1117. dpkg (1.10.12) unstable; urgency=low
  1118. * Fix dpkg-source output of build-depends lines.
  1119. -- Adam Heath <doogie@debian.org> Tue, 16 Sep 2003 13:43:45 -0500
  1120. dpkg (1.10.11) unstable; urgency=low
  1121. * dpkg no longer provides any BYHAND files. If you need the source
  1122. tarball, use the orig.tar.gz file available in the pool. The
  1123. precompiled tars were hold-overs from when debs were not standard
  1124. ar/tar files.
  1125. * Install /usr/share/doc/dpkg/pseudo-tags, which talks about the bug
  1126. titling we use to mark bugs for filtering in the Debian bts.
  1127. * Updated ca.po.
  1128. * Teach dpkg-source that ~ is legal in version numbers
  1129. * Add build-depends on sgml-base, and increase gettext build-depends to
  1130. 0.12.1-3.
  1131. * Updated config.sub and config.guess in cvs.
  1132. * Change use of strncpy in parsedb to memcpy. Closes: #160447
  1133. * No longer generate helpmsgs.{cc,h}.
  1134. * several controllib changes:
  1135. * Moved dependency parsing logic from dpkg-checkbuilddeps.
  1136. The dpkg-checkbuilddeps parser didn't support empty fields, while
  1137. the controllib parser did.
  1138. * All dependency fields parsed by controllib.pl support [arch]
  1139. specifiers. If the arch specifier doesn't apply for the current
  1140. arch, then the item will not be added to the internal list structure.
  1141. * Comment lines(that begin with '#') are removed during parsing.
  1142. * Store the original casing of field names, for use in error reporting.
  1143. * Store the original field's casing with 'o:' prepended in %fi.
  1144. * ballombe@merulo.debian.org:
  1145. dpkg-checkbuilddeps now handles empty fields. Closes: #111562
  1146. * Branden Robinson <branden@debian.org>:
  1147. support comments(first char on line begins with '#') in
  1148. debian/control. Closes: #191810
  1149. * Bastian Blank <waldi@debian.org>:
  1150. Allow for per-arch generated dependency fields. Closes: #170575
  1151. * Branden Robinson <branden@debian.org>:
  1152. Report the original casing of field names when they are unknown.
  1153. Closes: #177753
  1154. * Patch dpkg-buildpackage to call debian/rules -qn build-arch, and if
  1155. it's available, modify -B handling appropriately. If build-arch is not
  1156. available, then when -B was called, do *not* pass -B on to
  1157. dpkg-checkbuilddeps. Closes: #203097
  1158. * Frank Lichtenheld <frank@lichtenheld.de>:
  1159. Apply patch, to handle missing infodir.bak, and empty files. Closes:
  1160. #196361
  1161. * Change standard_startup and standard_shutdown into macros. Closes:
  1162. #200351.
  1163. * Andrew Suffield <asuffield@debian.org>:
  1164. Fix inverted test of eof in parsedb, while looking for eof after
  1165. field name. Closes: #198218
  1166. * Yann Dirson <dirson@debian.org>
  1167. Add set -e to dpkg-doc.postinst. Closes: #191261
  1168. * Michael Weber <michaelw@debian.org>:
  1169. dpkg --print-architecture now does gcc -dumpmachine instead of
  1170. --print-libgcc-file-name. Closes: #131893, #8241, #106793, #210285
  1171. * Daniel Silverstone <dsilvers@digital-scurf.org>:
  1172. Apply patch to change hashing function, and increase bin size, for
  1173. the package database. Closes: #206416
  1174. * Paul Eggert <eggert@CS.UCLA.EDU>:
  1175. Apply patch to make dpkg work with POSIX 1003.1-2001. Closes:
  1176. #204894
  1177. * Joey Hess <joeyh@debian.org>:
  1178. Fix "stripping trailing /" message from dpkg-statoverride. Closes:
  1179. #203782
  1180. * Sami Liedes <sliedes@cc.hut.fi>:
  1181. Increase filesdb bin size, and alter hashing function. Closes:
  1182. #179385
  1183. * Anthony Towns <aj@azure.humbug.org.au>:
  1184. Retry removing empty dirs during purge. Closes: #112386
  1185. * Darren Salt <linux@youmustbejoking.demon.co.uk>:
  1186. Add .cvsignore to dpkg-source's default diff ignore regex. Also fix
  1187. missing \ escape for .deps. Closes: #174013
  1188. * Koblinger Egmont <egmont@uhulinux.hu>:
  1189. Fix segfault with --status-fd. Closes: #173618
  1190. * Colin Watson <cjwatson@debian.org>,
  1191. Andrew Suffield <asuffield@debian.org>:
  1192. Add .svn, {arch}, and .arch-ids to dpkg-source -i default regex.
  1193. Closes: #169359
  1194. * Falk Hueffner <falk@debian.org>:
  1195. Added alphaev68-linux-gnu to archtable. Closes: #199360
  1196. * Elie Rosenblum <fnord@debian.org>:
  1197. Apply patch to support OpenBSD. Closes: #154277
  1198. * Geoff Richards <qef@laxan.com>:
  1199. Add --config to action section, and add as EXAMPLES section. Closes:
  1200. #208014, #115759
  1201. * Yann Dirson <dirson@debian.org>:
  1202. install-info --version and --help now display on stdout. Closes:
  1203. #154633
  1204. * Dan Jacobson <jidanni@dman.ddts.net>:
  1205. Mention what dpkg and dpkg-query -S will not find. Closes: #153096
  1206. * Sebastian Leske <sleske@enterprise.mathematik.uni-essen.de>:
  1207. Mention in dpkg(8) that downgrading a package can have serious
  1208. consequences. Closes: #61156
  1209. * Dan Jacobson <jidanni@dman.ddts.net>:
  1210. In dpkg-scanpackages(8), including small note that other tools might
  1211. use the generated Packages file. Closes: #208894
  1212. * Warren Turkal <wturkal@cbu.edu>:
  1213. Fix some typos in dpkg-source(1). Closes: #207259, #204123, #167426
  1214. * Dan Jacobson <jidanni@dman.ddts.net>:
  1215. Alter text in dselect(8), implying that other interfaces are available
  1216. for installing packages. Closes: #206164.
  1217. * Daniel Bonniot <bonniot@users.sourceforge.net>:
  1218. Note in start-stop-daemon(8) that --nicelevel takes an argument.
  1219. * Ruben Porras <nahoo82@telefonica.net>:
  1220. Remove duplicate 'can' in deb-control(5). Closes: #183840
  1221. * Dan Jacobson <jidanni@dman.ddts.net>:
  1222. Fix short description in dpkg-scansources(8). Closes: #175770
  1223. * Zefram <zefram@fysh.org>:
  1224. In dpkg(8), move dpkg-query options to their own subsection, like
  1225. dpkg-deb. Closes: #174971
  1226. * Thomas Hood <jdthood@yahoo.co.uk>
  1227. Add --dry-run and --simulate as synonyms to --no-act. Closes:
  1228. #165099
  1229. * Junichi Uekawa <dancer@netfort.gr.jp>:
  1230. Fix wrong reference to DEB_BUILD_GNU_SYSTEM on --host in
  1231. dpkg-architecture(1). Closes: #163621
  1232. * Michael Klein <michael.klein@puffin.lb.shuttle.de>:
  1233. s/Usuaully/Usually/ in deb-control.5. Closes: #161819
  1234. * Joey Hess <joeyh@debian.org>:
  1235. Removed reference in dselect(8) about recommends not being handled
  1236. well. Closes: #157973
  1237. * Andrew Suffield <aps100@doc.ic.ac.uk>:
  1238. s/dpkg-source/dpkg-parsechangelog/ in dpkg-parsechangelog -h.
  1239. Closes: #155822
  1240. * Matej Vela <vela@debian.org>:
  1241. Unhighlight "May be repeated multiple times." in dpkg-source(1).
  1242. Closes: #151845
  1243. * Jordi Mallach <jordi@debian.org>:
  1244. Make all actions in dpkg-deb -h lower case. Closes: #150642
  1245. * Alexander Hvostov <root@aoi.dyndns.org>:
  1246. Add -g|--group to start-stop-daemon, and document properly. Closes:
  1247. #127342
  1248. * Szerb Tamas <toma@mlf.linux.rulez.org>:
  1249. s/THANKS/THANKS.gz/ in dpkg(8). Closes: #91348
  1250. * "James R. Van Zandt" <jrv@vanzandt-pc.mitre.org>:
  1251. In dpkg(8), mention running dselect, install after --set-selections.
  1252. Closes: #175236
  1253. * Yann Dirson <dirson@debian.org>:
  1254. Remove disabled --command-fd from help. Closes: #169619
  1255. * Tobias Burnus <tburnus@physik.fu-berlin.de>:
  1256. Apply patch to update-alternatives that provides --set and --remove-all
  1257. commands. Closes: #133745.
  1258. * Osamu Aoki <debian@aokiconsulting.com>:
  1259. Add --all to update-alternatives, that calls --config on all
  1260. alternatives. Closes: #126621
  1261. * Dan Jacobson <jidanni@jidanni.org>:
  1262. Alter --config prompt, to be more clear, that one must 'press' enter to
  1263. accept the default. Closes: #203557
  1264. * Peter Moulder <pmoulder@bowman.csse.monash.edu.au>:
  1265. Fix some -w issues in update-alternatives. Closes: #137313
  1266. * Eduard Bloch <edi@gmx.de>:
  1267. Apply patch to check whether the target path exists on removing.
  1268. Closes: #37254
  1269. * Colin Walters <walters@debian.org>:
  1270. After opening files, set binmode. Closes: #175363
  1271. -- Adam Heath <doogie@debian.org> Tue, 16 Sep 2003 12:52:11 -0500
  1272. dpkg (1.10.10) unstable; urgency=low
  1273. * Update archtable for hurd. Closes: #187509.
  1274. * Make the dpkg-iasearch conflicts versioned. Closes: #170698.
  1275. * Surround sed call with '' in Makefile.in. Closes: #187534.
  1276. * Strip trailing / from the file args in dpkg-statoverride. Closes:
  1277. #184239.
  1278. * Modified to use autotools-dev. Closes: #179656.
  1279. * Add netbsd support. Closes: #179658, #179659.
  1280. * Support hypenated values in dpkg-architeture. Closes: #179661
  1281. * No longer managed the /usr/doc symlinks.
  1282. -- Adam Heath <doogie@debian.org> Sat, 26 Apr 2003 15:10:24 -0500
  1283. dpkg (1.10.9) unstable; urgency=low
  1284. * Fix dereference in main/help.c:cu_closefd(), which was the cause of
  1285. close(random number) on most arches, but close(0) on s390x.
  1286. * Add s390x to archtable. Closes: #160976.
  1287. -- Adam Heath <doogie@debian.org> Sun, 15 Sep 2002 13:21:38 -0500
  1288. dpkg (1.10.8) unstable; urgency=low
  1289. * Make the multiline regex have an upper bound, instead of being
  1290. unbounded, as newer perls have a larger stack frame, which cause them
  1291. to segfault quicker with larger inputs. Closes: #159756.
  1292. -- Adam Heath <doogie@debian.org> Thu, 5 Sep 2002 16:32:01 -0500
  1293. dpkg (1.10.7) unstable; urgency=low
  1294. * Fix double free in modstatdb_init, in the case that modstatdb_shutdown
  1295. was called previously. Closes: #159515.
  1296. -- Adam Heath <doogie@debian.org> Tue, 3 Sep 2002 18:59:19 -0500
  1297. dpkg (1.10.6) unstable; urgency=low
  1298. * Don't call nffreeall, in any of the c/c++ programs. It appears dselect
  1299. slightly corrupts it's memory enough that it can't be freed without
  1300. segfaulting. Closes: #159023.
  1301. -- Adam Heath <doogie@debian.org> Sun, 1 Sep 2002 00:19:18 -0500
  1302. dpkg (1.10.5) unstable; urgency=low
  1303. * Fix segfault in md5sum if the file being checked doesn't exist.
  1304. Closes: #154503.
  1305. * Fix extraction of md5sum in dpkg-scanpackages. Closes: #153769.
  1306. * Handle directories better in md5sum. Closes: #157453.
  1307. * Fix read past buffer in lib/nfmalloc.c. Closes: #157304.
  1308. * Fix several read pass buffer bugs, and a memleak. Closes: #155362.
  1309. * Fix segfault when --auto-deconfigure is given. Closes: #157762.
  1310. * Allow spaces between the end of a version, and the trailing ')'.
  1311. Closes: #154898.
  1312. * Fixes for HURD: Closes: #156545
  1313. * Add i386-gnu0.3 to archtable.
  1314. * Fix handling of static compiles, with regard to zlib.
  1315. * Previous install-infos(before 1.10) handled multiple dir file entries,
  1316. because they would copy the entire stanza unmodified. The newest
  1317. version does not do this, as it reformats the options, and thereby
  1318. only takes the first line. So, we now split all the lines from the
  1319. stanza, and process them all. Closes: #147492.
  1320. * Fix corruption of available file, caused by use of memory that was
  1321. previously freed. Closes: #154257.
  1322. * Fix several minor memleaks.
  1323. * Remove /usr/sbin/start-stop-daemon. Closes: #156437.
  1324. -- Adam Heath <doogie@debian.org> Thu, 29 Aug 2002 16:43:15 -0500
  1325. dpkg (1.10.4) unstable; urgency=low
  1326. * Remove -ffunction-sections and -fdata-sections. Closes: #152130.
  1327. * Install archtable into /usr/share/dpkg/.
  1328. -- Adam Heath <doogie@debian.org> Sun, 14 Jul 2002 15:17:56 -0500
  1329. dpkg (1.10.3) unstable; urgency=low
  1330. * Move dselect.cfg to dselect package. Closes: Bug#152132
  1331. * Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg. Closes:
  1332. #152161.
  1333. * Fix test inversion in start-stop-daemon, when checking the pid given in
  1334. a pid file. Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
  1335. Closes: #152270.
  1336. * If in --test mode, and --stop is given, increment n_killed, so that
  1337. start-stop-daemon returns the proper exit value. Thanks Thomas Morin
  1338. <thomas.morin@enst-bretagne.fr>. Closes: #151992.
  1339. -- Adam Heath <doogie@debian.org> Thu, 11 Jul 2002 22:58:43 -0500
  1340. dpkg (1.10.2) unstable; urgency=low
  1341. * Make configuration files in $HOME work again
  1342. * dpkg + dpkg-static conflict with dpkg-dev << 1.9, to fix md5sum error
  1343. in dpkg-source. Closes: #151691.
  1344. * Remove -Z from patch call, in dpkg-source, as it makes patch warn about
  1345. missing timestamps. Closes: #151965
  1346. * Install debian/dselect.conffiles.
  1347. -- Adam Heath <doogie@debian.org> Thu, 4 Jul 2002 21:08:09 -0500
  1348. dpkg (1.10.1) unstable; urgency=low
  1349. * Add conflict with dpkg-iasearch which intruded on our namespace.
  1350. * Replace manpages-de which includes one of our manpages. Closes: #151485
  1351. * Don't always call autoheader when building. Closes: #151471
  1352. * Fix double conflict in dpkg. Closes: Bug#151581
  1353. * Move dselect methods to dselect package.
  1354. * dpkg-checkbuilddeps no longer checks for build-essential. dpkg should
  1355. not hardcode Debian policy.
  1356. * Make dpkg-genchanges accept ~ as part of a package filename.
  1357. Closes: Bug#150739
  1358. * Move dpkg.cfg and dselect.cfg manpages into dpkg package. Closes: Bug#132901
  1359. -- Wichert Akkerman <wakkerma@debian.org> Tue, 2 Jul 2002 12:34:07 +0200
  1360. dpkg (1.10) unstable; urgency=low
  1361. * dpkg now reorders symlinks when extracting debs. However, this is also
  1362. still done when building debs. After a stable release of Debian has
  1363. occurred with this modified dpkg, the reordering when building can be
  1364. removed.
  1365. * Fixed upper/lowercase problems with package names. Closes: Bug#58091
  1366. (and 3 others).
  1367. * Add Russian manual pages
  1368. * Fix n in dselect package list (performs searchagain now)
  1369. * Fix layout problem in dpkg-divert manpage. Closes: Bug#103667
  1370. * When a package is set to hold, and a reinstallation is requested,
  1371. -E will not properly skip it. Closes: #45787.
  1372. * Make dpkg-checkbuilddeps use dpkg-architecture. Closes: Bug#104230
  1373. * Improve dpkg-archtecture documentation. Closes: Bug#104232
  1374. * Update German translation. Closes: Bug#97239
  1375. * Update Polish translation. Closes: Bug#115783
  1376. * Update French translation.
  1377. * Update Brazilian translation.
  1378. * Update Danish translation.
  1379. * Update Galician translation.
  1380. * Update Portuguese translations.
  1381. * Add Catalan translation
  1382. * Add German md5sum manpage
  1383. * Add Brazilian update-alternatives manpage. Closes: Bug#122132
  1384. * Improve dselect manpage. Closes: Bug#103839
  1385. * dpkg-name(1) no longer mentions the non-existing dpkg(5) manpage.
  1386. Closes: Bug#104214
  1387. * Improve handling of Recommends and Suggests in dselect. Closes: Bug#34942
  1388. * Add per-user configuration files. Closes: Bug#103845
  1389. * Split dselect into its own package. dpkg Pre-Depends on it
  1390. to make sure no weird things happen during an upgrade but this
  1391. will allow us to make dselect option at some point in the future.
  1392. Closes: #114249.
  1393. * Make colours in dselect user-configurable. Closes: Bug#103994
  1394. * Make Q do an abort in the method selection menu to make things more
  1395. consistent with the package list
  1396. * Fix test for nice(2) failure in start-stop-daemon. Closes: Bug#104561
  1397. * Improve the dselect helpscreen a bit. Closes: Bug#72634
  1398. * New version comparison routine that can handle arbitrarily large numbers
  1399. and accepts `~' as a low-sorting character. Closes: Bug#93386
  1400. * dselect now accepts regular expressions when searching for packages
  1401. and can search in package descriptions as well.
  1402. Closes: Bug#81009,#83139
  1403. * Move query commands into a seperate dpkg-query command. For the old options
  1404. (-L,-l,-s,-S) dpkg will still call it for you.
  1405. * Add configurable package listing support to dpkg-query
  1406. * Handle window resize in dselect main menu. Closes: Bug#98275
  1407. * update-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
  1408. * Add --showformat and --show options to dpkg-deb and dpkg-query to
  1409. allow one to customize the output format
  1410. * several install-info cleanups:
  1411. * Move /usr/info/dir to /usr/share/info/dir. Closes: #67174.
  1412. * If /usr/share/info doesn't exist, print a message saying so,
  1413. instead of the confusing "couldn't lock" error. Closes: #2531.
  1414. * If /usr/share/info/dir doesn't exist, or is empty, try to copy the
  1415. backup from /var/backups/infodir.bak. Closes: #121309.
  1416. * Add a --remove-exactly option, and allow for relative filenames.
  1417. Closes: #92650.
  1418. * Use the section from the .info file if --section is not given.
  1419. Closes: #76100.
  1420. * Error messages now include the filename being processed.
  1421. Closes: #66735
  1422. * /usr/share/info/dir now has it's entries formatted to even widths.
  1423. Closes: #11228
  1424. * --calign|--align|--maxwidth are now ignored.
  1425. * strip enoent as well. Closes: Bug#112378
  1426. * Fix format error in Dutch translation. Closes: Bug#113120
  1427. * When parsing stdin, md5sum now displays '-' as the filename, to match
  1428. textutils md5sum. Closes: #121489.
  1429. * Apply patch from bug, to give update-alternatives a --list command.
  1430. Closes: #120924.
  1431. * Make dpkg-checkbuilddeps always check for build-essential.
  1432. Closes: Bug#118420.
  1433. * Use space seperated output instead of comma seperated in
  1434. dpkg-checkbuilddeps
  1435. * Update default ignore expression in dpkg-source to also match *~ and
  1436. *.swp in subdirs. Closes: Bug#127458
  1437. * Handle errors when verifying md5sums. Closes: Bug#102367
  1438. * dpkg-source now uses reliable timestamps for changed files.
  1439. Closes: Bug#105750
  1440. * Fix typo in start-stop-daemon help message. Closes: Bug#131439
  1441. * update-alternative exits with a non-zero exit code when displaying
  1442. a non-existing alternative. Closes: Bug#131496
  1443. * Use gzip -c in install-info. Closes: Bug#131758
  1444. * start-stop-daemon works on HP-UX now. Closes: Bug#130130
  1445. * Fix dselect spin when run without input. Closes: Bug#132476
  1446. * Update-alternatives now correctly restores an alternative to auto mode
  1447. when removing a manually selected alternative. Closes: Bug#132632
  1448. * Copy bugs and origin information into status file. Closes: Bug#132714
  1449. * Improve wording of update-alternatives --config text. Closes: Bug#133035
  1450. * Add manpages for dpkg.cfg and dselect.cfg. Closes: Bug#132901
  1451. * Improve test for illegal packagename for dpkg-gencontrol -p option
  1452. * Fix segfault when getenv("PATH") returns null. Closes: Bug#136349
  1453. * Add Large File Summit extensions. Closes: Bug#130509
  1454. * Fix typo in dpkg-source manpage. Closes: Bug#141906
  1455. * Re-fix handling of multiple blank lines in control. Closes: Bug#143117
  1456. * Document --force-confmiss and --force-bad-verify. Closes: Bug#146855
  1457. * Drop upgrade compat stuff in dpkg postinst for ancient versions (over
  1458. 5 years old)
  1459. * Always set CLOEXEC on the lock fd. Closes: Bug#147872
  1460. * Clean up tmp files when ctrl-c is sent to dpkg-source. Closes:
  1461. Bug#58653.
  1462. * dpkg-source no longer requires exact case matches for fields in
  1463. debian/control. Closes: Bug#139159.
  1464. * dpkg-scanpackages now gives proper case for Source and Installed-Size.
  1465. Closes: Bug#119532.
  1466. * dpkg-architecture: s/build on/built on/; same for 'build for'.
  1467. Closes: Bug#140441.
  1468. * cl-debian.pl now recognizes emergency as valid in changelogs.
  1469. Closes: Bug#138013.
  1470. * Properly count recursive expansion of variables, instead of just
  1471. counting all variable expansions. Closes: #144121.
  1472. * Add -I<filename> to dpkg-buildpackage and dpkg-source, to excludes
  1473. files from tar, when building a native package. Closes: Bug#75947.
  1474. * Close the old debian/files file, before doing a rename. Closes:
  1475. Bug#111503.
  1476. * Fix documentation of -v<version> for dpkg-parsechangelog, removing the
  1477. requirement that the version has to be in the changelog. Closes:
  1478. Bug#117968.
  1479. * Fix typo in dpkg-source(1), s/-su/-sU/. Closes: Bug#126340.
  1480. * Add dpkg-scansources to dpkg-scanpackages(8). Closes: Bug#147924.
  1481. * Change /usr/info into a symlink to /usr/share/info if possible
  1482. -- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Jun 2002 21:53:15 +0200
  1483. dpkg (1.9.21) unstable; urgency=low
  1484. * Fix corrupt Swedish translations that would some error messages display
  1485. incorrectly.
  1486. * Enable --force-overwrite by default in /etc/dpkg/dpkg.cfg
  1487. * dpkg.cfg is now no longer a conffile. This means the installer can
  1488. change defaults depending on how an install is done
  1489. * Detect truncated debs, and abort the unpack. Closes: #138569.
  1490. * Improve dpkg(8) --force documentation
  1491. * Fix error in Russian dselect translation
  1492. -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 May 2002 19:42:29 +0200
  1493. dpkg (1.9.20) unstable; urgency=medium
  1494. * Fix assertion when --auto-deconfigure is set. Closes: #137765.
  1495. * Fix segfault discovered by fixing the above.
  1496. * Fix segfault when getenv("PATH") returns null. Closes: #136349
  1497. * Recompiled against updated zlib, to fix possible security issue. Also
  1498. bumped build-depends to match. Closes: #137931(grave)
  1499. -- Adam Heath <doogie@debian.org> Sun, 17 Mar 2002 02:52:44 -0600
  1500. dpkg (1.9.19) unstable; urgency=medium
  1501. * install-info continues to read all data from a pipe, until EOF.
  1502. Closes: #99816(grave).
  1503. * Add Catalan translation
  1504. * Update Danish translation. Closes: Bug#131869
  1505. * Update French translation.
  1506. * update-alternative exits with a non-zero exit code when displaying
  1507. a non-existing alternative. Closes: Bug#131496
  1508. * Changed Maintainer to debian-dpkg@lists.
  1509. * Fix "Up to date installed packages" for polish translation. Closes:
  1510. #116398.
  1511. * Swap updated/up-to-date polish translations(they were reversed).
  1512. Closes: #117583, #102961.
  1513. * Mark /etc/alternatives/README as a conffile.
  1514. * Strip .note, .comment, and /usr/lib/dpkg/enoent.
  1515. * Make dpkg-gencontrol not warn about Uploaders. Closes: #111090.
  1516. -- Adam Heath <doogie@debian.org> Sat, 2 Feb 2002 11:47:34 -0600
  1517. dpkg (1.9.18) unstable; urgency=low
  1518. * Fix MD5Sum corruption when upgrading a package. Closes: Bug#113961.
  1519. * Add Wichert and I to debian/control:Uploaders.
  1520. -- Adam Heath <doogie@debian.org> Sat, 3 Nov 2001 00:31:00 -0600
  1521. dpkg (1.9.17) unstable; urgency=low
  1522. * updated-rc.d moved to the sysvinit package. Closes: Bug#108887,#109282
  1523. -- Wichert Akkerman <wakkerma@debian.org> Wed, 22 Aug 2001 01:24:52 +0200
  1524. dpkg (1.9.16) unstable; urgency=low
  1525. * Revert architecture-change to dpkg-source from 1.9.11, see ChangeLog
  1526. for details.
  1527. -- Wichert Akkerman <wakkerma@debian.org> Thu, 5 Jul 2001 22:42:11 +0200
  1528. dpkg (1.9.15) unstable; urgency=low
  1529. * Change policy of handling dscformat in dpkg-source
  1530. * Fix the arglist construction for maintainer scripts
  1531. * Revert dscformat to 1.0 since older dpkg-source versions do not have
  1532. the new policy. In the future (starting at format 2.0 to maintain
  1533. compatibility with old dpkg-source implementations) minor changes to
  1534. the dscformat have to be fully backward and forward compatible.
  1535. -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Jun 2001 16:41:43 +0200
  1536. dpkg (1.9.14) unstable; urgency=low
  1537. * Make the Uploaders field in a .dsc file optional.
  1538. * Disabled sanity checking of source packages.
  1539. -- Adam Heath <doogie@debian.org> Mon, 25 Jun 2001 02:22:40 -0500
  1540. dpkg (1.9.13) unstable; urgency=medium
  1541. * Add a -W option to dpkg-source(and the other utils, where it is just
  1542. passed thru), to turn certain errors into warnings(of which, only
  1543. one is changed, namely, the 'tar doesn't contain preceeding directory'
  1544. error). Closes: #101813, and partially 101845.
  1545. * Don't error out if the files in the tar have leading './', for
  1546. dpkg-source. (another partial close of 101845).
  1547. * Handle the case where a single directory exists in the orig.tar.gz, but
  1548. it is NOT of the form <pkg>-<ver>. Closes: #101845.
  1549. * Set LC_ALL in dpkg-source when we call external programs when we are
  1550. going to parse their output. Another bug from 101845.
  1551. * Handle stating of truncated cpio filenames(100 char limit, bah), in
  1552. dpkg-source. Another bug from 101845.
  1553. * Add support for an Uploaders field, which is read from the first
  1554. paragraph of debian/control, and propagated to the .dsc. This lists
  1555. the people allowed to upload a package. If it is not set, then the
  1556. value of the Maintainer is placed into this field of the .dsc. This
  1557. bumps the .dsc format to 1.1. Closes: #101815.
  1558. * Handle symlinks in the tarball, and don't error out if found.
  1559. * in controllib, make warnerrors default to warnings. Affects
  1560. dpkg-source. This will be changed to be errors in the future.
  1561. -- Adam Heath <doogie@debian.org> Sun, 24 Jun 2001 13:48:52 -0500
  1562. dpkg (1.9.12) unstable; urgency=medium
  1563. * Fix do_script() bug. Closes: Bug#101552
  1564. * Fix building and extracting of certain kinds of source packages.
  1565. Closes: #101684.
  1566. * Added Colin Watson to THANKS.
  1567. -- Adam Heath <doogie@debian.org> Wed, 20 Jun 2001 18:27:03 -0500
  1568. dpkg (1.9.11) unstable; urgency=low
  1569. * The "Hang on to your hats, it gets bumpy from here." release.
  1570. * Trim trailing spaces from package names when checking builddeps.
  1571. Closes: #101304.
  1572. * Apply patch from bug to fix logic error that kept everything but
  1573. Build-Deps from working in checkbuilddeps. Closes: #101511.
  1574. * Apply patch to correctly check the output of gcc on hurd, for
  1575. dpkg-architecture. Closes: #99874.
  1576. * The internal pod docs in dpkg-architecture were updated to reflect
  1577. that -f was no longer implied when -q was given, but the build system
  1578. wasn't generating new documentation. Closes: #100997.
  1579. * deb(5) now has a see-also for deb-old(5). Closes: #99620.
  1580. * Fix dpkg-shlibdeps infinite directory recursion thru symlinks.
  1581. Closes: #97622.
  1582. * Set the Architecture to 'source' only when doing source only uploads
  1583. in the generated changes files. Closes: #100144.
  1584. * Document -nc in the dpkg-buildpackage manpage. Closes: #101038.
  1585. * Make dpkg-source work with GNU md5sum. Closes: #97666.
  1586. * in dpkg-source, when both arch: all and arch: <arch> packages exist in
  1587. debian/control, don't promote the source arch: to any, but only list
  1588. all and <arch>. Closes: #94608
  1589. * Apply patch from Colin Watson: Closes: #89679
  1590. * Reset SIGPIPE to DEFAULT when forking gzip.
  1591. * set LANG to C before execing cpio, as we parse its output.
  1592. * In checktarcpio() and checktarsane(), use the previously open pipes,
  1593. instead of the opening files on disk(which was the old, ancient way).
  1594. * Improve the output parsing of tar in checktarsane().
  1595. * warn instead of die when find returns an error(which happens if there
  1596. is a dangling symlink, because we use -follow). Closes: #51479.
  1597. * Change list of allowed urgencies in debian/changelog to: low, medium,
  1598. high, and critcial. Closes: #94475.
  1599. * Error out if an illegal package name is used in dpkg-gencontrol.pl.
  1600. Closes: #61211
  1601. * Apply patch from Marcus Brinkmann to dpkg-buildpackage: Closes:
  1602. #98201.
  1603. * Option -a implies option -d.
  1604. * Set ARCH correctly to host architecture, rather than build arch.
  1605. -- Adam Heath <doogie@debian.org> Tue, 19 Jun 2001 22:15:25 -0500
  1606. dpkg (1.9.10) unstable; urgency=low
  1607. * Fix [arch] parsing, and handle extra spaces better. Closes: #100512,
  1608. #101031.
  1609. * Apply patch from bug, to fix cleanup of dpkg-divert temp files.
  1610. Closes: #100474.
  1611. * Swap j/k keys on the main menu, so they function like the package
  1612. selection screen(and like vi). Closes: #100502.
  1613. * Multiple fixes in bug: Closes: #99892.
  1614. * s/DEAD_JOE/DEADJOE/ in dpkg-source.
  1615. * Switch to auto mode if alternative symlink is missing.
  1616. * Update Spanish translation
  1617. -- Adam Heath <doogie@debian.org> Sat, 16 Jun 2001 14:57:45 -0500
  1618. dpkg (1.9.9) unstable; urgency=low
  1619. * The leading and trailing spaces patch in the last upload had some
  1620. issues with trailing spaces. This fixes them. No bug to close, as the
  1621. bts is still down.
  1622. -- Adam Heath <doogie@debian.org> Wed, 6 Jun 2001 22:36:57 -0500
  1623. dpkg (1.9.8) unstable; urgency=low
  1624. * Remove leading and trailing spaces from versions, and check for
  1625. embedded spaces, inside dpkg. Closes: #99186.
  1626. * Handle varied use of spaces in dpkg-checkbuilddeps. Closes: #98899.
  1627. * Reset SIGPIPE back to default, in dpkg-source. Closes: #98563.
  1628. * Remove bogus $! check from dpkg-architecture. Closes: #99428.
  1629. -- Adam Heath <doogie@debian.org> Sat, 2 Jun 2001 15:15:04 -0500
  1630. dpkg (1.9.7) unstable; urgency=low
  1631. * If a new file doesn't exist on disk, but is a going to be installed as
  1632. a directory, then don't error out. Closes: Bug#17381.
  1633. * Update japanese manpages. Closes: Bug#97831.
  1634. * Update it.po. Closes: Bug#98273.
  1635. * Fix bad cleanup in dpkg-divert. Closes: Bug#98578,#98828,#98831.
  1636. -- Adam Heath <doogie@debian.org> Mon, 28 May 2001 18:59:03 -0500
  1637. dpkg (1.9.4) unstable; urgency=low
  1638. * Oops. EOF_mmap incorrectly detecting the end of the data block.
  1639. Closes: Bug#95981.
  1640. * After fixing the above bug, and using debootstrap to build a sid
  1641. chroot, I discovered that my previous dependency cycle fix could cause
  1642. segfaults in some situations.
  1643. -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 23:04:46 -0500
  1644. dpkg (1.9.3) unstable; urgency=low
  1645. * Fix compiles on ppc. Closes: Bug#95918.
  1646. -- Adam Heath <doogie@debian.org> Tue, 1 May 2001 00:29:45 -0500
  1647. dpkg (1.9.2) unstable; urgency=low
  1648. * Recompile, to fix incorrect path 1.9.1/dpkg-divert. Closes: Bug#95845
  1649. -- Adam Heath <doogie@debian.org> Mon, 30 Apr 2001 14:21:28 -0400
  1650. dpkg (1.9.1) unstable; urgency=low
  1651. * Fix segfault with empty status and available, and when missing a
  1652. trailing new line. Closes: Bug#95496
  1653. * Make dpkg-shlibdeps not care if dpkg --search return with an error.
  1654. Closes: Bug#95568
  1655. * Fix corruption of user-defined fields in status and available.
  1656. Closes: Bug#95567.
  1657. * Changed dpkg.cfg to include no-debsig by default, as no debs are
  1658. currently signed, and we get false errors when debsig-verify is
  1659. installed. This will be removed in the future, when the archive tools
  1660. support package signatures. Closes: Bug#95573
  1661. * dpkg-buildpackage should only check for valid signinterface if the
  1662. user specifies one. Closes: Bug#95598
  1663. * Fix removing of diversions. Closes: Bug#95655
  1664. * Fix md5sum -c. Closes: Bug#95586
  1665. -- Adam Heath <doogie@debian.org> Sat, 28 Apr 2001 16:28:21 -0500
  1666. dpkg (1.9.0) unstable; urgency=low
  1667. * Things should mostly work OpenBSD 2.8 as well now
  1668. * Added a --status-pipe option.
  1669. * Fixed several memleaks.
  1670. * Profiled dpkg.
  1671. * Reworked lib/parse.c:parsedb(). Instead of using getc(), then
  1672. calling varbufaddc(), it now reads the entire file at once into a
  1673. huge buffer, then moves pointers around, to do the parsing. This
  1674. gave a speedup of 33% on a dual celeron 333, when reading status and
  1675. available.
  1676. * various other speedups.
  1677. * Removed all --smallmem code, as smallmem and largemem now actually
  1678. use about the same amount of memory, and largemem is faster. Both
  1679. --largemem and --smallmem are now obselete options, and will print
  1680. a warning if used. Closes: Bug#84905, #67528
  1681. * Initialize unitialized variables. This should solve several
  1682. segfaults. Closes: Bug#25317(plus 9 others, thru the beauty of
  1683. merges)
  1684. * Found that when working with dependency cycles, and part of the cycle
  1685. was a provide, the provider was not being considered, so the cycle
  1686. could not be broken. Closes: Bug#87985(and 3 others)
  1687. * Update German translation, Closes: Bug#80529,#80532,#87581
  1688. * Update French translation, Closes: Bug#65284,#85035,#87238
  1689. * Update Japanese translation, Closes: Bug#93873
  1690. * Updated all other translations (but no bugs filed)
  1691. * Add Danish translation
  1692. * Remove spurious '%s' in Polish translation, Closes: Bug#74814
  1693. * Add French manpages, courtesy of Philippe Batailler
  1694. * Ingore vim swapfiles in dpkg-source, Closes: Bug#81630
  1695. * remove --import option from dpkg-statoverride, Closes: Bug#81358
  1696. * Replace nfmalloc implementation with obstack. Added obstack.[ch] to
  1697. optlib, for non-GNU systems.
  1698. * dpkg-divert only allows absolute filenames now. Closes: Bug#82419
  1699. * Handle diffs from non-existing files to existing files. Closes: Bug#82708,
  1700. #90982.
  1701. * Small fixes to the buildsystem. Closes: Bug#84361
  1702. * Fix dpkg-statoverride --update for things other then plain files.
  1703. Closes: Bug#84449
  1704. * Fix race with source directory disappearing in dpkg-source.
  1705. Closes: Bug#45511
  1706. * Fix manpage for dpkg-gencontrol. Closes: Bug#84625
  1707. * Add -n option for dpkg-gencontrol to specify a filename. Closes: Bug#75796
  1708. * Use POSIX glob instead of regexp in debian/rules. Closes: Bug#83042,
  1709. #84582
  1710. * fix typo in usage message for dpkg-divert, Closes: Bug#85977
  1711. * Use full path for argv[0] when calling scripts. Closes: Bug#68783
  1712. * Add ia64 support to dpkg-architecture.
  1713. * Minor script changes, Closes: Bug#87485
  1714. * Stop dpkg-genchanges from complaining about missing packages
  1715. when doing a source-only build. Closes: Bug#87571,#15644,#25496
  1716. * Various dpkg-architecture cleanups. Closes: Bug#87505
  1717. * Modify dpkg-architecture to handle gcc versions containing letters.
  1718. Closes: Bug#83083
  1719. * dpkg-buildpackage updates: Closes: Bug#87572,#85847
  1720. + make -C work properly
  1721. + fix test for gpg secret keyring
  1722. + improve source messages
  1723. + skip signing pause when building unsigned packages
  1724. + test for invalid signinterface. Closes: Bug#87579
  1725. + remove debsign support, it's useless and doesn't work
  1726. + Use correct architecture when naming .changes file. Closes: Bug#88015
  1727. * Fix wording in dpkg-statoverride manpage for --add. Closes: Bug#85080
  1728. * Fix typo in start-stop-daemon manpage. Closes: Bug#88225
  1729. * Add dpkg-checkbuilddeps to check if build dependencies are satisfied
  1730. and modify dpkg-buildpackage to call it if wanted.
  1731. Closes: Bug#86453,#83812,#60717,#74372,#67896,#60717,#13961
  1732. * dpkg-parsechangelog can read a changelog from stdin now. Closes: Bug#80142
  1733. * Fix confusing wording for dpkg-buildpackage -uc option in manpage.
  1734. Closes: Bug#83468
  1735. * dpkg-statoverride now exits with exitcode 1 if we do a --list but don't
  1736. output anything. Closes: Bug#84328
  1737. * Remove Linux reference from all scripts, they should run fine on
  1738. other OSes as well.
  1739. * Mark last argument in dpkg-scanpackages usage info as optional.
  1740. Closes: Bug#86658
  1741. * Fix cache in dpkg-scanpackages version comparison. Closes: Bug#90722
  1742. * Fix formatting error in dpkg-source.1. Closes: Bug#82723
  1743. * Change dpkg-gencontrol to fix comma-related syntax errors after
  1744. processing substvars. Closes: Bug#92908
  1745. * Verify package signatures if debsig-verify is installed. Closes: Bug#37017
  1746. * Handle window resize in dselect main menu. Closes: Bug#93559
  1747. * Initialize all parts of the package record. This should fix several
  1748. segfaults people have been seeing in dpkg. Closes: Bug#90328.
  1749. * Apply patch from bug#86847, that escapes intl chars in filenames.
  1750. Closes: Bug#83752, #85040, #86847, #89000.
  1751. * Errors during dpkg -s(and other similiar commands) are now printed
  1752. on stderr. Closes: Bug#88987.
  1753. * Add a --retry option to start-stop-daemon. Closes: Bug#75139
  1754. * Fix regeps to extract Closes magic from a changelog so the #
  1755. is really optional. Closes: Bug#94474
  1756. * Remove useless statement from dpkg-shlibdeps. Closes: Bug#90516
  1757. * Make the debian changelog parser identify itself with $progname.
  1758. Closes: Bug#89409
  1759. * Give a syntax error when we get an unexpected PGP signature in control
  1760. files. Closes: Bug#75562
  1761. * Change dpkg manpage to reflect that --force-statoveride is no enabled
  1762. by default. Closes: Bug#95023
  1763. * Handle dangling symlinks, by ignoring error code 1 from find, when
  1764. processing --recursive. Closes: Bug#4784
  1765. * dpkg -L, -S, -l, -s, and -p now return an error code if any package
  1766. does not exist. Closes: Bug#4974, #72406
  1767. * dselect has a configuration file as well now
  1768. * Get ENOENT value at runtime in dpkg-divert instead of hardcoding it.
  1769. Closes: Bug# 31620
  1770. * Fix wrong ENOENT test in dpkg-divert. Closes: Bug#95088
  1771. * Add support for more SuperH variants (sh[34]{,eb}-linux-gnu)
  1772. * Fix formating and a typo in the dpkg manpage
  1773. * Document the dpkg.cfg configuration file in dpkg(8)
  1774. -- Wichert Akkerman <wakkerma@debian.org> Thu, 26 Apr 2001 12:39:16 +0200
  1775. dpkg (1.8.3.1) unstable; urgency=low
  1776. * Revert change to nfmalloc.c that was causing SIGBUS on sparc.
  1777. -- Ben Collins <bcollins@debian.org> Sat, 13 Jan 2001 08:52:11 -0500
  1778. dpkg (1.8.3) unstable; urgency=low
  1779. * Do chown before chmod in dpkg-statoverride, Closes: Bug#81943
  1780. * Fix recusion in dpkg-shlibdeps, Closes: Bug#81322
  1781. * Really completely revert dpkg-source patches which broke backwards
  1782. compatibility
  1783. -- Wichert Akkerman <wakkerma@debian.org> Fri, 12 Jan 2001 00:02:22 -0800
  1784. dpkg (1.8.2) unstable; urgency=low
  1785. * Don't attempt to read from an input source when we only want 0 bytes.
  1786. Also handle buggy systems that return EAGAIN instead of EINTR. Closes:
  1787. #81881.
  1788. -- Adam Heath <doogie@debian.org> Thu, 11 Jan 2001 00:43:50 -0600
  1789. dpkg (1.8.1.1) unstable; urgency=low
  1790. * Apply patch from bug to fix badly generated diffs(in some
  1791. circumstances). Closes: #81152
  1792. -- Adam Heath <doogie@debian.org> Sat, 6 Jan 2001 16:07:33 -0600
  1793. dpkg (1.8.1) unstable; urgency=low
  1794. * Make --name a valid option. Closes: #31206, #51953.
  1795. * dpkg-deb -I <pkg> <control> works again
  1796. * Update Swedish translation
  1797. -- Wichert Akkerman <wakkerma@debian.org> Thu, 4 Jan 2001 19:31:13 +0100
  1798. dpkg (1.8.0) unstable; urgency=low
  1799. * Add -k|--symlink option to dpkg-name. Closes: #35040
  1800. * Made the accelerator keys in dselect's main menu separate options, so
  1801. that they can be translated separately. Closes: #50955.
  1802. * Added depends on sysvinit (>= 2.72), so that we can make sure that
  1803. /etc/rcS.d exists. Closes: #55037.
  1804. * update-rc.d: Changed documentation and help, as -f only applies during
  1805. remove. Closes: #55049.
  1806. * Added a --force-all option. Closes: #61354.
  1807. * Format help string for --abort-after like other option help strings.
  1808. Closes: #62464.
  1809. * Fix dselect methods to pass admindir to dpkg from dselect.
  1810. * Minor tweak so that when patch 2.5.4 is manually used to apply a diff,
  1811. it doesn't get applied multiple times. Closes: #65021
  1812. * Add --nicelevel to start-stop-daemon, to alter a programs priority
  1813. before starting. Closes: #65191.
  1814. * Document that --largemem is the default, and that the test point is
  1815. 24 megs. Closes: #65607.
  1816. * Document that --set-selections does not actually install any
  1817. packages. Closes: #65340.
  1818. * Fix typo in dpkg-deb.1. Closes: #65945.
  1819. * Add --truename option to dpkg-divert. Closes: #68489.
  1820. * Documented COLUMNS in dpkg(8). Closes: #77001.
  1821. * Modified DPKG_C_GCC_TRY_WARNS() to call AC_SUBST, so that we can
  1822. use the result of the test during build time. Closes: Bug#75138
  1823. * Added description for "suggests" in main/depcon.c:describedepcon().
  1824. Closes: Bug#74113
  1825. * Removed bashing from dpkg.postinst.
  1826. * Make '#' optional in Closes: tags. Closes: Bug#63137.
  1827. * Add -t to -h output in dpkg-buildpackage: Closes: Bug#49598.
  1828. * Fix typo in --compare-versions error message. Closes: Bug#66474.
  1829. * -R doesn't mean --root. Closes: Bug#66068, #72013
  1830. * Add armv3l to archtable. Closes: Bug#72125
  1831. * Fix two memory leaks, and lesson the memory foot print a tad. Hints
  1832. taken from 74259.
  1833. * Fix some things perl5.6 complains about. Closes: Bug#77337
  1834. * Fix referenes to dpkg-deb manpage. Closes: Bug#77855
  1835. * Update Galish translation
  1836. * Add new --import option to dpkg-statoverride to make it easy to
  1837. import suidmanager settings.
  1838. * Speedup patches by Adam Heath
  1839. * statoverride fixes by Robert Luberda, Closes: Bug#78436
  1840. * Add Linux S/390 support. Closes: Bug#79063
  1841. * Using libz to decompress data instead of calling gzip.
  1842. Closes: Bug#49581
  1843. * Add gettext to build-depends
  1844. * Fix warning when trying to remove a non-existing statoverride.
  1845. Closes: Bug#79352
  1846. * Be more paranoid with file permissions when extracing files
  1847. * Apply statoverrides to more then just files
  1848. * Update update-alternatives manpage to use FHS instead of FSSTND.
  1849. Closes: Bug#80237
  1850. * List descriptions for udebs in .changes
  1851. -- Wichert Akkerman <wakkerma@debian.org> Mon, 25 Dec 2000 17:19:31 +0100
  1852. dpkg (1.7.2) unstable; urgency=low
  1853. * Fix parsing of configuration files
  1854. * Add new powerpc-linux-gnu entry to archtable. Closes: Bug#76522
  1855. * No longer bother to install emacs things. I don't use emacs myself
  1856. and can't support that properly.
  1857. * scripts/dpkg-shlibdeps.pl: Make it parse soname's in the format of
  1858. "libfoo-X.X.so" (e.g. libdb-3.1.so) and use it. Also make it give a
  1859. warning if there is a NEEDED line in the objdump output that we cannot
  1860. grok.
  1861. * scripts/dpkg-shlibdeps.pl: resolve library paths using a combination
  1862. of the libc major version, and ldconfig -p output. Solves problems
  1863. with errant libc5 deps.
  1864. * Correct name of .changes file when doing source-only builds
  1865. * Fix -ap option for dpkg-buildpackage. Closes: Bug#77305
  1866. * Fix typo in update-alternatives manpage. Closes: Bug#77829
  1867. * Fix typo in script-regexp update-rc.d. Closes: Bug#76029
  1868. -- Wichert Akkerman <wakkerma@debian.org> Thu, 23 Nov 2000 18:55:50 +0100
  1869. dpkg (1.7.1) unstable; urgency=medium
  1870. * Fix a typo in the dpkg-statoveride manpage
  1871. * dpkg-statoverride reads and writes the right file now
  1872. * Make update-alternatives use the right dir for alternatives again
  1873. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Nov 2000 01:16:39 +0100
  1874. dpkg (1.7.0) unstable; urgency=low
  1875. * Allow the administrator to override file mode and ownership using the
  1876. new dpkg-statoverride tool.
  1877. * Use objdump instead of ldd in dpkg-shlibdeps
  1878. * Fix logic in dpkg-shlibdeps so it looks for dependencies as specified
  1879. in its documentation
  1880. * Make update-alternatives update slave links with --config and properly
  1881. switch the alternative to manual mode
  1882. * HURD updates, Closes: Bug#57753,#57754,#57755
  1883. * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
  1884. * add dpkg:UpstreamVersion and dpkg:Version substvars in dpkg-genchanges
  1885. and dpkg-gencontrol. Closes: Bug#62069,#64774
  1886. * dpkg-genchanges: add new Changed-By field to .changes with the last
  1887. person who made a change, and modify the Maintainer-field to be the
  1888. actual maintainer. Update the format-version to 1.7 to reflect this.
  1889. * dpkg-genchanges: allow a space between # and a to-be-closed bugnumber
  1890. * dpkg-deb: reorder files when building a package
  1891. * dpkg-statoverride: new tool to override ownership and modes for files
  1892. * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
  1893. * Add Origin and Bugs fields to the control file
  1894. * Install new /etc/dpkg/origins/debian file
  1895. * Corrections and updates to Swedish translation.
  1896. * Add Galician, German, Dutch and Brazilian translations
  1897. * archtable: add ia64 and sh; revert sparc64 so that it turns into sparc.
  1898. There wont be a full binary-sparc64 port. Closes: Bug#70788
  1899. * dselect/main.cc: small fixups to get it to compile with gcc-2.96
  1900. * Clean up fd handling in some places. Closes: Bug#69359,#69360,#69361
  1901. * Document -k option for dpkg-buildpackage. Closes: Bug#71808
  1902. * Install commented dummy shlibs.default and shlibs.override files
  1903. * Give dpkg a configurationfile
  1904. * dpkg-scanpackages now uses the most recent version if multiple versions
  1905. of a package are found.
  1906. * don't rename a file to itself in dpkg-source. Closes: Bug#75060
  1907. * Fix buffer overflow in cmdname handling in start-stop-daemon.
  1908. Closes: Bug#75103
  1909. * Don't abort if start-stop-daemon tries to read a non-existing pidfile.
  1910. Closes: Bug#75105
  1911. * Update formating of start-stop-daemon manpage. Closes: Bug#75110
  1912. * Make a missing package a warning instead of an error in dpkg-genchanges
  1913. -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Nov 2000 17:28:39 +0100
  1914. dpkg (1.6.13) frozen unstable; urgency=low
  1915. * Add Format-flag to .dsc format: we know we are going to change the
  1916. format in the next release, this change will make dpkg-source abort
  1917. with a reasonable error instead of doing unexpected things.
  1918. * Fix error in gettext'ized string
  1919. * Updated Czech, French, Polish and Spanish translations. Closes: Bug#63663
  1920. * debian-changelog-mode.el: fix documentation string for
  1921. debian-changelog-finalise-last. Closes: Bug#63003
  1922. -- Wichert Akkerman <wakkerma@debian.org> Mon, 8 May 2000 16:08:53 +0200
  1923. dpkg (1.6.12.99) frozen unstable; urgency=low
  1924. * Pre-release for 1.6.13. which will only feature translation updates
  1925. * Fix typo in dpkg-divert, Closes: Bug#60243
  1926. * dpkg-genchanges: recognize non-deb packages (tarballs, such as
  1927. dpkg-non-deb and boot-floppies disk tarballs). This makes sure that we
  1928. include them when figuring out the Arch field in the .changes
  1929. * mark another string as translateable, Closes: Bug#62543
  1930. * fix location of --abort-after in --help output, Closes: Bug#62464
  1931. * fix allocation error in checkpath(), Closes: Bug#62364
  1932. * add Hold to list of desired package states in -l output, Closes: Bug#58765
  1933. -- Wichert Akkerman <wakkerma@debian.org> Fri, 21 Apr 2000 11:52:59 +0200
  1934. dpkg (1.6.12) frozen unstable; urgency=high
  1935. * Fix test for gpg/pgp in dpkg-buildpackage. You can now build
  1936. unsigned packages again. Closes: Bug#60395
  1937. * Updated Spanish and Swedish translations. Closes: Bug#41735
  1938. * Merge patch from Joel Klecker to remove emacsen-common stuff from dpkg-dev
  1939. -- Wichert Akkerman <wakkerma@debian.org> Mon, 3 Apr 2000 16:50:02 +0200
  1940. dpkg (1.6.11) frozen unstable; urgency=high
  1941. * Oops, missed one case where the libc/ncurses conflict reared its
  1942. ugly head and broke dselect miserably.
  1943. * fix syntax error in dpkg-divert. Closes: Bug#60050
  1944. -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Mar 2000 11:52:07 +1100
  1945. dpkg (1.6.10) frozen unstable; urgency=low
  1946. * The `it rains in Sydney' release
  1947. * Mark another string in dselect as translateable, Closes: Bug#58618
  1948. * Fix typos, Closes: Bug#58619
  1949. * Change dselect keybindings slightly so `n' really does searchagain
  1950. * Updated Czech and Spanish translations, Closes: Bug#58617
  1951. * dpkg-divert.pl: reinstate last writeability-patch. Modified
  1952. to not abort on ENOENT: this indicates a directory does not (yet)
  1953. exist. If this happens don't try to rename. This should fix all
  1954. current dpkg-divert problems. Closes: Bug#59207,#58596
  1955. * update-alternatives: switch back to auto-mode when manually selected
  1956. alternative is removed, Closes: Bug#54933
  1957. * dselect no longer segfaults on SIGWINCH but does The Right Thing
  1958. instead. Closes: Bug#54303,#58697,#59419
  1959. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Mar 2000 15:09:47 +1100
  1960. dpkg (1.6.9) frozen unstable; urgency=low
  1961. * Fix typo in update-alternatives manpage
  1962. * dpkg-architecture: -q should not imply -f, Closes: Bug#57761
  1963. * Cleanup bits of install-info to make it more stable
  1964. * Fix Build-Dependency for ncurses, Closes: Bug#58073
  1965. * Some more documentation updates, Closes: Bug#57985
  1966. * Revert patch to check for writeable filesystems in dpkg-divert,
  1967. Closes: Bug#57840
  1968. -- Wichert Akkerman <wakkerma@debian.org> Fri, 18 Feb 2000 12:11:58 +0100
  1969. dpkg (1.6.8) frozen unstable; urgency=low
  1970. * Turn --force-overwrite on by default
  1971. * Fix a couple of small buildsystem errors
  1972. * Support multiple adjacent newlines in control-style files, Closes: Bug#56056
  1973. * Updated Czech and Swedish translations
  1974. * Revert patch to change order of things when purging a package,
  1975. Closes: Bug#56374
  1976. * Handle failed open of /dev/tty in dpkg -l, Closes: Bug# 55041
  1977. * Update Japanese translations, Closes: Bug# 56641, #57494, #57595
  1978. * Update extended description for dpkg-dev, Closes: Bug# 56675
  1979. * Implement verbose option for update-alternative
  1980. * Fix conflicts handling
  1981. -- Wichert Akkerman <wakkerma@debian.org> Thu, 10 Feb 2000 15:31:31 +0100
  1982. dpkg (1.6.7) frozen unstable; urgency=low
  1983. * dpkg compiles on HP-UX, Solaris and IRIX now
  1984. * start-stop-daemon can chroot now, Closes: Bug#54513
  1985. * Allow space between # and the bugnumber in the changelog
  1986. * Display package description with waddnstr, Closes: Bug#54313
  1987. * Updated Japanese manpages, Closes: Bug#54690, #55080
  1988. * Upload full source for packages with version *-0.1, Closes: Bug#54651
  1989. -- Wichert Akkerman <wakkerma@debian.org> Sun, 16 Jan 2000 18:36:10 +0100
  1990. dpkg (1.6.6) unstable; urgency=low
  1991. * dpkg-buildpackage supports debsign, Closes: Bug#58333
  1992. * fix update-alternatives manpage, Closes: Bug#53859
  1993. * Updated Polish translation
  1994. * Pass admindir to dpkg, Closes: Bug#54039
  1995. * Fix dpkg -l output
  1996. * Remove dpkg-safelist again, it had issues
  1997. -- Wichert Akkerman <wakkerma@debian.org> Fri, 7 Jan 2000 19:51:45 +0100
  1998. dpkg (1.6.5) unstable; urgency=low
  1999. * Update Spanish translation
  2000. * Don't strip 8th bit in dselect packagelists, Closes: Bug# 49061
  2001. * Don't use \z in dpkg-scansources, Closes: Bug# 53182
  2002. * Correctly unregister internals manual, Closes: Bug# 53200
  2003. * dselect helpessages can be translated now, Closes: Bug# 51381
  2004. * dselect UI tweaks, including a new --expert mode
  2005. * Added build-depends, Closes: Bug# 53394
  2006. * Added THANKS-file with people who have contributed to the code
  2007. * Use full width of tty in packagelisting, Closes: Bug# 53395
  2008. * Add -z option to dpkg-deb to set compressionlevel when building
  2009. packages, Closes: Bug# 53398
  2010. * Fix segfaults when producing a diff between current and new conffile,
  2011. Closes: Bug# 52197
  2012. -- Wichert Akkerman <wakkerma@debian.org> Sat, 25 Dec 1999 04:47:09 +0100
  2013. dpkg (1.6.4) unstable; urgency=low
  2014. * No longer byte-compile for emacs
  2015. * Add Swedish translation
  2016. * start-stop-daemon: honour --oknodo if we fail to kill a process
  2017. Closes: Bug#52580,#52185,#52457
  2018. * Fix dselect program description, Closes: Bug#52328
  2019. * Fix architecture-detection in dpkg-gencontrol, Closes: Bug#52616
  2020. * Accept single-number values in update-rc.d, Closes: Bug#46810
  2021. -- Wichert Akkerman <wakkerma@debian.org> Sun, 19 Dec 1999 16:27:48 +0100
  2022. dpkg (1.6.3) unstable; urgency=high
  2023. * Comment dselect changes from 1.6.2, they seem to have a problem
  2024. Closes: #52043,52058,52088,51437
  2025. * Really fix emacs-stuff. Hopefully. Closes: #51919,51525
  2026. * Fix copyright display in dselect menu, Closes: #52093
  2027. * Fix uid/gid-changes in start-stop-daemon, Closes: #52081
  2028. -- Wichert Akkerman <wakkerma@debian.org> Tue, 7 Dec 1999 17:06:00 +0100
  2029. dpkg (1.6.2) unstable; urgency=low
  2030. * New dpkg-scansources, Closes: #51888
  2031. * Fix default for elispdir, Closes: #51919,51525
  2032. * New manpages for cleanup-info and dpkg-divert, Closes: #51539, 46657
  2033. * Buildsystem updates, Closes: #51525, 51855, 51914
  2034. * Modify dselect behaviour for suggests and recommends
  2035. -- Wichert Akkerman <wakkerma@debian.org> Sun, 5 Dec 1999 19:29:50 +0100
  2036. dpkg (1.6.1) unstable; urgency=low
  2037. * Fix some slight packaging errors
  2038. -- Wichert Akkerman <wakkerma@debian.org> Fri, 26 Nov 1999 20:18:48 +0100
  2039. dpkg (1.6) unstable; urgency=low
  2040. * Major overhaul of the buildsystem
  2041. * Update Standards-Version to 3.1.0
  2042. * Move to version 1.6 to reflect the amount of changes made
  2043. * Fix mixup with Czech and Polish translations, Closes: Bug# 48986
  2044. * utils/start-stop-daemon.c: Added ability for user.group arg to
  2045. --chuid. Also, always call initgroups() when using --chuid.
  2046. * utils/start-stop-daemon.8: Document above change, also add note to the
  2047. --make-pidfile option concerning its problem with daemons that fork
  2048. -- Wichert Akkerman <wakkerma@debian.org> Thu, 25 Nov 1999 04:30:01 +0100
  2049. dpkg (1.4.1.19) unstable; urgency=low
  2050. * Fix replaces for dpkg-dev
  2051. * Add gettext-support to dselect
  2052. * Added Czech and Polish translations for dpkg
  2053. * Fixed incorrect patch for --print-architecture (oops, oh well
  2054. it was already broken when there was no gcc anyway :)
  2055. * Fixed missing mipseb that was supposed to be in the archtable
  2056. * Better output in update-alternatives --config, now shows the
  2057. current, and the prefered choices.
  2058. * dpkg-name: ignore epoch when getting version
  2059. * 50dpkg-dev.el: add it as a conffile for dpkg-dev
  2060. * internals.sgml: Removed references to the versions of build tools,
  2061. they date the document.
  2062. * debian-changelog-mode.el: added hint for better log-email handling
  2063. * Added recognition for new source-depends fields for policy
  2064. referenced in bug #41232
  2065. * dpkg-buildpackage: add -ap option to force a pause prior to starting
  2066. the sign process. This helps for people who don't keep their signatures
  2067. on the filesystem (on a floppy perhaps, then mount as needed).
  2068. * minor script corrections
  2069. * dpkg-dev control: Change gcc to c-compiler in the recommends field, and
  2070. move cpio, patch and make to the depends line
  2071. * Leave file info intact in available when installing packages. MD5sum,
  2072. Filename, and MSDOS-Filename used to get lost when installing a
  2073. package.
  2074. * Added armv4l to archtable
  2075. * Added 'D' to the list of choices for conffile handling, closes: #48137
  2076. * Converted internals.sgml to debiandoc format. Also added a dpkg-doc
  2077. package that contains the generated output from this file (.ps, .html
  2078. and .info), includes doc-base support. Internals.sgml is also not
  2079. generated on the binary-arch target, and is no longer "byhand"
  2080. * dpkg-gencontrol: add "Source" to the fields placed in the control file
  2081. * dpkg-parsechangelog: fixed loop for parsepath (#48526)
  2082. * main/{processarc.c,depcon.c}: added new structure for conflictors,
  2083. which contains a struct for conflicts. This is used to create an array
  2084. of conflicting packages, which are going to be replaced. Allows for
  2085. multiple conflicts and replaces. All conflictor handlers were
  2086. converted to loops to handle each one (processarc.c).
  2087. * dpkg-divert: Fix check for writable filesystem, closes: #48646
  2088. -- Wichert Akkerman <wakkerma@debian.org> Sat, 30 Oct 1999 15:14:40 +0200
  2089. dpkg (1.4.1.18) unstable; urgency=low
  2090. * Backout dep check patch
  2091. -- Ben Collins <bcollins@debian.org> Sat, 23 Oct 1999 00:39:24 -0400
  2092. dpkg (1.4.1.17) unstable; urgency=low
  2093. * Add support for long filenames, along with --assert-longfilenames
  2094. * Added --chuid option to start-stop-daemon to allow switching to
  2095. a different uid when starting a process
  2096. * Add mipseb and mipsel to the archtable too, since mips and mipseb are
  2097. both viable names for the mips big endian arch, and mipsel is also needed
  2098. * Update dpkg-architecure's archtable
  2099. * Added --config option to update-alternatives to allow easy changing
  2100. of the registered alternatives for a specific name
  2101. * Updated the deb-control(5) man page with all the current fields
  2102. and uses
  2103. * Made the large info screen show 5 lines of the pkglist so that
  2104. it scrolled properly, and still showed the cursor in dselect
  2105. * Removed references to dpkg(5) which seems to not exist anymore
  2106. * Fixed `dpkg-deb --help' and dpkg-deb(1) from reporting --no-check
  2107. when it's actually --nocheck (went with the hardcoded option, so
  2108. this is just a documentation fix).
  2109. * Added better check in disk.setup for a working NFS server. Makes
  2110. it compatible with other non-Linux servers.
  2111. * Corrected dpkg(8)'s example of using dpkg -i (showed it used with
  2112. a .tar.gz instead of a .deb)
  2113. * Applied patch to correct improper TMPDIR handling in dpkg-deb
  2114. * When encountering an error in extracting the tar archives in the
  2115. packages, we should abort the install, not simply give an error
  2116. and continue.
  2117. * Make dpkg give the builtin arch if there was an error while exec()'ing
  2118. the C compiler with --print-architecture. We still fail if the
  2119. output from gcc was bad in some way, since they may be of importance.
  2120. * Removed the maintainer-configure portion in debian/rules, since
  2121. we should be shipping the source with all the auto* stuff
  2122. already generated anyway
  2123. * Removed the ltconfig patch, and resort to a debian/rules fix
  2124. to libtool itself after running configure
  2125. * Removed shlibs.default.i386. It's now a template for arch porting to
  2126. Debian/dpkg, we install it still, if there exists a file matching the
  2127. arch
  2128. * Reimplemented a better *stat cache for the removal checking code,
  2129. this helps a lot when doing upgrades where the packages are a lot
  2130. different in layout
  2131. * Increased largemem auto detection to >= 24megs, since it's not uncommon
  2132. for dpkg to actually use 16megs of ram all on its own when using the
  2133. largemem setting (old minimum was 16megs)
  2134. * debian/rules: chmod -x everything in /usr/lib to make lintian happy.
  2135. in the clean phase just rm -rf $(BUILD), we don't need to run
  2136. distclean and all that other stuff. Don't run "make dist", we
  2137. simply copy the .tar.gz that dpkg-source creates for the byhand
  2138. source.
  2139. * Make start-stop-daemon exit(1) when we don't find one of the
  2140. pid's we are trying to kill, in accordance with the man page.
  2141. * When running --configure on an already installed package, just
  2142. say it's installed, and not that it is in an unconfigurable
  2143. state
  2144. * Fixed some compiler warnings
  2145. * Make dpkg check for uid 0 requirement, before checking the path
  2146. since not being root, is probably the reason that the PATH is
  2147. borked in the first place
  2148. * Make -p short for --print-avail, and -P short for --purge
  2149. * Fix typo in md5sum(1) man page
  2150. * start-stop-daemon: Add --background and --make-pidfile options
  2151. * update-alternatives: make sure we remove "old" symlinks when they
  2152. are no longer pertinent. Add /etc/alternatives/README that refers
  2153. to the update-alternatives(8) man page.
  2154. * dpkg-divert: Add check for being able to write to the old/new
  2155. destination before doing a rename. We fail on this, without
  2156. changing the diversion registry
  2157. * Fix bad regex in update-rc.d
  2158. -- Wichert Akkerman <wakkerma@debian.org> Thu, 21 Oct 1999 17:49:03 +0200
  2159. dpkg (1.4.1.16) unstable; urgency=medium
  2160. * Hardcode ENOENT again since the errno-part of the POSIX module
  2161. isn't in perl-*-base. sigh.
  2162. -- Wichert Akkerman <wakkerma@debian.org> Fri, 15 Oct 1999 04:01:14 +0200
  2163. dpkg (1.4.1.15) unstable; urgency=low
  2164. * non-maintainer release.
  2165. * Move dselect into its own package
  2166. * Remove conffiles before directories when purging
  2167. * Check if integrity from other packages will broken when processing
  2168. an archive
  2169. * dpkg-deb can handle package made with Linux ar.
  2170. * Add check to update-alternatives to see if the sequencecode is between
  2171. 0 and 99
  2172. * Fix failed assertion, which was actually two bugs: a logic error in
  2173. checkforremoval and a wrong assumption in findbreakcycle
  2174. * dselect doesn't die when you resize the terminal
  2175. * check if a file is also in a new package before removing it when upgrading
  2176. * offer to show a diff between the old and new conffile
  2177. * dpkg-scanpackages: don't abort but only skip a package if we can't
  2178. open it
  2179. * Add HURD-support to start-stop-daemon
  2180. * Reinstate patch to not read available when doing --list-files
  2181. * Add a couple of --force options to handle changed conffiles
  2182. -- Wichert Akkerman <wakkerma@debian.org> Thu, 14 Oct 1999 04:20:56 +0200
  2183. dpkg (1.4.1.14) unstable; urgency=low
  2184. * non-maintainer release.
  2185. * dpkg-source works again on empty diffs, Closes: Bug# 46159
  2186. * Install locale-files in /usr/share, Closes: Bug# 46631
  2187. * Make /usr/share/doc/dpkg-dev a symlink to /usr/share/doc/dpkg
  2188. * Actually include fix to make update-alternatives works filesystems (oops!)
  2189. * Check if codenumber is between 0 and 99, Closes: Bug# 46810
  2190. -- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 19:19:05 +0200
  2191. dpkg (1.4.1.13) unstable; urgency=low
  2192. * Non-maintainer release.
  2193. * NMU number 13, lets see what breaks :)
  2194. * update-alternatives works across filesystems now
  2195. * Make -sgpg work in dpkg-buildpackage (typo)
  2196. -- Wichert Akkerman <wakkerma@debian.org> Tue, 28 Sep 1999 01:26:19 +0200
  2197. dpkg (1.4.1.12) unstable; urgency=low
  2198. * Non-maintainer release.
  2199. * Fix typo in chmodsafe_unlink that made dpkg chmod files that
  2200. weren't setuid or setgid
  2201. -- Wichert Akkerman <wakkerma@debian.org> Sun, 26 Sep 1999 02:41:30 +0200
  2202. dpkg (1.4.1.11) unstable; urgency=low
  2203. * Non-maintainer release.
  2204. * Added sparc64 to archtable
  2205. * Added entries for newer alpha architectures to the archtable
  2206. * Always run patch and diff with LANG set to C.
  2207. * Handle diff warning for files with no newline at the end of file
  2208. Closes: Bug#45642
  2209. -- Wichert Akkerman <wakkerma@debian.org> Fri, 24 Sep 1999 03:23:54 +0200
  2210. dpkg (1.4.1.10) unstable; urgency=low
  2211. * Non-maintainer release.
  2212. * Build dpkg-scansources manpages using pod2man
  2213. * dpkg-buildpackage changes:
  2214. + fix signinterface-detection
  2215. + use gpg by default if $HOME/.gnupg/secring.gpg exists
  2216. -- Wichert Akkerman <wakkerma@debian.org> Thu, 16 Sep 1999 15:36:43 +0200
  2217. dpkg (1.4.1.9) unstable; urgency=low
  2218. * Non-maintainer release.
  2219. * Updated dpkg-scansources to current version from Roderick Schertler
  2220. * Update location of GPL in internals-manual
  2221. * Update location of GPL and dpkg copyright in all manpages
  2222. * Include patch from Roman Hodek for dpkg-source to handle diffs of files
  2223. with lines that begin with two dashes.
  2224. * Move dpkg-scansources to dpkg-dev package
  2225. * Move dpkg-scansources manpage to section 8
  2226. * Fix error that moved a lot of manpages to the dpkg package.
  2227. * It looks like not reading the available-file for listfiles was not greeted
  2228. with much enthiousiasm, so reverse the change.
  2229. -- Wichert Akkerman <wakkerma@debian.org> Wed, 15 Sep 1999 03:45:07 +0200
  2230. dpkg (1.4.1.8) unstable; urgency=low
  2231. * Non-maintainer release.
  2232. * Merge dpkg-doc-ja
  2233. * Add patch from Raphael Hertzog <rhertzog@hrnet.fr> for dpkg-scansources
  2234. to skip comments in signatures. This allows packages to also use GnuPG.
  2235. -- Wichert Akkerman <wakkerma@debian.org> Mon, 13 Sep 1999 04:16:33 +0200
  2236. dpkg (1.4.1.7) unstable; urgency=low
  2237. * Non-maintainer release.
  2238. * Use /usr/share/doc
  2239. * Merge changes from dpkg-iwj tree:
  2240. + change section in dpkg-deb.1 to 1
  2241. + Use COPYINGFILE instead of hardcoded GPL-location in showcopyright()
  2242. + varbufprintf (used for some error messages) vsnprintf return value
  2243. assumption changed to correspond to reality rather than glibc-doc.
  2244. + Don't read available-info when not needed (slightly improved from
  2245. dpkg-iwj: don't read for listfiles either :)
  2246. + Cleanup --assert-* code
  2247. + Assume largemem on systems without sysinfo(2).
  2248. + modify preexec-script for easier script execution
  2249. + Do not chmod(".../path/to/symlink",0600) causing many bad perms.
  2250. + Sanity-check numbers for parameters
  2251. + Move some logic from process_archive into wantinstall
  2252. + Print '0' in dpkg-scanpackages if no packages found.
  2253. -- Wichert Akkerman <wakkerma@debian.org> Fri, 10 Sep 1999 04:06:32 +0200
  2254. dpkg (1.4.1.6) unstable; urgency=low
  2255. * Non-maintainer release.
  2256. * scripts/dpkg-architecture.pl: Update to latest version.
  2257. * scripts/dpkg-architecture.1: Likewise.
  2258. -- Marcus Brinkmann <brinkmd@debian.org> Sat, 24 Jul 1999 18:24:21 +0200
  2259. dpkg (1.4.1.5) unstable; urgency=low
  2260. * Non-maintainer release.
  2261. * (dpkg-dev): Use emacsen-common for debian-changelog-mode.el
  2262. (closes:Bug#20776,#31030).
  2263. * Removed references to the packaging and policy manuals from debian/control.
  2264. * Put debian-changelog-mode.el in dpkg-dev and remove from dpkg (closes:Bug#29271).
  2265. * Fix paths in 50dpkg-dev.el using Roderick Schertler's patch
  2266. (closes:Bug#28270,#29702,#26876,#29184,and others).
  2267. * Note that bug number 17367 was fixed in 1.4.0.26.
  2268. * Add Zack Weinberg's install-info patch for GNU install-info
  2269. compatibility (closes:Bug#28965).
  2270. * Add dpkg-architecture stuff from Marcus Brinkmann.
  2271. * Remove debian-keyring suggests from dpkg.
  2272. * Add -k<keyid> flag to dpkg-buildpackage.
  2273. * --textmode works in gpg, remove kluge from dpkg-buildpackage.
  2274. * Cleanup configure.in slightly (stop using tl_ macros, fix gettext stuff).
  2275. * Attempt to make Debian source useful for non-Debian systems
  2276. (i.e. distclean tree instead of maintainer-clean tree).
  2277. * Sync with wichert's 1.4.1.4.
  2278. * Add my ltconfig-1.3.2.diff (RPATH workaround).
  2279. * Add dpkg-scansources program and man page.
  2280. * Man pages in /usr/share/man.
  2281. -- Joel Klecker <espy@debian.org> Tue, 13 Jul 1999 18:12:15 -0700
  2282. dpkg (1.4.1.4) unstable; urgency=low
  2283. * Also change developer-keyring to debian-keyring for dpkg-dev package
  2284. * Include spanish translation from Nicolás Lichtmaier <nick@debian.org>
  2285. * Depend on perl5 instead of perl
  2286. -- Wichert Akkerman <wakkerma@debian.org> Mon, 5 Jul 1999 00:04:14 +0200
  2287. dpkg (1.4.1.3) unstable; urgency=low
  2288. * Modify tarobject() so it does not complain if we are creating a
  2289. directory that replaces a removed file. This works around the
  2290. problem that the filedatabase doesn't remember what filetype a
  2291. file was by assuming it already was a directory
  2292. -- Wichert Akkerman <wakkerma@debian.org> Mon, 31 May 1999 23:49:23 +0200
  2293. dpkg (1.4.1.2) unstable; urgency=low
  2294. * Non-maintainer upload
  2295. * Rebuild, so this is glibc2.1 (unless you're on m68k), which is rumoured
  2296. to also fix the i8n-problems.
  2297. * Incorporate 1.6 format of .changes, patch from Guy Maor
  2298. * Fix bug in section-handling of dpkg-scanpackages, patch from Guy Maor
  2299. * Disable force-overwrites again, since we're in unstable
  2300. * Assume largemem on systems for which sysinfo is not available, Bug# 33658
  2301. -- Wichert Akkerman <wakkerma@debian.org> Wed, 26 May 1999 15:50:17 +0200
  2302. dpkg (1.4.1.1) unstable; urgency=low
  2303. * Non-maintainer upload
  2304. * Install emacs-startup scripts with mode 0644 (lintian)
  2305. * Incorporate changes in NMU 1.4.0.32 made by Vincent Renardias
  2306. <vincent@waw.com> for slink:
  2307. + Apply patch from Jim Pick for update-alternatives.pl to
  2308. fix 'Important' bugs #30891 in dpkg and (#27382, #27383, #27696,
  2309. #27703, #27736, #27097(merged bugs)) in jdk1.1.
  2310. * Incorporate changes in NMU 1.4.0.33 made by me for slink:
  2311. + Fix illegal perl construct (Bug# 30985)
  2312. + Initialize oialtname->useinstead and oicontest->camefrom to 0 (Bug# 30397)
  2313. + Update shlibs.default for libncurses 4 (Bug# 30332)
  2314. + Suggest debian-keyring instead of developer-keyring (Bug# 27376, 30248)
  2315. + Abort dpkg-divert when attempting to divert a directory (Bug# 30126)
  2316. + Make dpkg-deb.1 aware that it is in section 1, not 8
  2317. + Fix section in reference to dpkg-deb in dpkg.8 (Bug# 29740)
  2318. + Fix typo in --force-help (Bug# 26193)
  2319. + Correct path for debian-changelog-mode.el (Bug# 24606)
  2320. + Make disk-method for dpkg use /var/run instead of /tmp to fix
  2321. symlink-attacks (Bug# 21399)
  2322. + Document -n and -f options for update-rc.d in manpage (Bug# 15913)
  2323. + Add --abort-after option to change after how many errors we abort and
  2324. change the default to 50 (Bug# 22940)
  2325. + Fix controllib.pl: don't check debian/substvars unless needed, and
  2326. don't depend on language settings (Bug# 31508)
  2327. + Allow a - in the architecture-field (Bug# 25537)
  2328. -- Wichert Akkerman <wakkerma@debian.org> Mon, 1 Feb 1999 00:44:01 +0100
  2329. dpkg (1.4.1) unstable; urgency=low
  2330. * Maintainer release by IWJ.
  2331. * Changed Maintainer: field description.
  2332. * Various changes to make the damn thing build.
  2333. * Add .cvsignore files.
  2334. -- Ian Jackson <ian@davenant.greenend.org.uk> Sun, 1 Nov 1998 17:33:38 +0000
  2335. dpkg (1.4.0.31) unstable; urgency=low
  2336. * dpkg/processarc.c: Make newfileslist static like the other arguments
  2337. for register_cleanup's cu_* functions.
  2338. * N-th fix for controllib.pl (simulate old behavior by trying stdin,
  2339. stdout, and stderr for getlogin()).
  2340. * Enable --force-overwrite for slink release, and comment where to do
  2341. so (dpkg/main.c).
  2342. * Recompile against ncurses4.
  2343. -- Daniel Jacobowitz <dan@debian.org> Thu, 22 Oct 1998 17:37:23 -0400
  2344. dpkg (1.4.0.30) unstable; urgency=low
  2345. * dpkg-dev isn't allowed to have a Recommends: debian-keyring (as that's
  2346. in contrib), so it's now lowered to a Suggests: . Thanks to James Troup
  2347. for pointing this out.
  2348. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 26 Sep 1998 13:59:23 +0200
  2349. dpkg (1.4.0.29) unstable; urgency=low
  2350. * For now, prefer PGP over GPG.
  2351. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 22 Sep 1998 09:38:09 +0200
  2352. dpkg (1.4.0.28) unstable; urgency=low
  2353. * Added gpg (GNU Privacy Guard) support:
  2354. * scripts/buildpackage.sh: default to GPG (unless no GPG, but only a PGP
  2355. secret key file is found), as GPG, unlike PGP, is DFSG-free.
  2356. * Updated dpkg-source(1), and added gpg(1) and pgp(1) to the SEE ALSO
  2357. section.
  2358. * Worked around broken textmode implementation in GPG.
  2359. * dpkg-dev now Suggests: gnupg .
  2360. * No longer includes developer-keys.pgp . Instead, dpkg now Suggests: and
  2361. dpkg-dev now Recommends: developer-keyring.
  2362. * Compiled with latest libstdc++ (2.9).
  2363. -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 21 Sep 1998 13:17:14 +0200
  2364. dpkg (1.4.0.27) unstable; urgency=low
  2365. * REALLY fixed dpkg-dev, and new attempt to placate installer on internals.
  2366. -- Daniel Jacobowitz <dan@debian.org> Fri, 27 Jul 1998 15:58:04 -0400
  2367. dpkg (1.4.0.26.0.1) unstable; urgency=low
  2368. * Binary-only upload for x86 and fixed dpkg-dev
  2369. -- Daniel Jacobowitz <dan@debian.org> Fri, 24 Jul 1998 15:58:04 -0400
  2370. dpkg (1.4.0.26) unstable; urgency=low
  2371. * Non-maintainer upload.
  2372. * Make --root work with maintainer scripts (Patch by Scott Barker,
  2373. bugs #4863 and #3170).
  2374. * Fix $(lispdir) bug if compiling without emacs (noticed by Joey Hess).
  2375. -- Daniel Jacobowitz <dan@debian.org> Thu, 23 Jul 1998 12:02:04 -0400
  2376. dpkg (1.4.0.25) unstable; urgency=low
  2377. * Non-maintainer upload.
  2378. * Add the requested -nc option to dpkg-buildpackage (Do
  2379. not clean source tree, useful in debugging cycles).
  2380. * controllib.pl: Again by popular acclamation, fix the getlogin() warnings.
  2381. I redirected STDERR onto fd 0 before calling getlogin().
  2382. * tools.m4: Fix display of whether c++ works.
  2383. * dpkg-deb/extract.c: glibc 2.1 and some kernels want to make
  2384. fflush() move the current fpos. Until someone can fix that,
  2385. protect with seek.
  2386. * Add an extra 0, to dselect/{pkg,meth}keys.cc so it compiles again.
  2387. * Start using lchown() if available.
  2388. * Really fix #20353. (aclocal.m4 was the wrong place; that's a generated
  2389. file. The correct place is in tl_canon.m4.)
  2390. -- Daniel Jacobowitz <dan@debian.org> Tue, 21 Jul 1998 03:14:14 -0400
  2391. dpkg (1.4.0.24) unstable; urgency=low
  2392. * Non-maintainer upload.
  2393. * dpkg/main.c: Turn --force-overwrite off as default.
  2394. * dpkg/main.c: don't list --force-overwrite as default in --force-help,
  2395. noticed by Peter Weiss <Peter.Weiss@Informatik.Uni-Oldenburg.DE> and
  2396. others. [#23542, part of #17409].
  2397. * dpkg/dpkg.8: replaced with a newer version from Jim Van Zandt
  2398. <jrv@vanzandt.mv.com>. [#21061]
  2399. * dpkg-deb/build.c (do_build): add missing \n and improve error message
  2400. when conffile name is too long. [#7057]
  2401. * scripts/update-alternatives.8: replaced with better man page from
  2402. Charles Briscoe-Smith <cpb4@ukc.ac.uk>. [#17283]
  2403. * scripts/dpkg-source.1: corrected logic error in documentation for
  2404. dpkg-gencontrol's -p option, as noticed by Oliver Elphick
  2405. <olly@linda.lfix.co.uk>. [#14655]
  2406. * scripts/controllib.pl (findarch): correct typo in error message,
  2407. noticed by Yann Dirson <ydirson@a2points.com>. [#22106]
  2408. * scripts/dpkg-buildpackage.sh: fix typo s/source version/source
  2409. maintainer/, noticed by Joey Hess <joey@kite.ml.org>, Adam P. Harris
  2410. <apharris@onshore.com> and others. [#10175, #15559]
  2411. * scripts/dpkg-genchanges.pl: applied patch from Roman Hodek
  2412. <Roman.Hodek@informatik.uni-erlangen.de> which solves problems with
  2413. architecture specific packages in mostly architecture independent
  2414. multi-binary source packages. [#14341, #20192].
  2415. * doc/Makefile.am: remove any reference to the packaging manual, as it is
  2416. now provided by the separate "packaging-manual" package.
  2417. * doc/packaging.sgml: removed.
  2418. * doc/developer-keys.pgp: updated to the current debian keyring.
  2419. * aclocal.m4: applied patch from Joel Klecker <jk@espy.org> to handle
  2420. egcs' --print-libgcc-file-name output. [#20353]
  2421. * debian/copyright: correct FSF address.
  2422. * debian/rules: add code from lesstif's debian/rules to make libtool
  2423. less of a fool (i.e. not use -rpath and to link shared libraries
  2424. against libraries it depends on). Code by Richard Braakman
  2425. <dark@xs4all.nl> and Yann Dirson <dirson@debian.org>.
  2426. * debian/rules: remove all reference to the packaging manual as it is
  2427. now provided by the seperate "packaging-manual" package. [#21581,
  2428. #21186, #22698, #23342]
  2429. * debian/rules: link dpkg-divert.1.gz to undocumented.7.gz as the lack
  2430. of a real manpage has been reported in #11093.
  2431. * debian/README.compile: removed gawk and bogus comment about gettext
  2432. being in experimental, as reported by Santiago Vila <sanvila@unex.es>
  2433. [#23344]. Added libpaperg (debiandoc2ps needs paperconf).
  2434. * debian/shlibs.default.i386: updated for glibc, reported by Herbert Xu
  2435. <herbert@gondor.apana.org.au>. [#13140]
  2436. * debian/control (dpkg-dev): depend on perl as POSIX (not a part of
  2437. perl-base) is needed by most of the perl dpkg-* scripts, noticed by
  2438. Joel Klecker <jk@espy.org>. [#22115]
  2439. -- James Troup <jjtroup@comp.brad.ac.uk> Wed, 24 Jun 1998 14:38:52 +0200
  2440. dpkg (1.4.0.23.2) frozen unstable; urgency=low
  2441. * Non-maintainer upload.
  2442. * dpkg/main.c: Turn --force-overwrite back on as default.
  2443. -- James Troup <jjtroup@comp.brad.ac.uk> Tue, 23 Jun 1998 22:19:26 +0200
  2444. dpkg (1.4.0.23.1) frozen unstable; urgency=low
  2445. * No real changes, only a new version code to make this go to frozen too.
  2446. -- Nils Rennebarth <nils@debian.org> Wed, 10 Jun 1998 17:29:58 +0200
  2447. dpkg (1.4.0.23) frozen unstable; urgency=low
  2448. * Non-maintainer bug-fix release
  2449. * Update the disk method to the hamm directory structure (Bug#21000)
  2450. -- Nils Rennebarth <nils@debian.org> Sun, 7 Jun 1998 19:14:51 +0200
  2451. dpkg (1.4.0.22) frozen unstable; urgency=medium
  2452. * Non-maintainer bug-fix release
  2453. * Install main changelog file as `changelog.gz' instead of
  2454. `changelog.dpkg.gz' (Debian Policy, section 5.8) (Bug#6052,15157)
  2455. * Avoid use of /tmp/*.$$ in preinst and postinst (Bug#19712)
  2456. * Make sure diversions file is always created with mode 0644 (Bug#19494)
  2457. * When removing a file, chmod it to 000 if it's a char or block
  2458. device or remove its s[ug]id bits, if any (Bug#6006)
  2459. * Minor fixes in the programmer's manual (Bug#6206)
  2460. * Always create readable status and available files
  2461. (Bug#9869,11887,14636,15786,19146)
  2462. * Make dpkg-gencontrol honour -DArchtecture=xxxx (Bug#9893)
  2463. * Allow different archs for the same binary in debian/files (Bug#9894)
  2464. * Added workaround in /usr/lib/dpkg/methods/disk/setup
  2465. to avoid bash warning (Bug#10111,10131)
  2466. * Recognize old .deb packages with other locales (Bug#12232)
  2467. * Added `SHELL=bash' to debian/rules: it uses bash-specific structs
  2468. * Move some files from dpkg to dpkg-dev (part of Bug#13295)
  2469. * Minor fix in packaging manual regarding to Standards-Version (Bug#14696)
  2470. * Fixed --altdir and --admindir in update-alternatives (Bug#15332)
  2471. * Strip /usr/lib/libdpkg* (Bug#15671)
  2472. * dpkg: send output of --help, --force-help and -Dhelp to stdout
  2473. (Bug#16051,18574)
  2474. * send correct signals with start-stop-daemon (Bug#17258)
  2475. * Make `dpkg-divert --test --remove' work as expected (Bug#19531)
  2476. * Determine properly the architecture if gcc is egcs (Bug#20353)
  2477. -- Juan Cespedes <cespedes@debian.org> Sun, 5 Apr 1998 17:37:01 +0200
  2478. dpkg (1.4.0.21) unstable; urgency=low
  2479. * Non-maintainer release to include a new update-rc.d
  2480. * Fixed date on files in the archive from 2017 and 2018 by running
  2481. touch foo; find . -newer foo | xargs -r touch; rm foo
  2482. * Changed start-stop-deamon message "No <program> found; none killed." to
  2483. "No <program> found running; none killed."
  2484. -- Miquel van Smoorenburg <miquels@cistron.nl> Thu, 5 Mar 1998 14:19:46 +0100
  2485. dpkg (1.4.0.20) unstable; urgency=low
  2486. * Disabled --force-overwrites.
  2487. * Removed core file from source
  2488. -- Michael Alan Dorman <mdorman@debian.org> Tue, 9 Jan 2018 03:34:28 -0500
  2489. dpkg (1.4.0.19) unstable; urgency=low
  2490. * Changed methods/disk.setup to use output of
  2491. 'dpkg --print-installation-architecture' instead of hard-coded
  2492. '1386' (fixes #10995).
  2493. * Patched dpkg-source to properly quote metacharacters in strings
  2494. before using them in pattern-matching expressions (fixes #10811).
  2495. * Fixed several documentation typos (fixes #10764).
  2496. * dpkg-source now works around 100-character filename limitation of cpio
  2497. (fixes #10400).
  2498. * dpkg-source now properly handles '\ no newline in source' message from
  2499. patch (fixes #5041).
  2500. -- Klee Dienes <klee@debian.org> Sun, 13 Jul 1997 19:28:22 -0700
  2501. dpkg (1.4.0.18) unstable; urgency=low
  2502. * dpkg-source now uses new -z option to GNU patch (still needs to be
  2503. changed to detect and use old version as well) (fixes #9904, #10005, #10007).
  2504. * Added i686 to archtable.
  2505. * shlibs.default now uses xlib6 instead of elf-x11r6lib (fixes #9926).
  2506. * debian-changelog-mode now uses interruptible completing type-in fields
  2507. instead of the previous 'select-a-letter method'. I consider this
  2508. better and more standard than the previous way, but I'd welcome
  2509. opinions to the contrary. Consider this a 'probationary' change for
  2510. now (fixes #9873, #9874).
  2511. -- Klee Dienes <klee@debian.org> Sun, 25 May 1997 09:56:08 -0400
  2512. dpkg (1.4.0.17) unstable; urgency=low
  2513. * All of the dpkg binaries (but not dpkg-dev or dselect) now speak
  2514. french, thanks to patches from Christophe Le Bars <clebars@teaser.fr>
  2515. * Fix leading spaces before day in 822-date.
  2516. * Changes from Tom Lees <tom@lpsg.demon.co.uk> to better support
  2517. building on non-Debian systems; minor Makefile fixes.
  2518. * Added 'ppc powerpc powerpc' to archtable.
  2519. * Changed documentation paper size to US/Letter instead of A4 (A4
  2520. may be better, but it's easier to print US/Letter on A4 than it is
  2521. to print A4 on US/Letter).
  2522. -- Klee Dienes <klee@debian.org> Tue, 13 May 1997 15:24:31 -0400
  2523. dpkg (1.4.0.16) experimental; urgency=low
  2524. * Added generated sources to GNU-format source archive so it no longer
  2525. requires perl to build.
  2526. -- Klee Dienes <klee@debian.org> Sat, 10 May 1997 17:34:29 -0400
  2527. dpkg (1.4.0.15) experimental; urgency=low
  2528. * Changed dpkg-genchanges to check for ($arch == $substvar{'Arch'}), not
  2529. ($arch ne 'all') (fixes #9688).
  2530. * Fixed bug in start-stop-daemon.c (was using optarg after argument
  2531. parsing was over) (fixes #9597, #9603, #9364).
  2532. * Provide 50dpkg-dev.el for xemacs as well as emacs.
  2533. * Explicitly provide path for debian-changelog-mode in 50dpkg-dev to use
  2534. .el file as workaround until xemacs can read emacs19 .elc files.
  2535. * Pass top_distdir explicitly to 'make dist' to accomodate bug in
  2536. automake_1.1o-1.
  2537. * Fix debian/build to make html documentation without including
  2538. directories in tar archives (fixes #9348).
  2539. -- Klee Dienes <klee@debian.org> Fri, 9 May 1997 13:17:18 -0400
  2540. dpkg (1.4.0.14) experimental; urgency=low
  2541. * Fixed buglet in install-info.pl (fixes #9438).
  2542. * Re-write of update-rc.d.pl, primarily by Miquel van Smoorenburg
  2543. <miquels@cistron.nl> (fixes #9434, #9436).
  2544. * Renamed "dpkg Programmer's Manual" to "dpkg Internals Manual".
  2545. -- Klee Dienes <klee@debian.org> Tue, 6 May 1997 22:01:07 -0400
  2546. dpkg (1.4.0.13) experimental; urgency=low
  2547. * Fix to start-stop-daemon so that it still takes numeric arguments (had
  2548. been broken in 1.4.0.12) (fixes #9598).
  2549. * Fix 822-date to sanity-check localtime() output (seconds must be the
  2550. same as GMT).
  2551. * Patch from Guy Maor <maor@ece.utexas.edu> to dpkg-source.pl to support
  2552. pristine (MD5-equivalent) upstream sources.
  2553. * Patch from Michael Alan Dorman <mdorman@calder.med.miami.edu> to
  2554. update-rc.d.pl to fix handling multiple start/stop entries on a single
  2555. line.
  2556. * Several fixes to dpkg-genchanges to support -B option (added in
  2557. 1.4.0.12) (fixes #9340).
  2558. * Handle errors from 822-date in debian-changelog-mode.el.
  2559. * Changed cl-debian.pl to correctly handle extra whitespace in changelog
  2560. datestamps.
  2561. -- Klee Dienes <klee@debian.org> Mon, 5 May 1997 18:12:43 -0400
  2562. dpkg (1.4.0.12) experimental; urgency=low
  2563. * Re-wrote 822-date for clarity and to support timezone offsets >= 12h
  2564. (New Zealand in DST is +1300, for example) (fixes #7130).
  2565. * Patch from Juergen Menden <menden@morgana.camelot.de> to support
  2566. archdependent-only builds (fixes #8912, #9245, #5359).
  2567. * Fix archtable entry for powerpc (fixes #8794).
  2568. * Strip /sbin/* and /usr/sbin/* in debian/rules (fixes #8853).
  2569. * Moved start-stop-daemon to /sbin (fixes #8669).
  2570. * Set sharedstatedir and localstatedir for $(MAKE) install in
  2571. debian/rules (fixes #8852).
  2572. * Fixes for update-rc.d(8) from Jim Van Zandt <jrv@vanzandt.mv.com>
  2573. (fixes #8576).
  2574. * No longer do variable substitutions when generating change file (fixes
  2575. #5862).
  2576. * Support symbolic signal names in start-stop-daemon (fixes #7715).
  2577. * Add autoload for debian-changelog-mode to /etc/emacs/site-start.d
  2578. (fixes #4519, #5841).
  2579. * Add recommendation for gcc and make in dpkg-dev (gcc is needed for dpkg
  2580. --print-architecture, used by dpkg-gencontrol; make is needed for any
  2581. debian/rules file) (fixes #8470).
  2582. * Minor changes to packaging manual section on source package
  2583. conversion (fixes #6801).
  2584. * Renamed "programmer's manual" to 'packaging manual'.
  2585. * Start of new "programmer's manual" containing information on dpkg
  2586. internals and build information. This manual uses the new
  2587. TeXinfo-SGML format, currently included in doc/.
  2588. * dselect/pkgdepcon.cc now checks for debug not NULL, not just depdebug.
  2589. * Changed makefiles to support building outside of source directory.
  2590. * Include GNU-format source distribution with other non-debian packages.
  2591. -- Klee Dienes <klee@debian.org> Sun, 4 May 1997 11:08:19 -0500
  2592. dpkg (1.4.0.11) experimental; urgency=low
  2593. * Patches for alpha and libc6 from Michael Alan Dorman
  2594. <mdorman@calder.med.miami.edu>.
  2595. * Fixed minor problems in dpkg-shlibdeps regular expressions for libc6.
  2596. * Fix regex to detect directory creation in dpkg-source.pl.
  2597. * Minor changes for automake-1.1n.
  2598. -- Klee Dienes <klee@debian.org> Sun, 23 Mar 1997 18:09:33 -0500
  2599. dpkg (1.4.0.10) unstable; urgency=medium
  2600. * Fixed bug in controllib.pl (@fowner was entire passwd entry,
  2601. not just [uid, gid] as it should have been).
  2602. -- Klee Dienes <klee@debian.org> Thu, 20 Mar 1997 13:06:52 -0500
  2603. dpkg (1.4.0.9) unstable; urgency=low
  2604. * Check fputs() return values for (ret >= 0), not (ret != 0) (fixes #7522).
  2605. * dpkg-shlibdeps no longer gives error for Java and statically linked
  2606. binaries (fixes #4988).
  2607. * Change 'details of the old format' to 'details of the new format' in
  2608. deb-old.5 (fixes #7605).
  2609. * dpkg-source -b now warns (was previously silent) if maintainer changes
  2610. create new subdirectories. dpkg-source -x now warns (previously gave
  2611. error) if maintainer changes create new subdirectories (partially
  2612. fixes #6866, #6671, #5045, #6482).
  2613. * Added manual page for start-stop-daemon (8).
  2614. * Added C version of start-stop-daemon by
  2615. Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl> (fixes #1670).
  2616. * Converted to use GNU automake for the build process by Tom Lees
  2617. <tom@lpsg.demon.co.uk>.<
  2618. * Preliminary support for dpkg functions as a shared library (now
  2619. provides libdpkg.so, but much work needs to be done in better
  2620. segregating and defining the interface).
  2621. * Preliminary internationalization support by Galen Hazelwood
  2622. <galenh@debian.org>. Only the library, dpkg-deb, md5sum, and dpkg
  2623. have been converted so far. No translations have yet been
  2624. constructed.
  2625. * Handle 'libc.so.6 => /lib/libc.so.6 (0x40010000)' format from libc6
  2626. ldd (fixes #7603, #7926, #8688, #9179, #9134, #8516).
  2627. * Removed policy.sgml (it has been moved to the debian-policy package).
  2628. * Include patch from Darren Stalder <torin@daft.com> for
  2629. dpkg-buildpackage to choose PGP key based on Maintainer: field of
  2630. package being built (or -m<maintainer> option, if present) (fixes
  2631. #7898).
  2632. * Changed controllib.pl to use $ENV{LOGNAME}, getlogin(), and $<
  2633. (in that order) to determine the intended ownership of
  2634. debian/{files,substvars}, (fixes #7324, #6823, #5659, #5965, #5929,
  2635. #9239, #5366).
  2636. * Don't sign .dsc file in dpkg-buildpackage if building a binary-only
  2637. release (fixes #7260).
  2638. * Updated developer-keys.pgp to latest revision (fixes #6134).
  2639. -- Klee Dienes <klee@debian.org> Mon, 17 Mar 1997 16:11:24 -0500
  2640. dpkg (1.4.0.8) unstable; urgency=medium
  2641. * Corrected update-rc.d for bash 2.0
  2642. * Updated developer-keys.pgp from
  2643. http://www.iki.fi/liw/debian/debian-keyring.tar.gz
  2644. -- Guy Maor <maor@ece.utexas.edu> Mon, 3 Feb 1997 04:05:01 -0600
  2645. dpkg (1.4.0.7) stable unstable; urgency=HIGH
  2646. * Fixed --assert-support-predepends failing between unpack & configure.
  2647. * Added --assert-working-epoch option.
  2648. -- Guy Maor <maor@ece.utexas.edu> Sat, 25 Jan 1997 23:02:11 -0600
  2649. dpkg (1.4.0.6) stable unstable; urgency=high
  2650. * Patched lib/vercmp.c to hopefully fix dselect epoch processing
  2651. (Bug#6204), (Bug#4590).
  2652. * Patched scripts/dpkg-buildpackage, scripts/dpkg-genchanges,
  2653. scripts/dpkg-gencontrol for epoch processing, courtesy of Loic Prylli
  2654. <lprylli@graville.fdn.fr> (Bug#6138, Bug#5225).
  2655. * Patched dpkg-genchanges to actually honor the -u switch to specify
  2656. directory (Bug#5564).
  2657. * Applied patch to main/archive.c to correct problems setting set[gu]id
  2658. binaries, courtesy of Herbert Xu <herbert@greathan.apana.org.au>
  2659. (Bug#5479).
  2660. * Applied patch to dpkg-source to correct debian-only package names,
  2661. courtesy of Guy Maor <maor@ece.utexas.edu> (Bug#5355).
  2662. -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 2 Jan 1997 11:36:09 -0500
  2663. dpkg (1.4.0.5) stable frozen unstable; urgency=medium
  2664. * Distribution for frozen too.
  2665. -- Heiko Schlittermann <heiko@lotte.sax.de> Thu, 5 Dec 1996 09:13:42 +0100
  2666. dpkg (1.4.0.4) stable unstable; urgency=medium
  2667. * Bug2962 fixed: patch from Ian Jackson applied
  2668. (cursor keys won't work after search)
  2669. * Manuals 2.1.2.2
  2670. -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 15 Nov 1996 20:21:18 +0100
  2671. dpkg (1.4.0.3) unstable; urgency=medium
  2672. * dpkg-source -x: created bad permissions (set x-bit for
  2673. all files pointed to by a symlink)
  2674. -- Heiko Schlittermann <heiko@lotte.sax.de> Fri, 18 Oct 1996 18:32:06 +0200
  2675. dpkg (1.4.0.2) unstable; urgency=medium
  2676. * dpkg-buildpackage.sh: reverted the quoting change -- (you
  2677. should use super, sudo, realy, but not su. Or write a wrapper
  2678. around su)
  2679. * dpkg-buildpackge.sh: passing -m, -C, -v options to dpkg-genchanges
  2680. more the way Ian likes ;-)
  2681. * dpkg-source.pl: new function deoctify() as replacement for eval()
  2682. (turn \ddd into the corresponding character) [rem: probably better
  2683. solution would be to convert cpios output names into complete \ddd
  2684. representation as well tars output names]
  2685. * dpkg-source.pl: fixed 2 typos in failure message on creating
  2686. $origtargz.tmp-nest.
  2687. * main/main.c: typo `tread' -> `treat'
  2688. * main/enquiry.c: fixed the ignorance for some relations in --compare-versions
  2689. * main/enquiry.c: missing version is now handled as described in `dpkg --help'
  2690. (or at least as I understood `dpkg --help' PLEASE TRY IT)
  2691. * lib/parsehelp.c: fixed parsing of epoch information
  2692. -- Heiko Schlittermann <heiko@lotte.sax.de> Sun, 6 Oct 1996 23:27:47 +0200
  2693. dpkg (1.4.0.1) unstable; urgency=medium
  2694. * dpkg-source: doesn't get screwed up from hardlinks
  2695. in the archive now
  2696. * dpkg-source: doesn't get screwed up from `unprintable' characters
  2697. in file names (e.g. from the kbd package)
  2698. * controllib.pl: $varlistvile -> $varlistfile (thanx Karl Sackett)
  2699. * dpkg-buildpackge: quoting for $rootcommand (thanx Michael Meskes)
  2700. and `eval' as default $rootcommand
  2701. * dpkg-*, controllib.pl: created debian/files and debian/substvars
  2702. are chown'ed to `getlogin()' and its group
  2703. * doc/: mv changed to mv -f
  2704. * dpkg-buildpackage: added an option -a for overriding the
  2705. architecture in the changes _file_name_
  2706. * dpkg-buildpackage: pass -m* -v* .. options to dpgk-genchangelog
  2707. * dpkg-name moved to dpkg-dev
  2708. -- Heiko Schlittermann <heiko@lotte.sax.de> Sat, 21 Sep 1996 22:06:01 +0200
  2709. dpkg (1.4.0) unstable; urgency=low (HIGH for new source format)
  2710. * Corrected buffer overrun when dpkg-deb generates filename. (Bug#4467.)
  2711. * dpkg-shlibdeps works with DEBIAN/shlibs (thanks Heiko Schlittermann).
  2712. * Added libm.so.5 to shlibs.default for i386/m68k.
  2713. * Split binary package into two: dpkg and dpkg-dev.
  2714. * dpkg-source(1) documents mode and ownership setting during extraction.
  2715. * dpkg-scanpackages moved to /usr/bin.
  2716. * Include /usr/bin/dpkg-deb, not dpkg-deb.dist; don't rename in scripts.
  2717. * Copyright file changed slightly.
  2718. * debian-changelog-mode uses magic key substitution strings. (Bug#4419.)
  2719. * Changed email address in control file to <ian@chiark.greenend.org.uk>.
  2720. * Manuals and own Standards-Version: updated to 2.1.1.0.
  2721. -- Ian Jackson <ian@chiark.greenend.org.uk> Thu, 12 Sep 1996 01:13:33 +0100
  2722. dpkg (1.3.14) unstable; urgency=low
  2723. * dpkg-buildpackage new -tc (clean source tree) option.
  2724. * Formatted documentation removed by `make clean' and so not in source.
  2725. * Manuals and own Standards-Version: updated to 2.1.0.0.
  2726. * Distribute {policy,programmer}.{html.tar,ps}.gz with each upload.
  2727. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 1 Sep 1996 20:43:40 +0100
  2728. dpkg (1.3.13) unstable; urgency=low (HIGH for building new src X programs)
  2729. * X shared libraries added to shlibs.default (=> `elf-x11r6lib').
  2730. * dpkg-source tar invocation fixed so that TAPE env var doesn't break it.
  2731. * dpkg-source copes better with missing final newline messages from diff.
  2732. * dpkg-buildpackage usage message fixed: -si is the default. (Bug#4350.)
  2733. * dpkg-source error message about src dir mismatch typo fixed. (Bug#4349.)
  2734. * dpkg-source(1) has suggestions for dpkg-buildpackage -r option.
  2735. * dpkg-source change date fixed. (Bug#4351.)
  2736. * More developers' keys.
  2737. * Manual updates, own Standards-Version updated.
  2738. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 31 Aug 1996 20:08:18 +0100
  2739. dpkg (1.3.12) unstable; urgency=medium
  2740. * dpkg prints old version number when upgrading. (Bug#4340.)
  2741. * dpkg-deb tries to detect and flag corruption by ASCII download.
  2742. * dpkg-genchanges and dpkg-buildpackage say what source is included.
  2743. * dpkg-buildpackage passes +clearsig=on to PGP (or pgpcommand). (Bug#4342.)
  2744. * dpkg-source prints better error for cpio not honouring -0t.
  2745. * control file Suggests cpio >= 2.4.2, rather than just cpio.
  2746. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 30 Aug 1996 15:31:51 +0100
  2747. dpkg (1.3.11) unstable; urgency=low
  2748. * EBUSY when dpkg removes a directory is only a warning.
  2749. * dpkg-genchanges generates sensible warning (not confusing error
  2750. about mismatch) for missing Section/Priority in binary packages.
  2751. * Added dpkg --print-gnu-build-architecture option.
  2752. * shlibs.default for m68k provided, as a copy of i386 version.
  2753. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 29 Aug 1996 14:05:02 +0100
  2754. dpkg (1.3.10) unstable; urgency=medium
  2755. * dpkg-source(1) manpage alias symlinks are not dangling.
  2756. * dselect selects things by default if they are installed.
  2757. * Added `pentium' as alias for `i386' architecture.
  2758. * Added `Suggests: cpio, patch' and explanatory text to Description.
  2759. (Bugs #4262, #4263.)
  2760. * More developers' PGP keys.
  2761. * Manual updates, new source format released.
  2762. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 26 Aug 1996 14:30:44 +0100
  2763. dpkg (1.3.9) unstable; urgency=low (high for new source format)
  2764. * dpkg --get-selections and --set-selections added.
  2765. * New dpkg --force-not-root flag.
  2766. * Don't replace directory with another package's file. (Bug#4202.)
  2767. * All manpages now installed compressed.
  2768. * Copyright file moved to /usr/doc/dpkg/copyright.
  2769. * Standards-Version updated (0.2.1.1).
  2770. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 24 Aug 1996 19:09:30 +0100
  2771. dpkg (1.3.8) unstable; urgency=low (high for new source format)
  2772. * dpkg-buildpackage -sa, -si options work correctly.
  2773. * update-rc.d(8) updated to reflect design and reality.
  2774. * Programmers' and policy manual updates.
  2775. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 23 Aug 1996 12:48:26 +0100
  2776. dpkg (1.3.7) unstable; urgency=low (medium for source pkg docs)
  2777. * dselect +/-/_/= on lines for all broken, new, local or whatever
  2778. packages do not affect _all_ packages. (Bug#4129.)
  2779. * Support for diff-only uploads in source packaging tools.
  2780. * dpkg-genchanges -d<descripfile> option renamed to -C.
  2781. * dpkg-buildpackage understands -m, -v, -C (for dpkg-genchanges).
  2782. * Support for debian/shlibs.local added to dpkg-shlibdeps.
  2783. * Shared library files' search order defined in dpkg-source(1), and
  2784. relevant files added to the FILES section.
  2785. * Programmers' manual describes source packaging tools.
  2786. * Policy manual mentions shared library control area file.
  2787. * dpkg-source manpage includes dpkg-shlibdeps in title line.
  2788. * Manuals have changelog and automatic version numbering.
  2789. * changelogs (for dpkg and for manuals) installed.
  2790. * binary target split into binary-arch and binary-indep in manual.
  2791. * Manpages should be compressed.
  2792. * Copyright file is moved to /usr/doc/<package>/copyright.
  2793. * Changelogs must be installed in /usr/doc/<package>.
  2794. * dpkg-deb(8) moved to dpkg-deb(1).
  2795. * binary target split into binary-arch and binary-indep in source.
  2796. * changelog entry for 1.2.14 copied from that (forked) release.
  2797. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 15:36:12 +0100
  2798. dpkg (1.3.6) experimental; urgency=low (HIGH for new source format)
  2799. * dpkg-source now has broken argument unparsing for tar. (Bug#4195.)
  2800. * dpkg-gencontrol writes to debian/tmp/DEBIAN/control by default.
  2801. * dpkg-shlibdeps script added.
  2802. * Back to old sh update-rc.d, and removed manpage, because new Perl
  2803. version and the manpage have different syntax and semantics.
  2804. * update-rc.d prints usage message for missing terminal `.'. (Bug#4122.)
  2805. * Use rm -rf instead of just rm -r in dpkg-deb --info &c. (Bug#4200.)
  2806. * Added support for Installed-Size to dpkg-gencontrol, and documented.
  2807. * Source packaging substitution variables and name syntax rationalised.
  2808. * dpkg-source scripts' usage messages improved slightly.
  2809. * dpkg-source works with non-empty second (orig dir) argument.
  2810. * Added rationale for copyright policy to manual.
  2811. * More developers' PGP keys.
  2812. * Control database handling cleanups (usu. Source field blanked).
  2813. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 20 Aug 1996 15:39:58 +0100
  2814. dpkg (1.3.5) experimental; urgency=low (high for debian-changelog-mode)
  2815. * 822-date script included. (Bug#4136.)
  2816. * debian-changelog-add-version works on empty file.
  2817. * debian-changelog-mode mode-help works properly.
  2818. * dpkg-source tells patch not to make numbered backups. (Bug#4135.)
  2819. * More developers' PGP keys.
  2820. * Paragraph on uucp -a and -g options removed from policy manual.
  2821. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 14 Aug 1996 14:46:47 +0100
  2822. dpkg (1.3.4) experimental; urgency=low
  2823. * Removed debugging output from dpkg-source -x. Oops.
  2824. * Removed section on source package permissions from policy manual -
  2825. dpkg-source now sorts these out.
  2826. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sun, 11 Aug 1996 13:25:44 +0100
  2827. dpkg (1.3.3) experimental; urgency=low
  2828. * Programmers' & policy manuals in source tree; HTML in /usr/doc/dpkg.
  2829. * Old guidelines.info and text files in /usr/doc/dpkg removed.
  2830. * dpkg-source sets permissions on extracted debianised source tree
  2831. and does not copy ownerships out of archive even if running as root.
  2832. * Emacs mode `dpkg changelog' renamed to `Debian changelog'.
  2833. * Default changelog format renamed from `dpkg' to `debian'.
  2834. * debian-changelog-mode sets fill-prefix correctly.
  2835. * debian-changelog-mode urgencies except HIGH lowercase by default.
  2836. * debian-changelog-mode displays keymap in doc string and so mode help.
  2837. * More maintainers' PGP keys.
  2838. * Remove built changelog parsers with `clean' target in source.
  2839. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 23:35:51 +0100
  2840. dpkg (1.3.2) experimental; urgency=LOW (MEDIUM for dpkg-source)
  2841. * Faster update-rc.d written in Perl by Miquel van Smoorenburg.
  2842. * install-info --test doesn't lock dir. (Bug#3992, thanks Darren).
  2843. * dpkg-source doesn't break in the presence of any symlinks.
  2844. * More developers' keys added to doc/developer-keys.pgp.
  2845. * Install developers' keys in /usr/doc/dpkg/developer-keys.pgp.
  2846. * dpkg-source documents undefined substvar behaviour.
  2847. * minor debian/rules cleanups.
  2848. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 10 Aug 1996 02:13:47 +0100
  2849. dpkg (1.3.1) experimental; urgency=LOW
  2850. * manpage for dpkg-source et al now available.
  2851. * dpkg-changelog-mode.el installed in site-lisp, but still no autoload.
  2852. * dpkg-source prints correct string for not-understood tar -vvt output.
  2853. * dpkg-source parsing of tar -vvt output made more robust.
  2854. * dpkg-buildpackage prints usage message on usage error.
  2855. * dpkg-gencontrol can print usage message.
  2856. * -T<varlistfile> option added to dpkg-source.
  2857. * Description of -f<fileslistfile> corrected in dpkg-distaddfile usage.
  2858. * -m<maintainer> synopsis changed in dpkg-genchanges usage.
  2859. * debian/substvars may now contain blank lines.
  2860. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 8 Aug 1996 02:36:04 +0100
  2861. dpkg (1.3.0) experimental; urgency=LOW
  2862. * dpkg can install named pipes.
  2863. * dpkg-deb supports directory for destination, generates filename.
  2864. * dpkg-{source,gencontrol,genchanges,parsechangelog,buildpackage},
  2865. dpkg-distaddfile scripts to support new source package format.
  2866. * a.out build no longer supported.
  2867. * Changed to new source package format.
  2868. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 6 Aug 1996 02:31:52 +0100
  2869. dpkg (1.2.14) stable unstable; urgency=MEDIUM
  2870. * dselect +/-/_/= on lines for all broken, new, local or whatever
  2871. packages do not affect _all_ packages. (Bug#4129.)
  2872. * NOTE - THE HISTORY FORKS HERE. 1.2.14's change appears in 1.3.7.
  2873. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 22 Aug 1996 00:39:52 +0100
  2874. dpkg (1.2.13) unstable; urgency=LOW
  2875. * dpkg --search produces correct output for diversions.
  2876. * dpkg-name remove unnecessary arch missing warning. (Bug#3482.)
  2877. * dpkg-deb --build warns about uppercase chars in package name.
  2878. * dpkg-scanpackages error messages updated and manpage provided
  2879. (thanks to Michael Shields).
  2880. * dpkg-scanpackages warns about spurious entries in override file.
  2881. * dpkg-scanpackages `noverride' renamed to `override' everywhere.
  2882. * dpkg-scanpackages field ordering to put Architecture higher.
  2883. * dpkg-scanpackages field names capitalised appropriately.
  2884. * dpkg-scanpackages invokes find with -follow. (Bug#3956.)
  2885. * guidelines say #!/usr/bin/perl everywhere, not #!/bin/perl.
  2886. * Many developers' PGP keys added.
  2887. * configure script uses ${CC} instead of $(CC) (again :-/).
  2888. * developers' keys included in dpkg source tree and /usr/doc.
  2889. * configure remade using autoconf 2.10-3 (was 2.4-1).
  2890. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 1 Aug 1996 02:46:34 +0100
  2891. dpkg (1.2.12); priority=LOW
  2892. * dpkg --search and --list understand and comment on diversions.
  2893. * dpkg-divert displays diversions more intelligibly.
  2894. * Guidelines are somewhat clearer about descriptions.
  2895. * deb(5) describes new format; old moved to deb-old(5). (Bug#3435.)
  2896. * deb-control(5) carries a warning about being out of date.
  2897. * Added 1996 to dselect version/copyright.
  2898. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Jul 1996 15:04:49 +0100
  2899. dpkg (1.2.11); priority=MEDIUM
  2900. * dselect had dependency bug if installed package newer than avail.
  2901. * Added `replaces' to dselect's list of package relationship strings.
  2902. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 1 Jul 1996 02:51:11 +0100
  2903. dpkg (1.2.10); priority=MEDIUM
  2904. * Fixed bug in old-style version/revision number parsing. (Bug#3440.)
  2905. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 29 Jun 1996 03:32:45 +0100
  2906. dpkg (1.2.9); priority=MEDIUM
  2907. * Fixed status database updates reading bug.
  2908. * `Setting up' message includes version number.
  2909. * `existence check' message changed to say `cannot access archive'.
  2910. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 27 Jun 1996 13:39:36 +0100
  2911. dpkg (1.2.8); priority=LOW
  2912. * dpkg --record-avail puts data in Size field.
  2913. * strip / for rmdir(2) in cleanup to work around kernel bug. (Bug#3275.)
  2914. * dpkg-split --msdos no longer allows `-' and other chars in filenames.
  2915. * manual dpkg-split(8) written.
  2916. * dpkg-split minor typo in --auto usage error message fixed.
  2917. * dpkg-deb(8) very minor cosmetic fix to --build option.
  2918. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 25 Jun 1996 03:00:14 +0100
  2919. dpkg (1.2.7); priority=LOW
  2920. * dpkg-scanpackages syntax errors fixed.
  2921. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Fri, 21 Jun 1996 04:10:38 +0100
  2922. dpkg (1.2.6); priority=MEDIUM
  2923. * NFS, CDROM and partition dselect methods include mountpoint
  2924. in paths given to dpkg in [I]install, so they should now work.
  2925. * Removed some leftover files from source tree.
  2926. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 12 Jun 1996 14:35:19 +0100
  2927. dpkg (1.2.5); priority=MEDIUM
  2928. * Allow, but do not create, packages in half-installed state
  2929. with no version number. (Aargh.)
  2930. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 04:55:43 +0100
  2931. dpkg (1.2.4); priority=MEDIUM
  2932. * New dpkg-name from Erick (<pkg>_<version>_<arch>.deb convention).
  2933. * Disappeared packages can't own conffiles any more ! (Bug#3214.)
  2934. * install-info creates Miscellaneous sections with a newline
  2935. following the heading. (Bug#3218.)
  2936. * cleanup-info script installed in /usr/sbin; called as appropriate
  2937. by postinst. Thanks to Kim-Minh Kaplan. (Bug#3125.)
  2938. * Allow superseded Essential packages to be purged after they've
  2939. been removed (clear the Essential flag on removal, and ignore it
  2940. on packages that are in stat_configfiles).
  2941. * dselect disk methods understand `y' as well as `yes' for using
  2942. development tree.
  2943. * dselect doesn't make packages appear as `new' again if update
  2944. of available packages fails.
  2945. * dselect places method selection cursor over option last selected.
  2946. * dpkg-scanpackages doesn't die when repeated packages are found.
  2947. * dpkg-scanpackages allows many old maintainers (`//'-separated).
  2948. * `Version' field is now mandatory (some operations already
  2949. wouldn't work right anyway if it was't there).
  2950. * update-rc.d(8) now says you must remove the script. (Bug#3215.)
  2951. * dpkg --force-help says that --force-overwrite is on by default.
  2952. * dpkg-deb manpage rewritten.
  2953. * debian.README (= /usr/doc/copyright/dpkg) edited slightly.
  2954. * Some database parsing grunge removed (pdb_preferversion, &c).
  2955. * Source tree doc/sgml contains some embryonic manuals.
  2956. * Leftover files in lib directory in source tree deleted.
  2957. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Mon, 10 Jun 1996 03:52:01 +0100
  2958. dpkg (1.2.3); priority=HIGH
  2959. * install-info doesn't replicate section headings (Bug#3125, #2973).
  2960. * New dpkg-name manpage broken off from script (oops!).
  2961. * dselect help screens made consistent with new strings, flags, &c.
  2962. * dselect error flag column labelled E (Error), not H (Hold).
  2963. * `Escape' no longer bound to `exit list without saving' in dselect.
  2964. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Tue, 28 May 1996 02:14:57 +0100
  2965. dpkg (1.2.2); priority=MEDIUM
  2966. * Fixed dselect coredump found by Erick Branderhorst (thanks).
  2967. * Sort obsolete removed packages separately, not under Available.
  2968. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 23 May 1996 21:31:05 +0100
  2969. dpkg (1.2.1); priority=MEDIUM
  2970. * `=' key in dselect really does `hold' rather than `unhold'.
  2971. * dselect dependency processing now interacts better with `hold'.
  2972. * dselect `I' key (not `i') modifies display of the info window.
  2973. * dselect shows unavailable packages as being unavailable.
  2974. * dselect main menu headings and many other strings changed to try to
  2975. discourage people from deselecting every package and using [R]emove.
  2976. Notably, `select' changed to `mark' throughout.
  2977. * dselect disk methods now print a few fewer double slashes.
  2978. * dselect disk access methods will offer to use dpkg --record-avail
  2979. to scan the available packages, if no Packages file is found.
  2980. * New dpkg --compare-versions option, for the benefit of scripts &c.
  2981. * New dpkg --clear-avail option forgets all available packages info.
  2982. * New dpkg --print-avail option, prints `available' data (from Packages, &c).
  2983. * dpkg usage message is more informative, but no longer fits on screen.
  2984. * dpkg --avail option renamed --record-avail.
  2985. * Latest dpkg-name from Erick Branderhorst.
  2986. * dpkg-scanpackages has more sensible problem reporting.
  2987. * postinst configure now gets null argument (not <unknown> or <none>)
  2988. when there is no previously configured version.
  2989. * Guidelines say that postinst configure is given previous version.
  2990. * Guidelines don't refer to maintainer-script-args.txt in main text.
  2991. * Guidelines (Texinfo source) uploaded separately.
  2992. * Own version of strcpy (used for debugging) removed.
  2993. * Interface to access methods document in source (doc/dselect-methods.txt).
  2994. * debian.buildscript moves changes file into parent directory.
  2995. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 22 May 1996 01:26:31 +0100
  2996. dpkg (1.2.0); priority=MEDIUM
  2997. * dselect can sort packages by available and installed states, and
  2998. display their version numbers. (Use O, o and V.)
  2999. * Hold is properly integrated as a real `wanted state', rather than
  3000. a separate flag.
  3001. * Epochs in version numbers implemented, using the syntax
  3002. <epoch>:<version>-<revision>. (Epoch not usually displayed.)
  3003. * dselect disk method is architecture-independent (uses dpkg's
  3004. installation architecture, and looks in the right part of the tree).
  3005. * dselect disk method doesn't try to satisfy the predependencies of
  3006. packages which are on hold.
  3007. * Fixed conflict-related assertion failure. (Bug#2784.)
  3008. * conffiles do not cause file conflicts if the conflicting package
  3009. is in the `configuration only' state. (Bug#2720.)
  3010. * Fixed messages where available version number was reported as installed
  3011. version in conflict and dependency messages. (Bug#2654, Bug#2974.)
  3012. * New format .deb files are default even for a.out compiles (but
  3013. a.out version of dpkg is in old format).
  3014. * Characters @:= (at colon equals) in package names now strictly
  3015. forbidden everywhere (_ is still allowed in existing packages).
  3016. * New dpkg --print-installation-architecture option prints installation
  3017. architecture (compiled in), rather than build architecture (determined
  3018. from gcc -print-libgcc-file-name).
  3019. * Version messages show whether compiled a.out or ELF (i386 only).
  3020. * Fixed missing space in version syntax error messages.
  3021. * Manpage dpkg.8 installed with warning about inaccuracy.
  3022. * Guidelines don't say to stop and restart daemons in runlevels 2345;
  3023. instead they say to start in 2345 and stop in 016.
  3024. * Guidelines and version messages say just Debian Linux.
  3025. * Guidelines typo fix `"stop2' => `"stop"'. (Bug#2867.)
  3026. * doc/Makefile.in clean properly deletes various guidelines.info* files.
  3027. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 16 May 1996 00:01:21 +0100
  3028. dpkg (1.1.6); priority=MEDIUM
  3029. * Check virtual dependencies when removing (ouch! - thanks SDE.)
  3030. * Fixed bug in internal database validity management that could
  3031. make dselect and dpkg dump core. (Bug#2613.)
  3032. * Fixed two coredumping bugs when using local diversions. (Bug#2804.)
  3033. * Fixed disappearance of overwritten packages. (Bug#2696.)
  3034. * install-info won't modify dir file before start of menu.
  3035. * install-info will create Miscellaneous heading if no sections yet.
  3036. * Only alphanums and +-. allowed in package names - enforced by
  3037. dpkg-deb --build and documented in Guidelines.
  3038. * dselect doesn't display packages unless they are installed, selected
  3039. or available.
  3040. * dselect doesn't show spurious section and priority headings.
  3041. * dselect has a few extra keybindings (from Lee Olds).
  3042. * --force message changed to `--force enabled' so that default is OK.
  3043. * dpkg-name now includes architecture component in .deb filename,
  3044. and translates - in package name to _.
  3045. * .deb file has architecture component in filename.
  3046. * Guidelines changed to say Pre-Depends is for experts only.
  3047. * Guidelines say to provide a unidiff (-u) rather than an old context diff.
  3048. * Guidelines say 755 root.root for shared libraries.
  3049. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 1 May 1996 00:47:22 +0100
  3050. dpkg (1.1.5); priority=MEDIUM (HIGH for diversions users)
  3051. * Fixed coredump when using diversions. (Bug#2603.)
  3052. * Fixed typo in dpkg-divert which could lose diversions. (Bug#2662.)
  3053. * --force-overwrite is the default.
  3054. * diversions.text provides better examples.
  3055. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Wed, 10 Apr 1996 13:59:30 +0100
  3056. dpkg (1.1.4); priority=MEDIUM
  3057. * Allow overwriting of conflicting packages being removed. (Bug#2614.)
  3058. * a.out control file says Pre-Depends: libc4 | libc. (Bug#2640.)
  3059. * ELF control file and libc dependencies changed to use finalised scheme.
  3060. * ELF control file and libc dependencies for i386 only. (Bug#2617.)
  3061. * Guidelines say use only released libraries and compilers.
  3062. * Install wishlist as /usr/doc/dpkg/WISHLIST.
  3063. * Remove spurious entries for Guidelines in info dir file.
  3064. * dpkg-deb --build checks permissions on control (DEBIAN) directory.
  3065. * Spaces in control file fields not copied by dpkg-split. (Bug#2633.)
  3066. * Spaces in split file part control data ignore. (Bug#2633.)
  3067. * Portability fixes, including patch from Richard Kettlewell.
  3068. * Fixed minor configure.in bug causing mangled GCC -W options.
  3069. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Thu, 4 Apr 1996 01:58:40 +0100
  3070. dpkg (1.1.3); priority=LOW
  3071. * dselect disk methods support Pre-Depends installation ordering.
  3072. * When dpkg fails and --auto-deconfigure would help it says so.
  3073. * dpkg --search output lists several packages with same file on one line.
  3074. * Improved dpkg usage message somewhat.
  3075. * dpkg-deb --build checks permissions and types of maintainer scripts.
  3076. * dpkg-deb --build treats misspecified conffiles as error, not warning.
  3077. * dpkg --print-architecture prints compiler's architecture while
  3078. dpkg --version (&c) print system's arch (this to help cross-compiling).
  3079. * More minor guidelines changes, including dir entry fixup.
  3080. * configure script caches more values.
  3081. * Changed maintainer email address to ian@chiark.chu.cam.ac.uk.
  3082. -- Ian Jackson <ian@chiark.chu.cam.ac.uk> Sat, 16 Mar 1996 19:18:08 +0000
  3083. dpkg (1.1.2); priority=LOW
  3084. * Packaging guidelines installed properly (and as guidelines
  3085. rather than debian-guidelines).
  3086. * ELF version has more checks to stop you wrecking your dpkg installation.
  3087. * dselect disk methods now look for a `local' tree as well, for
  3088. people who want locally-available software of various kinds.
  3089. * dpkg-divert has debugging message removed.
  3090. * Minor guidelines changes.
  3091. * Various makefile cleanups, mainly to do with ELF vs. a.out support.
  3092. * debian.rules cleans out ~ files itself, as well as calling make clean.
  3093. * debian.rules names .nondebbin.tar.gz file ELF too, if appropriate.
  3094. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 14 Mar 1996 03:38:29 +0000
  3095. dpkg (1.1.1elf); priority=LOW
  3096. * Added /usr/lib/dpkg/elf-executables-ok and elf-in-kernel.
  3097. * Replaces field now allows automatic removal of conflicting packages.
  3098. * Replaces field now required to overwrite other packages' files.
  3099. * Architecture field, and dpkg --print-architecture, supported.
  3100. * build new format archives by default when compiled with ELF compiler.
  3101. * symlinks are now installed atomically (good for shared libraries).
  3102. * create /var/lib/dpkg/diversions in postinst if necessary (Bug#2465.)
  3103. * Pre-Depends now correctly fails if package never configured.
  3104. * dselect disk methods mount with -o nosuid,nodev.
  3105. * update-rc.d defaults doesn't add both K and S in any one runlevel;
  3106. dpkg postinst fixes up this situation if it sees it.
  3107. * Assorted fixups to the Guidelines, which are now in one piece.
  3108. * dpkg --list prints version string in one piece.
  3109. * dpkg-scanpackages doesn't produce notice on output with list of
  3110. packages with Section and/or Priority control file fields.
  3111. * control file and debian.rules work both for ELF and non-ELF compiles.
  3112. * most files compiled with -O2 (-O3 only for some critical files) -
  3113. this fixes ELF build.
  3114. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Mar 1996 04:25:28 +0000
  3115. dpkg (1.1.0); priority=LOW
  3116. * dpkg supports Pre-Depends.
  3117. * postinst script gets most-recently-configured version as $2.
  3118. * lib/tarfn.c #includes <errno.h> (portability fix).
  3119. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 11 Feb 1996 21:07:03 +0000
  3120. dpkg (1.0.17); priority=LOW
  3121. * dpkg --recursive follows symlinks (useful for devel tree).
  3122. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Feb 1996 15:58:46 +0000
  3123. dpkg (1.0.16); priority=LOW
  3124. * dpkg-deb much faster reading new format archives. (Bug#2256.)
  3125. * Developers' documentation in /usr/doc/dpkg/, /usr/info/.
  3126. * Fixed typo in control file Description.
  3127. * configure script tries to improve matters wrt sysinfo.
  3128. * any debian-tmp.deb is deleted by `./debian.rules clean'.
  3129. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 4 Feb 1996 15:51:59 +0000
  3130. dpkg (1.0.15); priority=LOW
  3131. * dselect disk methods should never unmount things they didn't mount.
  3132. * debian.README aka /usr/doc/copyright updated.
  3133. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 15:05:39 +0000
  3134. dpkg (1.0.14); priority=MEDIUM
  3135. * fixed file descriptor leak in dpkg introduced in 1.0.11.
  3136. * included dpkg-name in this package (conflicts with dpkg-name).
  3137. * redraw in dselect main menu changed to use clearok (like in lists).
  3138. * sa_restorer in struct sigaction no longer used (portability fix).
  3139. * removed Guidelines from source package.
  3140. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 30 Jan 1996 02:52:29 +0000
  3141. dpkg (1.0.13); priority=MEDIUM
  3142. * dselect partition and mounted methods work again.
  3143. * dpkg-deb --no-act in usage message.
  3144. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 26 Jan 1996 18:37:03 +0000
  3145. dpkg (1.0.12); priority=MEDIUM (HIGH for users of 1.0.11)
  3146. * Fixed frequent dpkg coredump introduced in 1.0.11. (Bug#2219.)
  3147. * dpkg-deb ensures version numbers start with alphanumerics.
  3148. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 24 Jan 1996 00:42:31 +0000
  3149. dpkg (1.0.11); priority=MEDIUM
  3150. * corrected potentially serious problem with dpkg low-memory in-core
  3151. files database.
  3152. * dpkg-split --msdos puts output files in right directory. (Bug#2165.)
  3153. * diversions implemented - see `dpkg-divert --help'.
  3154. * dselect shows and uses (for dependencies) currently installed
  3155. version of a package if that is more recent.
  3156. * dpkg --force-... options are in separate help screen.
  3157. * better error messages for corrupted .deb archives. (Bug#2178.)
  3158. * dselect NFS method will unmount correct copy of NFS area if mounted
  3159. twice.
  3160. * removes some ELF compilation warnings.
  3161. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 Jan 1996 02:41:46 +0000
  3162. dpkg (1.0.10); priority=MEDIUM
  3163. * dpkg-deb option parsing unmuddled (-I option was removed
  3164. in 1.0.9 and broke dpkg-deb). (Bug#2124.)
  3165. * dpkg-split will work when ELF `ar' is installed, and is faster.
  3166. * nfs dselect method now available.
  3167. * disk methods don't prompt spuriously for Packages files.
  3168. * cdrom+harddisk methods can find Packages files.
  3169. * dpkg-scanpackages (creates Packages files) now in /usr/sbin.
  3170. * various changes to help compilation of dpkg-deb, dpkg-split
  3171. and md5sum on non-Debian systems.
  3172. * <sys/fcntl.h> replaced by <fcntl.h> throughout.
  3173. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 Jan 1996 02:55:19 +0000
  3174. dpkg (1.0.9); priority=MEDIUM
  3175. * dselect uninitialised variable coredump fixed (thanks Carl).
  3176. * version numbers printed by --version fixed. (Bug#2115.)
  3177. * disk method problem with missing Packages files fixed. (Bug#2114.)
  3178. * dependency version relationships now <= >= << >> =. (Bug#2060.)
  3179. * install-info is in /usr/sbin, not /usr/bin. (Bug#1924.)
  3180. * dpkg regards Revision field as obsolete.
  3181. * <asm/unistd.h> changed to <linux/unistd.h> (for m68k port).
  3182. * scripts/Makefile.in `clean' target deletes scripts.
  3183. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 11 Jan 1996 20:51:20 +0000
  3184. dpkg (1.0.8); priority=LOW
  3185. * update-alternatives slightly more helpful message. (Bug#1975.)
  3186. * cosmetic improvements to disk installation method. (Bug#1970,1956.)
  3187. * mounted filesystem and unmounted partition separate methods. (Bug#1957.)
  3188. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Dec 1995 04:07:47 +0000
  3189. dpkg (1.0.7); priority=MEDIUM (HIGH to upgrade syslogd)
  3190. * dselect harddisk/CDROM method script handles multiple package
  3191. areas.
  3192. * Everything has a manpage, though many are very unhelpful indeed.
  3193. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 30 Nov 1995 03:59:14 +0000
  3194. dpkg (1.0.6); priority=MEDIUM (HIGH to upgrade syslogd)
  3195. * conffiles can now be taken over properly from one package by
  3196. another which replaces it. (Bug#1482.)
  3197. * dpkg will not deconfigure essential packages when --auto-deconfigure
  3198. is set (this bug was fairly unlikely ever to be exercised).
  3199. * dpkg checks for the presence of certain important programs on the PATH.
  3200. * dselect is now more informative when a dependency is missing, saying
  3201. "<package> does not appear to be available". (Bug#1642, 1705).
  3202. * `make distclean' fixed; config.* &c removed from source archive.
  3203. * lib/lock.c now uses fcntl rather than flock, for better portability.
  3204. * `Package_Revision: 0' removed from control file.
  3205. * Some inaccuracies and bad formatting in various messages corrected.
  3206. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 21 Nov 1995 20:15:18 +0000
  3207. dpkg (1.0.5); priority=LOW
  3208. * dpkg-split allows some space for the header. (Bug#1649.)
  3209. * dpkg-split now has --msdos option for 8.3 filenames.
  3210. * dpkg-split --join &c will not complain about trailing garbage.
  3211. * dselect & dpkg will no longer ignore SIGHUP will running subprocesses.
  3212. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 13 Oct 1995 13:59:51 +0100
  3213. dpkg (1.0.4); priority=MEDIUM (HIGH for dselect users with 1.0.3)
  3214. * fixed bug which prevented dselect from displaying the bottom line of
  3215. any listing screen. This was introduced in 1.0.3, sorry !
  3216. * a conffile will never cause a prompt if the package maintainer
  3217. distributes a file identical to the user's, even if the file has
  3218. been edited by both the user and the maintainer or is a
  3219. newly-registered conffile. (Bug#1639.)
  3220. * dselect disk/cdrom method script says where to get Packages file.
  3221. * dselect help has better descriptions of the functions of Return and Q.
  3222. * postinst now warns about some problems with /usr/lib/dpkg/methods/hd.
  3223. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 12 Oct 1995 01:45:38 +0100
  3224. dpkg (1.0.3); priority=MEDIUM
  3225. * dselect: fixed segfault when doing some multiple (de)selections.
  3226. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 10 Oct 1995 03:21:12 +0100
  3227. dpkg (1.0.2); priority=MEDIUM
  3228. * problem with screen refresh after `o' (change order) corrected.
  3229. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 9 Oct 1995 13:11:04 +0100
  3230. dpkg (1.0.1); priority=LOW
  3231. * much better dpkg performance on low-memory systems.
  3232. * start-stop-daemon --name should now work. (oops!)
  3233. * fixed typo which could turn into memory overwriting bug sometime.
  3234. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 8 Oct 1995 20:12:29 +0100
  3235. dpkg (1.0.0); priority=LOW
  3236. * Version 1.0.0: dpkg is no longer beta.
  3237. * tar extractor no longer looks up an empty string using getgrnam
  3238. (this causes the libc to coredump when using NIS).
  3239. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 1 Oct 1995 13:07:36 +0100
  3240. dpkg (0.93.80); priority=LOW
  3241. * dselect help screen intro changed to remove `much' before `help'.
  3242. * update-alternatives.pl contains hardcoded ENOENT value, instead
  3243. of requiring POSIX.pm to be present.
  3244. * Makefiles changed to strip when installing instead of when building.
  3245. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 30 Sep 1995 01:44:12 +0100
  3246. dpkg (0.93.79) BETA; priority=LOW
  3247. * DPKG_NO_TSTP environment variable which stops dpkg sending the
  3248. process group a SIGTSTP (Bug#1496).
  3249. * End key should work in dselect lists (Bug#1501).
  3250. * various message typos (missing \n's) fixed (Bug#1504).
  3251. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 29 Sep 1995 03:27:01 +0100
  3252. dpkg (0.93.78) BETA; priority=LOW
  3253. * dselect keystrokes help file typo fix.
  3254. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 28 Sep 1995 20:31:02 +0100
  3255. dpkg (0.93.77) BETA; priority=MEDIUM
  3256. * dpkg --remove --pending will purge things when appropriate.
  3257. * fixed failure to null-terminate dpkg conflict problem messages.
  3258. * fixed bug in formatting of dependency version problem messages.
  3259. * Conffiles resolution prompt for new conffile: typo fixed.
  3260. * Changed dpkg usage error to suggest `-Dhelp' instead of `--Dhelp'.
  3261. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 23:44:35 +0100
  3262. dpkg (0.93.76) BETA; priority=MEDIUM
  3263. * dpkg --auto-deconfigure option (used automatically by dselect) allows
  3264. `important' packages which many others depend on to be split.
  3265. * dpkg should no longer fail an assertion during complicated
  3266. multiple configurations involving packages which are on hold.
  3267. * update-alternatives supports negative priorities.
  3268. * /etc/alternatives is included in the .deb archive.
  3269. * Package priorities changed: Required (Req), Important (Imp), Standard (Std),
  3270. Optional (Opt) and Extra (Xtr). For backward compatibility Base is an
  3271. alias for Required, and Recommended is kept as a level just below Standard.
  3272. * dselect shows introductory help screen when entering package lists (both
  3273. main and recursive).
  3274. * dselect help messages made more friendly.
  3275. * dselect package list `quit, confirm, and check dependencies' key is
  3276. now Return rather than lowercase `q'; likewise method list `select this
  3277. one and configure it' key.
  3278. * dselect selects packages with priority `standard' or better by default.
  3279. * dselect `v=verbose' becomes `v=terse' when in verbose mode.
  3280. * hard disk method unmounts /var/lib/dpkg/methods/mnt on failure.
  3281. * disk methods' install message uses `stty' to find out what the
  3282. interrupt character is, and uses that in the prompt (rather than ^C).
  3283. * dpkg now tolerates ^Z characters in Packages files.
  3284. * harddisk method doesn't display extra slash when updating packages file.
  3285. * harddisk method burbles less if it doesn't have a good default.
  3286. * dpkg-deb now supports new flexible format, but old format still default.
  3287. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 20 Sep 1995 02:49:41 +0100
  3288. dpkg (0.93.75) BETA; priority=MEDIUM
  3289. * dselect no longer segfaults when you try to modify the last item.
  3290. * dselect Makefile compiles with -g, and links without -s, but installs
  3291. with -s, so that built source directory has debugabble binary.
  3292. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 12 Sep 1995 02:59:29 +0100
  3293. dpkg (0.93.74) BETA; priority=LOW
  3294. * dpkg-split implemented and installed in /usr/bin/dpkg-split.
  3295. (NB this is not compatible with Carl Streeter's old dpkg-split script.)
  3296. * dpkg uses dpkg-split.
  3297. * floppy disk method available - NB this is a first attempt only.
  3298. * hard disk method uses --merge-avail rather than --update-avail.
  3299. * installation by default of `standard' packages removed again.
  3300. (I don't think this is the right place to do this.)
  3301. * update-alternatives --remove correctly deletes all slave links;
  3302. minor cosmetic improvements.
  3303. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 11 Sep 1995 02:06:05 +0100
  3304. dpkg (0.93.73) BETA; priority=LOW
  3305. * dselect multi-package selection now done by `divider' lines
  3306. actually in the package list, rather than horizontal highlight
  3307. movement.
  3308. * dselect help available, and keybindings rationalised.
  3309. * postinst removes /usr/lib/dpkg/methods/hd if upgrading from
  3310. 0.93.42.3 or earlier.
  3311. * `hold' flag changed to be settable by the user only, and
  3312. made orthogonal to the `reinstallation required' flag.
  3313. * dpkg will install by default any packages with priority of
  3314. `standard' or better unless they're explictly deselected.
  3315. * dselect dependency/conflict resolution will suggest marking absent
  3316. packages for `purge' rather than `deinstall'.
  3317. * disk method script produces message about invoking dpkg.
  3318. * dpkg produces warning, not error, when it gets EPERM trying to
  3319. remove a directory belonging to a package being removed.
  3320. * dpkg, dpkg-deb usage error reporting improved.
  3321. * dselect detects too-dumb terminals and stops.
  3322. * dpkg-deb(8) updated a little (thanks to Bill Mitchell).
  3323. * dselect debugmake script uses -O0.
  3324. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 10 Sep 1995 12:23:05 +0100
  3325. dpkg (0.93.72) BETA; priority=MEDIUM
  3326. * /usr/sbin/update-alternatives added.
  3327. * New names for certain control file fields (old names work
  3328. as aliases): Optional -> Suggests, Recommended -> Recommends,
  3329. Class -> Priority.
  3330. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 3 Sep 1995 16:37:41 +0100
  3331. dpkg (0.93.71) BETA; priority=LOW
  3332. * dpkg doesn't silently overwrite `new' conffiles (Bug#1283).
  3333. * case now not significant in Essential, Status and Class (Bug#1280).
  3334. * dselect checks method scripts for execute, not for write.
  3335. * spelling fixes in lib/dbmodify.c and dselect/helpmsgs.src.
  3336. * dselect `clean' target deletes helpmsgs.cc and helpmsgs.cc.new.
  3337. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 31 Aug 1995 13:56:08 +0100
  3338. dpkg (0.93.70) BETA; priority=MEDIUM
  3339. * dselect unmounted harddisk method has many silly bugs fixed.
  3340. * dpkg --root option restored (was removed by mistake in 0.93.68).
  3341. * minor cosmetic change to dselect subprocess failure message.
  3342. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
  3343. dpkg (0.93.69) BETA; priority=MEDIUM
  3344. * dpkg --configure and --remove should work properly when
  3345. they have to defer processing (this tends to happen when many
  3346. packages are processed at once). (Bug#1209.)
  3347. * dpkg --configure and --remove work better when `processing'
  3348. several related packages with --no-act.
  3349. * dpkg --auto is now two options, --pending or -a (for configure,
  3350. remove, &c) and --recursive or -R (for install, unpack, &c).
  3351. * dpkg debug options in usage message, and values available (-Dh).
  3352. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 9 Aug 1995 22:18:55 +0100
  3353. dpkg (0.93.68) BETA; priority=MEDIUM
  3354. * dpkg won't get an internal error if you try to use the default
  3355. conffiles response (ie, if you just hit return). (Bug#1208.)
  3356. * dselect hard disk and CD-ROM methods - the real thing, but ALPHA.
  3357. * dselect allows you to go straight to `update' or `install' if
  3358. you have already set up an access method.
  3359. * new dpkg options --yet-to-unpack, --merge-avail and --update-avail.
  3360. * dpkg -G is an abbreviation for dpkg --refuse-downgrade.
  3361. * dpkg -R alias for --root withdrawn, pending reuse with different meaning.
  3362. * dpkg --help message rationalised somewhat.
  3363. * Obsolete `examples' and `dpkg-split' directories removed from
  3364. source tree. The `hello' package is a better example.
  3365. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 7 Aug 1995 02:16:25 +0100
  3366. dpkg (0.93.67) BETA; priority=LOW for C dpkg alpha testers, HIGH for others
  3367. * dpkg no longer statically linked and -g.
  3368. * calls to abort() changed to print string, file and line number first.
  3369. * removed unused variable from dpkg source.
  3370. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 4 Aug 1995 01:39:52 +0100
  3371. dpkg (0.93.66) ALPHA; priority=MEDIUM
  3372. * dpkg will correctly remove overwritten files from the lists of
  3373. the package(s) that used to contain them.
  3374. * dpkg --purge is now an action, rather than a modifier for --remove,
  3375. and the -P alias for it is withdrawn.
  3376. * dpkg --unpack/--install filenames in messages are now more sensible
  3377. about when to use .../ (show as many trailing components as possible
  3378. in 40 characters, or the whole path if that the last component is
  3379. longer than that).
  3380. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 3 Aug 1995 02:11:03 +0100
  3381. dpkg (0.93.65) ALPHA; priority=MEDIUM
  3382. * dpkg --remove should, when a package being removed is depended-on
  3383. by another that is also queued for removal, defer the depended-on
  3384. package rather than aborting it. (Bug#1188.)
  3385. * dpkg will not attempt to configure or remove a package more than
  3386. once in the same run. (Bug#1169.)
  3387. * dpkg cosmetic fix to dependency problems message (this bug
  3388. hasn't been triggered to my knowledge).
  3389. * perl-dpkg no longer installed in /usr/bin.
  3390. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 2 Aug 1995 13:02:58 +0100
  3391. dpkg (0.93.64) ALPHA; priority=MEDIUM
  3392. * dpkg marks a package as no longer `to be configured in this run'
  3393. when an error occurs, so that other packages which depend on it
  3394. will fail (rather than causing a loop and an assertion failure,
  3395. packages.c:166: failed assertion `dependtry <= 4').
  3396. * dselect initial selection granularity is single-package.
  3397. * dpkg --no-also-select option renamed to --selected-only (old option
  3398. still accepted, but no longer in --help). Changed -N to -O.
  3399. * dselect `update' option changed to `install' (and other options
  3400. renamed too). NB: old access methods will not work, because
  3401. the `update' script should now be an `install' script.
  3402. * dselect `installation methods' renamed to `access methods'.
  3403. * dpkg --skip-same-version and --refuse-downgrade produce friendlier
  3404. messages when they skip packages.
  3405. * --licence option now properly mentioned in all programs' --version
  3406. messages.
  3407. * bad fix for ELF compile problem involving myopt.h removed (compile
  3408. problem turned out to be a GCC bug.)
  3409. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 1 Aug 1995 03:03:58 +0100
  3410. dpkg (0.93.63) ALPHA; priority=LOW
  3411. * preinst works around shell bug/misfeature involving `trap'.
  3412. * dpkg --skip-same-version doesn't skip packages which have
  3413. an error flag set or which aren't in a standard `installed' state.
  3414. * dpkg --search now does a substring search if the string doesn't
  3415. start with a wildcard character (*, [ or ?) or slash.
  3416. * problem with C/C++ linkage of stuff in "myopt.h" fixed, to help
  3417. with compiling with GCC 2.7.0.
  3418. * dselect Makefile.in `clean' deletes curkeys.inc &c, so that they are
  3419. not shipped in the distribution source and will be rebuilt on the
  3420. target system.
  3421. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 27 Jul 1995 13:38:47 +0100
  3422. dpkg (0.93.62) ALPHA; priority=HIGH
  3423. * dpkg purges leftover control scripts from /var/lib/dpkg/tmp.ci,
  3424. rather than associating them with the wrong package. (Bug#1101.)
  3425. * dpkg won't `disappear' packages containing no files or directories,
  3426. nor a package required for depends/recommended. (Bug#1128.)
  3427. * dpkg follows directory symlinks. (Bug#1125.)
  3428. * dselect fixups for ELF/GCC2.7.0 compilation.
  3429. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 21 Jul 1995 21:43:41 +0100
  3430. dpkg (0.93.61) ALPHA; priority=LOW
  3431. * dselect keybindings and status characters and descriptions changed
  3432. (in pursuance of Bug#1037, user interface problems, still open.)
  3433. * Some cleanups to fix mistakes discovered by ELF-GCC 2.7.0, and fixup
  3434. for newer C++ draft standard (`for' variable declaration scope change).
  3435. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 18 Jul 1995 01:42:51 +0100
  3436. dpkg (0.93.60) ALPHA; priority=HIGH
  3437. * dpkg doesn't think packages have `disappeared' if you install
  3438. several packages at once. (later reported as Bug#1132.)
  3439. * usage error messages tidied up.
  3440. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 17:56:56 +0100
  3441. dpkg (0.93.59) ALPHA; priority=HIGH
  3442. * dpkg doesn't break maintainer scripts &c if package `foo' exists
  3443. when processing package `foobar'. (Related to Bug#1101.)
  3444. * dpkg implements `disappear' functionality.
  3445. * dpkg/dselect remove dead entries from /var/lib/dpkg/status.
  3446. * dpkg --list now sorted correctly and output somewhat improved.
  3447. * some debugging messages moved from dbg_stupidlyverbose to dbg_scripts.
  3448. * dpkg prints `Removing foo' message even if foo is not configured.
  3449. * dpkg only prints `serious warning: files list file ... missing'
  3450. once for each package.
  3451. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 16 Jul 1995 02:32:11 +0100
  3452. dpkg (0.93.58) ALPHA; priority=HIGH
  3453. * dpkg should write out status even for packages which it has only
  3454. encountered in the `available' file so far.
  3455. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 20:19:21 +0100
  3456. dpkg (0.93.57) ALPHA; priority=LOW
  3457. * dpkg does chroot when running maintainer scripts (--instdir
  3458. should work right now, though I haven't been able to test it).
  3459. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 14 Jul 1995 01:32:30 +0100
  3460. dpkg (0.93.56) ALPHA; priority=HIGH
  3461. * dpkg can now overwrite symlinks to directories, and will
  3462. do correct handling of symlinks to plain files.
  3463. * dpkg should not replace any directory with a symlink.
  3464. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 13 Jul 1995 02:43:36 +0100
  3465. dpkg (0.93.55) ALPHA; priority=MEDIUM
  3466. * dpkg can now extract hardlinks.
  3467. * dpkg configuration/removal works in the presence of dependency cycles.
  3468. * dpkg should no longer fail an assertion at processarc.c:193.
  3469. -- Ian Jackson <iwj10@cus.cam.ac.uk> Wed, 12 Jul 1995 01:34:44 +0100
  3470. dpkg (0.93.54) ALPHA; priority=MEDIUM
  3471. * dpkg and dselect no longer throw away all Class and Section
  3472. information in /var/lib/dpkg/available. (Oops.)
  3473. * dpkg --refuse-<something> now works (this broke some dselect
  3474. method scripts' attempts to use --refuse-downgrade).
  3475. * dpkg --audit and --list implemented.
  3476. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 10 Jul 1995 00:35:13 +0100
  3477. dpkg (0.93.53) ALPHA; priority=LOW
  3478. * dpkg --install/--unpack only skips on-hold packages with --auto.
  3479. * dpkg doesn't fclose() the --fsys-tarfile pipe twice.
  3480. * dpkg error handling and reporting cleaned up.
  3481. * dpkg now lists any failed packages/files just before exiting.
  3482. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 9 Jul 1995 16:31:36 +0100
  3483. dpkg (0.93.52) ALPHA; priority=MEDIUM
  3484. * dpkg won't segfault due to missing (Package_)Revision fields.
  3485. * dpkg --search works.
  3486. * dpkg will set execute permissions on scripts if necessary.
  3487. * dpkg prints filenames in --unpack and --install.
  3488. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 12:41:39 +0100
  3489. dpkg (0.93.51) ALPHA; priority=HIGH
  3490. * dpkg --status and --listfiles now work.
  3491. * dpkg --remove --auto won't try to remove everything (!)
  3492. * dpkg --unpack doesn't coredump after unpacking the first package.
  3493. * dpkg won't fail an assertion if it bombs out of --configure
  3494. or --remove because of too many errors.
  3495. * Support for `Essential' in dpkg (not yet in dselect).
  3496. * `available' (Packages) file class and section override those
  3497. from package control files.
  3498. * `Essential: yes' added to control file.
  3499. * Locking strategy changed, now uses flock (no more stale locks).
  3500. * preinst now more helpful about conffiles upgrade problem.
  3501. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 8 Jul 1995 01:15:26 +0100
  3502. dpkg (0.93.50) ALPHA
  3503. * C dpkg now in service.
  3504. * dselect now installs in /usr/bin instead of /usr/sbin.
  3505. * Improved `explanation of display' help and changed HSOC to EIOW.
  3506. * dselect goes back to top of info display when you move the
  3507. highlight.
  3508. * Added <sys/types.h> to md5sum/md5.c, for the benefit of FreeBSD.
  3509. * --admindir doesn't append `var/lib/dpkg' to its argument.
  3510. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
  3511. dpkg (0.93.42.3) BETA; priority=LOW
  3512. * Rebuilt using ncurses 1.9.2c-0.
  3513. * Silenced `subcritical error' message if errno == ENOENT.
  3514. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 12 Jun 1995 13:09:24 +0100
  3515. dpkg (0.93.42.2) BETA; priority=HIGH
  3516. * install-info --remove properly removes multi-line entries.
  3517. * Slightly changed ^L redraw code in dselect package list.
  3518. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sat, 10 Jun 1995 14:06:01 +0100
  3519. dpkg (0.93.42.1) BETA; priority=HIGH esp. for new installations
  3520. * update-rc.d default no longer adds K entries in runlevels 2345.
  3521. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 6 Jun 1995 18:56:23 +0100
  3522. dpkg (0.93.42) BETA; priority=LOW; HIGH for dselect users
  3523. * Fix unitialised variable reference bug in dselect (#890).
  3524. * Fix problem with wordwrapping package and method descriptions.
  3525. * Create /var/lib/dpkg/methods/mnt.
  3526. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 19 May 1995 21:03:08 +0100
  3527. dpkg (0.93.41) BETA; priority=LOW
  3528. * Create /var/lib/dpkg/methods.
  3529. * dpkg.pl noisily ignores --skip-same-version rather than barfing.
  3530. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 13:28:27 +0100
  3531. dpkg (0.93.40) BETA; priority=LOW
  3532. * dselect's subprogram failure message made to stand out more.
  3533. * When switching out of curses, always move the cursor to the
  3534. bottom right corner of the screen.
  3535. -- Ian Jackson <iwj10@cus.cam.ac.uk> Tue, 16 May 1995 01:03:38 +0100
  3536. dpkg (0.93.39) BETA; priority=LOW
  3537. * dselect can now:
  3538. - allow you to select and configure an installation method;
  3539. - invoke installation method scripts to update the available file
  3540. and unpack packages;
  3541. - invoke dpkg to configure and remove packages.
  3542. There are no installation methods available yet.
  3543. * Search feature in dselect works (it was purely an ncurses bug).
  3544. * dpkg-*.nondebbin.tar.gz now available (built by debian.rules).
  3545. * The target directory for dpkg-deb --extract (also available as
  3546. dpkg --extract) is no longer optional. dpkg-deb suggests the use
  3547. of dpkg --install if you omit it.
  3548. * Added <errno.h> to lib/lock.c and fixed ref. to `byte' in
  3549. md5sum/md5.c, for portability to Solaris 2.
  3550. * Rebuilt `configure' and `config.h.in' using autoconf 2.3.
  3551. * Revised function attribute support checking in configure script.
  3552. * Removed obsolete `dselect.pl' from scripts directory.
  3553. * New option --licence on all the C programs.
  3554. -- Ian Jackson <iwj10@cus.cam.ac.uk> Sun, 14 May 1995 18:05:38 +0100
  3555. dpkg (0.93.38) BETA; priority=MEDIUM
  3556. * Version number comparisons (in dpkg and dselect) now >= <=
  3557. as documented (Bug#831; thanks to Christian Linhart).
  3558. * dselect now has a non-superuser readonly mode.
  3559. * dselect doesn't pop up unsatisfied `Optional's when quitting.
  3560. * `unable to delete saved old file' message fixed dpkg_tmp to dpkg-tmp.
  3561. * Made dpkg convert `revision' to `package_revision' when reading
  3562. (eg) the `status' file. libdpkg.a has `revision' as a synonym
  3563. for `package_revision' and writes the former.
  3564. * Major improvements and many changes to C option parsing, database
  3565. management, error handling, Makefiles &c to support dpkg.
  3566. * dpkg-deb should now work if sizeof(void*) < sizeof(void(*)()).
  3567. -- Ian Jackson <iwj10@cus.cam.ac.uk> Mon, 24 Apr 1995 12:34:39 +0100
  3568. dpkg (0.93.37) BETA; priority=LOW (MEDIUM for dselect users)
  3569. * Fixed segfault if no description available (Bug#735);
  3570. thanks to Peter Tobias for the bug report.
  3571. * Fixed other assorted minor bugs in description displays.
  3572. * Changed dpkg-deb --info short option from -i to -I, to make
  3573. it unique across dpkg and dpkg-deb (-i still works with
  3574. dpkg-deb for backwards compatibility).
  3575. * Produce more sensible error when main package list is empty.
  3576. -- Ian Jackson <iwj10@cus.cam.ac.uk> Fri, 7 Apr 1995 02:24:55 +0100
  3577. dpkg (0.93.36) BETA; priority=LOW (MEDIUM for dselect users)
  3578. * All the C code (including dselect) updated to support `provides'
  3579. (virtual packages).
  3580. * Revamped dselect's related package selection/deselection
  3581. algorithms.
  3582. * Everything can now handle arbitrary `class' values (as well
  3583. as the predefined ones which we understand and can interpret).
  3584. * Fixed bug that prevented display update when moving down a small
  3585. recursive package list in dselect.
  3586. * Column heading characters corrected from `SHOC' to `HSOC'.
  3587. -- Ian Jackson <iwj10@cus.cam.ac.uk> Thu, 6 Apr 1995 12:48:13 +0100
  3588. dpkg (0.93.35) BETA; priority=MEDIUM
  3589. * Preserve ownerships and permissions on configuration files.
  3590. * Fix bug in conffile updating that could leave a hardlink
  3591. <foo>.dpkg-new to the conffile <foo>.
  3592. * Improved dselect's package list help messages.
  3593. * Highlight now moves on after (de)selecting just one package.
  3594. * Better algorithm for scrolling up/down when moving highlight.
  3595. * Fixed bug in display of `preformatted' extended Description lines.
  3596. (dselect is still ALPHA, but is fairly stable.)
  3597. * Improved dpkg's message when configuring a package that doesn't
  3598. exist, and when selecting or skipping a package that isn't
  3599. currently selected (during unpack processing).
  3600. * Description in control file expanded.
  3601. * Scroll back to top when changing what is in the `info' area.
  3602. dpkg (0.93.34) BETA; priority=LOW (HIGH for dselect users)
  3603. * dselect: Fixed bug which caused a coredump if you exited the
  3604. package list if you'd made any changes. Ouch !
  3605. * dselect: Improved selection algorithm to show fewer extraneous
  3606. packages; improved display for unavailable packages.
  3607. * dpkg: Improved progress messages during unpacking somewhat.
  3608. dpkg (0.93.33) BETA; priority=LOW (HIGH for dselect users)
  3609. * dselect now has a main menu.
  3610. * Fixed nasty uninitialised data bug in dselect.
  3611. * dselect now locks and unlocks the packages database.
  3612. Mon, 27 Mar 1995 03:30:51 BST Ian Jackson <iwj10@cus.cam.ac.uk>
  3613. * dpkg (0.93.32): Alpha dselect released and installed in
  3614. /usr/sbin/dselect.
  3615. * dpkg (0.93.32): Many portability enhancements: should now
  3616. compile using GCC 2.6.3, and dpkg-deb should
  3617. compile better on non-Linux systems.
  3618. * dpkg (0.93.32): dpkg will not loop if its stdin disappears
  3619. and it needs to prompt.
  3620. * dpkg (0.93.32): Fixed removal dependency error to show
  3621. correct package (Bug #648).
  3622. * dpkg (0.93.32): Tidied up copyright notices.
  3623. * dpkg (0.93.32): First draft of update-rc.d manpage, not yet
  3624. installed in /usr/man.
  3625. * dpkg (0.93.32): Changes to top-level Makefile.in to improve
  3626. error trapping.
  3627. * dpkg (0.93.32): Improved Makefile `clean' and `distclean'
  3628. targets.
  3629. * dpkg (0.93.32): Deleted irrelevant `t.c' from lib and
  3630. dselect directories.
  3631. * dpkg (0.93.32): Added vercmp.c with version comparison code.
  3632. * dpkg (0.93.32): varbufextend message changed - varbufs not
  3633. just for input buffers.
  3634. * dpkg (0.93.32): varbuf has C++ member functions in header
  3635. #ifdef __cplusplus.
  3636. Changes in dpkg 0.93.31:
  3637. * start-stop-daemon --pidfile now works (Bug#571).
  3638. * Fixed dependency processing bugs which could require a rerun of
  3639. dpkg --configure (Bug#566).
  3640. * Fixed garbage output for `language' of control file in dpkg-deb --info.
  3641. Changes in dpkg 0.93.30:
  3642. * Added /usr/sbin/start-stop-daemon.
  3643. Changes in dpkg 0.93.09:
  3644. * Made postinst scripts really be run when dpkg --purge used.
  3645. * Added new --force-extractfail option - VERY DANGEROUS.
  3646. Changes in dpkg 0.93.28:
  3647. * Removed undef of 0x_p21 in read_database_file, which caused the
  3648. the whole status database to become trashed when any update files
  3649. were read.
  3650. * Make infinite-loop prevention and cycle detection work.
  3651. * Made findbreakcycle work (ie, break properly when cycle detected).
  3652. * New script, update-rc.d, to update links /etc/rc?.d/[KS]??*.
  3653. * dpkg.pl now sets the umask to 022.
  3654. * Cosmetic error message fix to dpkg-deb.
  3655. * Deleted OLD directory altogether.
  3656. * Improved error-trapping in top-level Makefile loops.
  3657. Changes in dpkg 0.93.27:
  3658. * Make version number specifications in Depends &c work.
  3659. * Added AC_PROG_CXX to autoconf.in for dselect.
  3660. * Changed myopt.h not to have cipaction field in cmdinfo (this was
  3661. specially for dpkg-deb) - now we have a generic void*.
  3662. * Renamed `class' member of `pkginfoperfile' to `clas' [sic].
  3663. * Much work in `dselect' subdirectory.
  3664. * Deleted executables, objects and libraries from OLD tree !
  3665. * Minor changes to various copyright notices and top-of-file comments.
  3666. * Don't install nasty Perl dselectish thing as /usr/bin/dselect.
  3667. Changes in dpkg 0.93.26:
  3668. * Added --no-also-select instead of not auto-selecting on --unpack
  3669. but doing so on --install; removed --force-unpack-any.
  3670. Changes in dpkg 0.93.25:
  3671. * Fixed duplicate output (failure to flush before fork) bug.
  3672. * More clarification of md5sum.c copyright.
  3673. * Corrected typo in ChangeLog in 0.93.24 source package.
  3674. Changes in dpkg 0.93.24:
  3675. * dpkg could copy conffiles info from one package to another. Aargh.
  3676. Bug #426.
  3677. * dpkg failed to initialise status if you tried to remove or
  3678. configure a nonexistent package. Bug #419.
  3679. * install-info now handles START-INFO-DIR-ENTRY entries like:
  3680. * Gdb:: The GNU debugger.
  3681. Previously it would only accept (Bug #407):
  3682. * Gdb: (gdb). The GNU debugger.
  3683. * When installing a new foo.info[.gz], install-info now replaces
  3684. * Foo: (foo.info). The Gnoo Foo.
  3685. as well as just * Foo: (foo). ...
  3686. * Moved option parsing out of dpkg-deb into libdpkg.
  3687. * Assorted minor source code rearrangements.
  3688. * Fixed assorted copyright notices, clarified md5sum copyright.
  3689. * Corrected typo in 0.93.23 source package's ChangeLog.
  3690. Changes in dpkg 0.93.23:
  3691. * `dpkg-deb' --build now does a syntax check on the control file.
  3692. * `dselect' is now no longer called `debian', spurious copy removed
  3693. from package top-level source directory.
  3694. * C control information parsing complete and somewhat tested.
  3695. * Moved `global' include files into $(srcdir)/include from ../lib,
  3696. added some files to the lib Makefile, and arranged for pop_cleanup().
  3697. Changes in dpkg 0.93.22:
  3698. * Fixed bug which caused dpkg to see failures of md5sum where there
  3699. were none (would also have caused dpkg to miss a real failure).
  3700. * Fixed failure to update some `status' database fields.
  3701. Changes in dpkg 0.93.21:
  3702. * Fixed error-handling bug which could corrupt database.
  3703. Changes in dpkg 0.93.20:
  3704. * Fixed bug which ran old (/var/adm/dpkg) postinst scripts.
  3705. * Fixed dpkg usage message which claimed -i => both --install & --info.
  3706. * Use Colin Plumb's MD5 code - faster, and better copyright.
  3707. * Manpages: dpkg-deb(8), deb-control(5), deb(5) - thanks to Raul
  3708. Deluth Miller. Also, an xfig picture of some C program innards.
  3709. Changes in dpkg 0.93.19:
  3710. * Don't delete the `list' file from the dpkg database.
  3711. * Fixed various bugs in the conffile handling.
  3712. * Conffiles that are symlinks will now be treated as if the
  3713. `dereferenced' name of the file was listed in conffiles. This means
  3714. that /etc/foo -> /usr/etc/foo will cause all conffile updates of
  3715. /etc/foo to create /usr/etc/foo.dpkg-tmp &c instead. However, the
  3716. link will be removed if --purge is used to delete all the conffiles.
  3717. * When doing a new installation, or when updating a conffile that
  3718. wasn't listed as a conffile in the old version of the package, don't
  3719. do any prompting but just install the version from the archive.
  3720. * Corrected error message if exec of dpkg --vextract failed
  3721. and --instroot or --root specified.
  3722. * Added new --force-unpack-any option.
  3723. * Extra newline after --status output.
  3724. * Added -W options to CFLAGS.
  3725. * Fixed mistake in previous ChangeLog entry.
  3726. Changes in dpkg 0.93.18:
  3727. * Fixed invocation of dpkg-deb --vextract if --root or --instdir
  3728. not specified.
  3729. * Create /var/lib/dpkg/updates.
  3730. Changes in dpkg 0.93.17:
  3731. * install-info --remove exits with status 0 if it doesn't find the
  3732. thing to remove, instead of status 1.
  3733. * Error handling functions have __attribute__((format...)) if GCC.
  3734. * push_cleanup its arg takes void **argv instead of char **argv.
  3735. * Top-level Makefile.in has set -e before `for' loops.
  3736. * dpkg-deb --info not-an-existing-file produces fewer error messages.
  3737. Changes in dpkg 0.93.16:
  3738. * Made --root= option really extract to $instroot instead of `/'.
  3739. * install-info clears the 0444 bits in its umask.
  3740. * Fixed a few database handling bugs which cause dpkg always to fail,
  3741. and usually to corrupt the status database in various ways.
  3742. * dpkg-deb completely rewritten, now doesn't tinker with
  3743. /var/{adm,lib}/dpkg. Should be faster.
  3744. * Directory structure and Makefiles in source package reorganised.
  3745. Changes in dpkg 0.93.15:
  3746. * Added `debian' (dselect), still very primitive.
  3747. * Database format changed, and moved from /var/adm to /var/lib.
  3748. * Added dpkg --avail mode, --list, --status and --search.
  3749. * Set of dpkg => dpkg-deb pass-through operations changed (but
  3750. dpkg-deb not yet updated).
  3751. * Added --root, --admindir and --instdir, as well as --isok &c.
  3752. * Moved much stuff into /usr/lib/dpkg-lib.pl, rewritten status
  3753. database handling.
  3754. * Put packages in `purge' state even if `deinstall' requested if
  3755. they have no postrm and no conffiles.
  3756. * Version number comparisons fixed.
  3757. * insert-version.pl now installes lib.pl filename too.
  3758. * Strip trailing slashes when reading files from file lists.
  3759. Changes in dpkg 0.93.14:
  3760. * Fixed parsing of DEPENDS &c fields with trailing whitespace.
  3761. * postinst now fixes up broken ispell.control file.
  3762. * Cyclic dependency/multiple package removal processing: don't consider
  3763. packages we've just removed when looking for a reason not to go ahead.
  3764. * Added call to postinst with `purge' argument for expunging old
  3765. configuration etc. that aren't listed in conffiles.
  3766. Changes in dpkg 0.93.13:
  3767. * sub S_ISREG defined in dpkg.pl.
  3768. * Checking of DEPENDS &c fields was too lax, causing an internal error
  3769. if you fed it certain kinds of broken control file.
  3770. * Fixed misleading message from bogus installationstatus call.
  3771. * New -u and -U options to dpkg-deb which don't unpack the /DEBIAN
  3772. directory, and use these in dpkg.pl; clean up /DEBIAN in postinst.
  3773. Changes in dpkg 0.93.12:
  3774. * No longer needs *.ph files, since these appear to be broken.
  3775. * Postinst fixes up *.control files with curly brackets.
  3776. * embryo of dselect.
  3777. Changes in dpkg 0.93.11:
  3778. * New --ignore-depends option.
  3779. * This ChangeLog changed format here.
  3780. Wed Nov 30 15:38:21 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
  3781. * dpkg 0.93.11 released.
  3782. * conffile updating fixed.
  3783. * Message `updgrade' in dpkg changed to `replace'.
  3784. * install-info now copes with multi-line entries.
  3785. * version numbers now done automatically in dpkg and install-info.
  3786. * more debugging around conffiles updates.
  3787. * *.hash files not deleted so soon.
  3788. * adds brand new packages to status array so we can install them.
  3789. * postinst does h2ph for {sys,linux}/{stat,types}.ph if required.
  3790. Mon Nov 28 02:00:13 GMT 1994 Ian Jackson <iwj10@cus.cam.ac.uk>
  3791. * dpkg 0.93.10 released.
  3792. * dpkg.pl completely rewritten.
  3793. * dpkg-deb: removed dabase-processing and --install option.
  3794. * Makefiles reworked, debian.rules added.
  3795. * Don't install anything in /usr/doc/examples.
  3796. * dpkg-*.deb contains /usr/bin/dpkg-deb.dist, fixed up by postinst.
  3797. Thu Oct 20 13:22:20 1994 Ian Murdock (imurdock@debra.debian.org)
  3798. * dpkg 0.93.9 released.
  3799. * dpkg.pl: Use $argument, not $package, with `--build'.
  3800. Make sure that saved postinst scripts are executable.
  3801. Tue Oct 18 09:40:57 1994 Ian Murdock (imurdock@debra.debian.org)
  3802. * dpkg 0.93.8 released.
  3803. * deb/remove.c (pkg_remove): Do not report an error from rmdir ()
  3804. when `errno' is ENOTEMPTY (Directory not empty), because in this
  3805. case we have found the highest-level directory in the package and
  3806. are ready to exit the loop (i.e., it is a normal occurrence).
  3807. Mon Oct 17 10:44:32 1994 Ian Murdock (imurdock@debra.debian.org)
  3808. * Makefile.in: Adapted all Makefiles to the GNU Coding Standards.
  3809. * deb/remove.c (pkg_remove): Make sure that parent directories are
  3810. removed LAST! This will result in complete removal of packages
  3811. when --remove is called. dpkg 0.93.7 (and earlier) had problems
  3812. with this because it tried to remove directories in order, which
  3813. will work most of the time, but not necessarily all of the time.
  3814. * deb/list.c (pkg_list): Output is sorted by package name.
  3815. Tue Oct 4 12:27:10 1994 Ian Murdock (imurdock@debra.debian.org)
  3816. * deb/contents.c (pkg_contents): When a list file cannot be
  3817. opened, silently fail and let the front-end explain the problem.
  3818. * deb/util.c (return_info): When a control file cannot be opened,
  3819. silently fail and let the front-end explain the problem.
  3820. * deb/search.c (pkg_search): Exit 0 if the regular expression is
  3821. matched and 1 if it is not.
  3822. Mon Oct 3 18:38:53 1994 Ian Murdock (imurdock@debra.debian.org)
  3823. * dpkg.pl: New file. Replaces dpkg.sh.
  3824. * deb/Makefile.in: Renamed `dpkg-util.deb' to `dpkg-deb'.
  3825. * deb/build.c (pkg_build): `--build' is less verbose, instead
  3826. letting the front-end add verbosity where appropriate.
  3827. * deb/install.c (pkg_install): Ditto.
  3828. * deb/remove.c (pkg_remove): Ditto.
  3829. * deb/search.c (pkg_search): Ditto.
  3830. * deb/describe.c (pkg_describe): `--describe' is less verbose,
  3831. instead letting the front-end add verbosity where appropriate.
  3832. The ``Description:'' label has been removed.
  3833. * deb/version.c (pkg_version): `--version' is less verbose,
  3834. instead letting the front-end add verbosity where appropriate.
  3835. The ``Version:'' label has been removed, as has the maintainer
  3836. information.
  3837. Mon Sep 12 14:22:04 1994 Ian Murdock (imurdock@debra.debian.org)
  3838. * deb/version.c (pkg_version): `--version' now reports the
  3839. version number of dpkg if no argument is specified.
  3840. Thu Sep 1 13:31:37 1994 Ian Murdock (imurdock@debra.debian.org)
  3841. * dpkg 0.93.7 released.
  3842. * deb/build.c (pkg_build): check status and exit if non-zero.
  3843. * deb/contents.c (pkg_contents): ditto.
  3844. * deb/install.c (archive_extract): ditto.
  3845. Thu Sep 1 13:20:08 1994 Ian Murdock (imurdock@debra.debian.org)
  3846. * deb/version.c (pkg_version): indent to the same point as
  3847. pkg_describe.
  3848. Thu Sep 1 12:21:11 1994 Ian Murdock (imurdock@debra.debian.org)
  3849. * Makefile.in (dist): added debian.rules binary, source and
  3850. dist targets to make final distribution easier to make.
  3851. (install): install programs to /usr/bin.
  3852. * deb/Makefile.in (install): install programs to /usr/bin.
  3853. * deb/list.c (pkg_list): enforce a maximum limit of ten characters
  3854. for the package name in the output.
  3855. (pkg_list): left-justify the version number to make it easier for
  3856. the front-end to parse the output.
  3857. (pkg_list): replace first '\n' character in packages[n].description
  3858. with '\0'.
  3859. * deb/install.c (archive_extract): use the `p' option to `tar' to
  3860. ensure that permissions are preserved.
  3861. Sat Aug 27 09:53:37 1994 Ian Murdock (imurdock@debra.debian.org)
  3862. * dpkg 0.93.6 released.
  3863. * deb/util.c (return_info): only unlink CONTROL if ARCHIVE_FLAG is
  3864. true!
  3865. Fri Aug 26 15:38:22 1994 Ian Murdock (imurdock@debra.debian.org)
  3866. * dpkg 0.93.5 released.
  3867. * deb/contents.c (pkg_contents): merged function archive_contents
  3868. into function pkg_contents.
  3869. * deb/contents.c (pkg_contents): use lstat (rather than stat) so
  3870. that symbolic links are recognized.
  3871. (pkg_contents): print the usual `<path> -> <link_to>' now that we
  3872. recognize symbolic links.
  3873. * deb/util.c (return_info): create a FIFO to pipe the needed
  3874. information to the ``formatter'' rather than creating a directory
  3875. in /tmp for the package information, which is what we used to do.
  3876. Thu Aug 25 11:46:27 1994 Ian Murdock (imurdock@debra.debian.org)
  3877. * lib/fake-ls.c (mk_date_string): return a pointer to malloc'ed
  3878. area.
  3879. (mk_mode_string): ditto.
  3880. * dpkg.sh: make sure the control information is extracted to a
  3881. uniquely-named temporary directory during package installation.
  3882. * dpkg.sh: execute the pre- and post-removal scripts during
  3883. package removal.
  3884. * dpkg.sh: exit immediately if dpkg-util.deb reports failure.
  3885. * deb/install.c (pkg_control): make sure that `package' exists and
  3886. is a Debian archive before doing anything.
  3887. * deb/install.c (pkg_extract): make sure that `package' exists and
  3888. is a Debian archive before doing anything.
  3889. * deb/install.c (pkg_install): unlink `extract_output' when done.
  3890. * deb/remove.c (pkg_remove): use lstat (rather than stat) so that
  3891. --remove does not get confused and think that a symbolic link to a
  3892. directory is actually a directory, which results in the symbolic
  3893. link never being removed at all.
  3894. ChangeLog begins Thu Aug 25 11:46:27 1994 for dpkg 0.93.5.