TODO 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. ROADMAP
  2. =======
  3. squeeze
  4. ~~~~~~~
  5. * Review this file and remove or update the old entries.
  6. * Look for FIXME and XXX items in the source.
  7. * Triage as much bugs as possible to get the bug count below 300 ;) and
  8. merge as much patches as possible.
  9. * Create dedicated manual pages for .changes and .dsc documenting the
  10. format of the files. (deb-foo might not be apprioriate as those are
  11. not inside of the .deb file, but changes(5) seems too generic.)
  12. Explain that backwards incompatible change involve a major version bump
  13. (1.x => 2.x) while minor version bump will be used for backwards
  14. compatible extension (e.g. new fields).
  15. squeeze + 1
  16. ~~~~~~~~~~~
  17. * Remove compatibility symlinks
  18. /usr/sbin/{update-alternatives,dpkg-divert,dpkg-statoverride}.
  19. 1.14.x
  20. ------
  21. * Make dpkg bootstrappable.
  22. 1.14.y
  23. ------
  24. * Code cleanup:
  25. - Get rid of static variables inside functions.
  26. - Coalesce admindir / infodir / foodir generation.
  27. - Get rid of setjmp (at least in the general case, keep for dpkg itself?)
  28. - Coalesce hash and checksum functions.
  29. - Split modstatdb_rw into mode and flags.
  30. - Move fd and block function out of mlib.
  31. - Cleanup status chars -> strings hardcoded mappings all over the place.
  32. (Fix tied field enum with its dselect description (pkgdisplay.cc))
  33. - Refactor src/processarc.c.
  34. - Make sure all vsnprintf callers are checking the return value, as the
  35. system version will not ohsite on us.
  36. - Consider ferror_fclose function.
  37. - Fix naming consistency of next/prev members.
  38. - Do more unused header include removal.
  39. - Get rid of unuseful "unsigned" modifiers.
  40. * Deprecate --force-not-root flag (remove modstatdb_rw rootneeded flags).
  41. * Test and reenable --command-fd.
  42. * Check --no-act for log_action().
  43. * Man pages:
  44. - Add example to dpkg-scanfoo manpages?
  45. - Merge synopsis lines in dpkg-triggers.
  46. - Check all '<>' use bold instead.
  47. - Check all command vs action.
  48. - Check usage of '|' instead of ', '.
  49. - Check position of short option before long option.
  50. - Use [option...] instead of [options] and friends?
  51. - Fix dpkg man page, refs to dpkg-deb and dpkg-split, etc.
  52. - Fix «commandline» vs «command line».
  53. - Fix «. ».
  54. * L10n:
  55. - Standardize translated error messages in the perl code to avoid useless
  56. work for translators.
  57. - Check http://d-i.alioth.debian.org/spellcheck/level5/index.html
  58. * Discuss and implement
  59. http://www.hadrons.org/~guillem/debian/docs/origin.proposal
  60. * Add non-regression tests for Dpkg::Source::*
  61. * Cleanup libcompat:
  62. - Add fnmatch, IRIX5 doesn't have it.
  63. - Fix scandir, leaks on malloc and realloc.
  64. * Add multiarch support.
  65. * Merge stuff back:
  66. - debsums (metadata storage).
  67. - ucf (cleverer conffile handling).
  68. - debconf (dpkg-*configure and add new status):
  69. + dpkg --reconfigure <pkg> <pkg>
  70. <pkg>.postinst reconfigure <ver>
  71. Fail if pkg is not in the configured state.
  72. - dpkg-cross (multiarch + dpkg cross compilation support).
  73. - dpkg-sig (dak fixed, import code, needs reply, #340306).
  74. - apt: deb-*/ dirs, apt-extracttemplates (libdpkg).
  75. - (maybe parts of wajig, aptitude, synaptic, ept, ...).
  76. * Start exposing libdpkg.
  77. - Split dpkg.h into dpkg-priv.h.
  78. - Add needed includes to all header files.
  79. * Add UTF-8 support to all programs.
  80. * Modify database to store per-file flags.
  81. - Store checksums and stat data in per-file flags.
  82. - Add md5sums and/or sha1sums package support. (#155676)
  83. * Allow packages to register additional files, declare ownership of files for
  84. dpkg -S and -L without having dpkg act on this (.psuedolist?).
  85. * Some kind of test-suite (Esteban).
  86. * Make dpkg-checkbuilddeps easier to use by other programs such as pbuilder
  87. or sbuild, so that they can start using the new architecture wildcards
  88. automatically.
  89. - Support for output format. (#214566)
  90. * Remove conffile background support? (#38334)
  91. * Make dpkg-deb --build check for duped conffiles. (#131633)
  92. * Propagate --admindir to programs run from maintainer scritpts. (#97076)
  93. * Fix conflicting action -%c, when short is 0.
  94. * We should set our own obstack_alloc_failed_handler.
  95. * Fix quotes? <http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html>
  96. TODO
  97. ====
  98. Old TODO entries from Scott:
  99. start-stop-daemon
  100. * capabilities support
  101. * don't close FD's
  102. dpkg
  103. * allow external program to specify how to handle conffiles
  104. * try to remove directories again after removing conffiles
  105. * verify Enhances works (ie don't trigger some assertion)
  106. * add test to see if a file should really be installed and optionally
  107. skip it
  108. * dpkg --call-maint-script=<script> --maint-script-arg=<arg>
  109. --maint-script-arg=<arg> <pkg> <pkg>
  110. dpkg will not allow <script> to be one of {pre,post}{inst,rm}. Only
  111. unknown scripts can be called this way. dpkg will also not keep track
  112. of any state for these scripts.
  113. Fix:
  114. <joeyh_> package a conflicted with old versions of package b. package b
  115. conficted with old versions of package a. I had the old versions of both
  116. installed, and told dpkg to install the new versions of a and b
  117. simulantaneously. It refused.
  118. dselect:
  119. * support Enhances
  120. ------------------------------------------------------------------------------
  121. Old TODO entries from IWJ:
  122. Here are some currently-known inadequacies:
  123. urgent
  124. * Conflicts << installation ordering
  125. * Version numbers in pre-depends stuff
  126. * Search for all pre-depends things at once, bomb out if any not found
  127. * _always_ show section in --yet-to-unpack
  128. * automatically do --yet-to-unpack in installation methods
  129. * check depending packages when installing new version.
  130. * Several things ought to be configurable but aren't.
  131. * Filenames containing newlines. Conffile names containing spaces.
  132. * dpkg --status for virtual packages
  133. * openpgp signatures in the package archive
  134. other stuff unlikely to get done soon
  135. * Automatically remove <file>.gz if <file> can't be found ? and maybe,
  136. remove <file> if <file.gz> can't be found? Big mess when we start
  137. thinking about bz2 :/
  138. * Local version number (using non-numeric epoch, perhaps, or better yet,
  139. a --local option in dpkg, so that it marks this package as a local install
  140. (when running dpkg -i)? Keeps it from being listed as obsolete, and maybe
  141. from being considered for auto-upgrades (apt-get needs to know about this
  142. too)
  143. * Filename field generated by --record-avail
  144. * handle split packages somehow.
  145. * understand Replaces in dselect
  146. * diversions list as control archive entry
  147. * single maintainer script, and new package getting there first
  148. * local conffiles, aswell as local files that dpkg should check before
  149. overwriting
  150. * hooks
  151. * dselect per-half focus and keybindings improvements.
  152. !missing bug report #1555!
  153. * floppy map (where are the files)
  154. * how to change case of package names
  155. * support for adding files to dpkg's file lists
  156. * `fake' or `null' packages
  157. * dpkg --query | -Q