changelog 204 KB

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