1. db93094 More copyright and email addr cleanups by Eric Andersen · 23 years ago
  2. b9df470 Commit my improvement on Rodney Brown's patch to g(un)zip, decreasing by Aaron Lehmann · 23 years ago
  3. 249f39a Simplify unzip(), remove unused checks and unneccessary variables by Glenn L McGrath · 23 years ago
  4. ef03dbc Simplify CRC table generation by Glenn L McGrath · 23 years ago
  5. aad44fb Fix some fegfaults and picket fence by Glenn L McGrath · 23 years ago
  6. 1dbbd2f Fail gracefully if package depends on a virtual package. by Glenn L McGrath · 23 years ago
  7. 38288bb gunzip was incorrectly reporting a failed crc and length (discovered by by Glenn L McGrath · 23 years ago
  8. efd7f03 Fix opt type in dpkg (closes: #118975). by Matt Kraai · 23 years ago
  9. fff11f1 bzcat and bunzip -c support from Thomas Lundquist by Glenn L McGrath · 23 years ago
  10. 9c6b5fc Minor warning cleanups by Eric Andersen · 23 years ago
  11. c822763 Change strdup calls to xstrdup (patch from Steve Merrifield). by Matt Kraai · 23 years ago
  12. 9fb38f6 Eliminate unused variable warnings. by Matt Kraai · 23 years ago
  13. a5f09c6 Use fopen wrapper. by Matt Kraai · 23 years ago
  14. 7131213 config.in features patch from Giulio Orsero <giulioo@pobox.com> by Eric Andersen · 23 years ago
  15. 0a25b35 Fix create list segfault by Glenn L McGrath · 23 years ago
  16. 7134d65 Attempt to fix libc compiling error regarding off_t by Glenn L McGrath · 23 years ago
  17. c265b17 Wrap exclude_file() inside a #ifdef CONFIG_FEATURE_TAR_EXCLUDE block by Eric Andersen · 23 years ago
  18. ee28362 Menu entry for tar creation support by Glenn L McGrath · 23 years ago
  19. ef0eab5 Recovering from my previous commit by Glenn L McGrath · 23 years ago
  20. 0d2fb76 Modify applets to use libunarchive by Glenn L McGrath · 23 years ago
  21. 95ebf61 *** empty log message *** by Glenn L McGrath · 23 years ago
  22. 3c2f27d Add CONFIG_FEATURE_TAR_EXCLUDE support. by Matt Kraai · 23 years ago
  23. 99702ab Fix variable name -- was stuck at the old RPMUNPACK value. Doh! by Eric Andersen · 23 years ago
  24. bdfd0d7 Major rework of the directory structure and the entire build system. -Erik by Eric Andersen · 23 years ago
  25. 6ccdd8c Abort if scripts return value != 0 by Glenn L McGrath · 23 years ago
  26. a7512d7 Process extra empty lines correctly. by Matt Kraai · 23 years ago
  27. 3dd4f5e Remove xmalloc calls. by Matt Kraai · 23 years ago
  28. 74400cc Scrub up some function prototypes. -Erik by Eric Andersen · 23 years ago
  29. 4bef7b4 unarchive function changed to support both exclude and include lists, applets that use unarchive changed to match. by Glenn L McGrath · 23 years ago
  30. 051eee6 Reverse part of previous change.... i think it was the wrong approach... im lost by Glenn L McGrath · 23 years ago
  31. d642a67 Match subdirectories of included/excluded files by Glenn L McGrath · 23 years ago
  32. 0e76618 Superficial changes to make the exclude/include code easier to understand by Glenn L McGrath · 23 years ago
  33. f86bbfa Fix tar segfault when include list is empty and exclude list is not. by Matt Kraai · 23 years ago
  34. 30f6890 Another part of Stafan's latest patch, when replacing a pre-existing package set its status correctly. by Glenn L McGrath · 23 years ago
  35. f28d819 status_package_num should refer to package not status. by Glenn L McGrath · 23 years ago
  36. 24e2833 Initial support for for bunzip2.... by Glenn L McGrath · 23 years ago
  37. 2e772ed Change extraction/list code to use common unarchive code. by Glenn L McGrath · 23 years ago
  38. a8412db Fixes with help from Stefan, Typo in prerm script, and when reinstall a package the old packages status was getting overwritten. by Glenn L McGrath · 23 years ago
  39. 3563654 Extract control.tar.gz and data.tar.gz unconditionally, another one picked up by Stefan by Glenn L McGrath · 23 years ago
  40. 95bfe63 Fix return status, picked up by Stefan by Glenn L McGrath · 23 years ago
  41. dece3c5 The <package>.list file was prepending "./" to the files, fixed that. by Glenn L McGrath · 23 years ago
  42. b8f5adb Dont free everytime getline() is used, fix from Stefan Soucek by Glenn L McGrath · 23 years ago
  43. 48cc89b Fix to make preinst run when required, from Stefan Soucek by Glenn L McGrath · 23 years ago
  44. e738661 Implement dpkg -l option, from Stefan Soucek (slightly modified) by Glenn L McGrath · 23 years ago
  45. dcbca62 Standard typing (u_int16_t instead of u16, u_int32_t instead by Eric Andersen · 23 years ago
  46. ac20ce1 Canonicalize dirname(3) behavior. by Matt Kraai · 23 years ago
  47. 39eb040 Patch from Rodney Brown <RDBrown@mira.net>, shrinking 1.5k by Eric Andersen · 23 years ago
  48. bac490f Fix version comparision bug by Glenn L McGrath · 23 years ago
  49. 7499918 If filename is a '-' then read from stdin to stdout by Glenn L McGrath · 23 years ago
  50. 81108e7 Cleanup (most) memory leaks by Glenn L McGrath · 23 years ago
  51. c3fbec7 Change read_package_field interface, and rewrite using low level functions by Glenn L McGrath · 23 years ago
  52. 778041f Use the unofficial -C instead of -c to --configure a package, -c conflicts with another dpkg command by Glenn L McGrath · 23 years ago
  53. ed4492a More feedback to user by Glenn L McGrath · 23 years ago
  54. 7b02415 Be more verbose when configureing package, minor changes by Glenn L McGrath · 23 years ago
  55. 4cdc607 Use xfopen to abort on error to prevent segfaulting later. by Glenn L McGrath · 23 years ago
  56. 044228d This is vodz' latest patch. Sorry it took so long... by Eric Andersen · 23 years ago
  57. a868ec8 Allow the unarchive() extract_list variable to be NULL, meaning extract all by Glenn L McGrath · 23 years ago
  58. 58a5bd1 Tolerate fields with no data, e.g. "Depends: " by Glenn L McGrath · 23 years ago
  59. ccd65c9 Total rewrite, uses hash tables for speed and low memory use. by Glenn L McGrath · 23 years ago
  60. 5e66a26 Dont setvbuff in here, must be called just after stream is initialised, glibc tolerates using it later, uclibc doesnt by Glenn L McGrath · 23 years ago
  61. 26a0d9a Call setvbuf from here isntead of gz_open for compatability with uclibc by Glenn L McGrath · 23 years ago
  62. b028e08 Move setvbuf calls from gz_open() to calling functions, setvbuf is only supposed to be called prior to opening the stream, glibc tolerates later use, uclibc doesnt. by Glenn L McGrath · 23 years ago
  63. c127008 Allow unarchive to redirect stdout (tobe used by dpkg applet) by Glenn L McGrath · 23 years ago
  64. 93febe6 free coniditionally, just to make it play nice with dmalloc which is incompatable with standard free() by Glenn L McGrath · 23 years ago
  65. 59e50f6 Unpack the filename not the package name by Glenn L McGrath · 23 years ago
  66. 5710f9f Read 20 512-byte blocks at a time (like GNU tar). by Matt Kraai · 23 years ago
  67. 807bda4 Minor update to include file ordering by Eric Andersen · 23 years ago
  68. 623cfa9 Remove a redundant call to mkdir. by Matt Kraai · 23 years ago
  69. 3073dfb Patch from Aaron Lehmann <aaronl@vitelus.com> to scrub a ton of by Eric Andersen · 23 years ago
  70. a2949aa Add some missing includes to kill warnings when building with the default by Manuel Novoa III · 23 years ago
  71. 0d8cc16 Fix a type promotion bug discivered and analyzed by Alan Modra by Eric Andersen · 23 years ago
  72. f8736d2 rpm2cpio applet by Laurence Anderson by Glenn L McGrath · 23 years ago
  73. 24982c5 Fix up some warnings that show up on ppc by Eric Andersen · 23 years ago
  74. 2e6d3cf Nore unarchive (and doc) fixes from Laurence Anderson by Glenn L McGrath · 23 years ago
  75. 8f5b63e cpio applet, and changes to associated code by Glenn L McGrath · 23 years ago
  76. 8370976 comment cleanup by Tim Riker · 23 years ago
  77. ceeff73 Rewrote mkdir (and touched lots of things in the process). by Matt Kraai · 23 years ago
  78. 091781e Support tar -C, per bug #1176 -Erik by Eric Andersen · 23 years ago
  79. ea4abff Add in (and ignore) tar -p, since we preserver permissions automatically. by Eric Andersen · 23 years ago
  80. aff5e2e it turs out, there was a nasty tar bug where bb tar would create leading dirs by Eric Andersen · 23 years ago
  81. 06a71cc Initialise in_file to stdin, so it wont crash if no source specified by Glenn L McGrath · 23 years ago
  82. 8e74bf9 Changed gz_open to ruturn a stream by Glenn L McGrath · 23 years ago
  83. eb1c940 Reorganise unarchiving functions, more code re-use, only does single pass(no more linked lists), basis for supporting a cpio (and cheaper untar) applet, but cpio applet isnt included in this. by Glenn L McGrath · 23 years ago
  84. 9aff903 Reorganise archive extraction code by Glenn L McGrath · 23 years ago
  85. cb2a372 Revert the patch from Konstantin Boldyshev <konst@linuxassembly.org> to never by Eric Andersen · 23 years ago
  86. 5a9d441 Fix up some signed char vs int issues that show up on powerpc. by Eric Andersen · 23 years ago
  87. 77d9268 Patch from larry to fix some grammar errors. by Eric Andersen · 23 years ago
  88. 117231c Make - read compressed data from stdin (thanks to Marius Groeger). by Matt Kraai · 23 years ago
  89. 7f7348b Correctly remove leading slashes upon extraction (thanks to Marius Groeger). by Matt Kraai · 23 years ago
  90. 7cedac5 Remove unused function. If necessary, we can use remove_file instead. by Matt Kraai · 23 years ago
  91. 59df6f7 Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c by Matt Kraai · 23 years ago
  92. a17b363 Do not ever change permissions on existing directories, only by Eric Andersen · 23 years ago
  93. 28355a3 Per some comments from Lars Kellogg-Stedman <lars@larsshack.org>, by Eric Andersen · 23 years ago
  94. 713b398 woops, forgot the break statment by Glenn L McGrath · 23 years ago
  95. 5bcfc9b Tolerate -q argument, if -q is passed give a warning and continue rather than just fail by Glenn L McGrath · 23 years ago
  96. e0244b0 Skip headers with empty filenames, rather than stopping. by Matt Kraai · 23 years ago
  97. 8a63326 Made new xreadlink function for libbb and changed applets to use it instead of by Mark Whitley · 23 years ago
  98. af166e7 Logic reversal for last_char_is by Glenn L McGrath · 23 years ago
  99. c1bdffe Another nice cleanup from Larry. This adds a new last_char_is() function and by Eric Andersen · 23 years ago
  100. 04095e5 Move messages.c to libbb. Make each string in messages.c be its own .o file. by Eric Andersen · 23 years ago