| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | patch for opkg_download.c compile abort | pixdamix | 2009-12-01 | 1 | -10/+10 |
|
|
* | Fix typo in file name in order to fix distcheck. | florian.boor | 2009-11-27 | 1 | -1/+1 |
|
|
* | Remove unused parameter from pkg_hash_fetch_best_installation_candidate(). | graham.gower | 2009-11-27 | 7 | -19/+20 |
|
|
* | Finding a provider which is has an incompatible arch should not prevent | graham.gower | 2009-11-27 | 1 | -5/+14 |
|
|
* | Remove enum opkg_error. | graham.gower | 2009-11-26 | 8 | -134/+65 |
|
|
* | Be slightly less verbose by default. | graham.gower | 2009-11-26 | 1 | -1/+1 |
|
|
* | Fix some errno abuse. | graham.gower | 2009-11-26 | 4 | -13/+6 |
|
|
* | Provide error checking for users of pkg_extract_* functions. | graham.gower | 2009-11-26 | 5 | -23/+80 |
|
|
* | Add error checking to deb_extract(), unarchive(), extract_archive(). et al. | graham.gower | 2009-11-26 | 1 | -54/+45 |
|
|
* | Add __FUNCTION__ to the error mesage. | graham.gower | 2009-11-26 | 1 | -2/+2 |
|
|
* | Name it after what it does: s/extract_to_stdout/extract_to_stream/ | graham.gower | 2009-11-26 | 1 | -1/+1 |
|
|
* | Add missing include | pixdamix | 2009-11-26 | 1 | -0/+1 |
|
|
* | Fix problem introduced in r382. Pointed out by jlc, thanks! | graham.gower | 2009-11-26 | 1 | -3/+7 |
|
|
* | Remove str_util.{c,h} | graham.gower | 2009-11-25 | 11 | -96/+14 |
|
|
* | file_util.c cleanups. Remove redundant str_chomp from str_util.c. | graham.gower | 2009-11-25 | 7 | -79/+64 |
|
|
* | malloc -> xmalloc | graham.gower | 2009-11-25 | 1 | -2/+2 |
|
|
* | Minor cleanup for opkg_upgrade.c | graham.gower | 2009-11-25 | 1 | -17/+25 |
|
|
* | Propagate errors upwards. | graham.gower | 2009-11-25 | 2 | -11/+27 |
|
|
* | Various clean ups. | graham.gower | 2009-11-25 | 2 | -286/+255 |
|
|
* | Return void, not int. | graham.gower | 2009-11-25 | 2 | -5/+3 |
|
|
* | Plug leaks found when using --force-removal-of-dependent-packages. | graham.gower | 2009-11-25 | 1 | -3/+5 |
|
|
* | Various cleanups in opkg_remove.{c,h} | graham.gower | 2009-11-25 | 3 | -86/+47 |
|
|
* | Various cleanups for pkg.{c,h}. | graham.gower | 2009-11-24 | 2 | -253/+260 |
|
|
* | Remove unused functions. Shuffle things around and remove forward declarations. | graham.gower | 2009-11-24 | 2 | -685/+516 |
|
|
* | Make a couple of functions static, and return void since they cannot fail. | graham.gower | 2009-11-24 | 3 | -35/+20 |
|
|
* | Fix warning on 64bit arches. | graham.gower | 2009-11-24 | 1 | -1/+1 |
|
|
* | Clean up opkg_depends_cmd() and opkg_what_depends_conflicts_cmd(). | graham.gower | 2009-11-24 | 1 | -132/+132 |
|
|
* | Do the right thing if we have a version but no constraint. | graham.gower | 2009-11-24 | 1 | -2/+2 |
|
|
* | Provide a more useful comment. | graham.gower | 2009-11-24 | 1 | -2/+6 |
|
|
* | Remove the purge command. Undocumented and only duplicates remove functionality. | graham.gower | 2009-11-23 | 3 | -40/+0 |
|
|
* | Remove list_pending command. Undocumented and the pending_dir was unpopulated. | graham.gower | 2009-11-23 | 3 | -46/+0 |
|
|
* | Remove dead code in opkg_remove_cmd(). | graham.gower | 2009-11-23 | 1 | -73/+33 |
|
|
* | Remove useless memory allocation and strcpy. | graham.gower | 2009-11-23 | 1 | -5/+1 |
|
|
* | Remove remaining uses of pkg->*_str arrays and free() them after parsing. | graham.gower | 2009-11-23 | 2 | -36/+39 |
|
|
* | Fix a leak found when using --force-reinstall. | graham.gower | 2009-11-23 | 1 | -2/+2 |
|
|
* | There should be a space before the bracket. | graham.gower | 2009-11-23 | 1 | -1/+1 |
|
|
* | Fix pkg_depend_str() to not use pkg->depends_str. | graham.gower | 2009-11-23 | 3 | -48/+71 |
|
|
* | There is no need to use a buffer at all. | graham.gower | 2009-11-23 | 1 | -12/+2 |
|
|
* | Allow to install a package from a read-only dir | pixdamix | 2009-11-23 | 4 | -6/+8 |
|
|
* | Fix an unfortunate typo. | graham.gower | 2009-11-23 | 1 | -1/+1 |
|
|
* | Clean up the help output. | graham.gower | 2009-11-23 | 3 | -64/+57 |
|
|
* | Add opkg config file option for tmp_dir. | graham.gower | 2009-11-22 | 2 | -6/+11 |
|
|
* | Add some error checking on fputs. | graham.gower | 2009-11-22 | 1 | -1/+5 |
|
|
* | Change fdopen(fd, "rw+") to fdopen(fd, "r+"). | graham.gower | 2009-11-22 | 1 | -2/+2 |
|
|
* | Rename loop iterater, so that it doesn't clash with a variable of greater scope. | graham.gower | 2009-11-19 | 1 | -3/+3 |
|
|
* | Iterate the whole depends array, in the unlikely event that pre_depends_count!=0 | graham.gower | 2009-11-19 | 2 | -3/+17 |
|
|
* | Clean up pkg_remove_orphan_dependent() and remove_autoinstalled(). | graham.gower | 2009-11-19 | 2 | -100/+128 |
|
|
* | Plug a leak. | graham.gower | 2009-11-19 | 1 | -0/+2 |
|
|
* | Make the Auto-Installed field useful. | graham.gower | 2009-11-19 | 1 | -0/+3 |
|
|
* | Free some strings as soon as they are parsed to save memory. | graham.gower | 2009-11-18 | 2 | -28/+48 |
|
|