changelog 225 KB

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