summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/list.c
AgeCommit message (Collapse)AuthorFilesLines
2006-11-20* repo-add script - to add entries to a db file directly from package data ↵Aaron Griffin1-2/+2
(no PKGBUILD) * libalpm api changes - move from a _getinfo(p, WHAT_WE_WANT) scheme to a typesafe _get_what_we_want(p) scheme [not 100% complete yet] * some const correctness changes * removal of PM_* types in alpm.h in favor of the pm*_t types used throughout libalpm
2006-10-31Numerous changes:Aaron Griffin1-3/+4
* Furthered the "lazy caching" to force the pkgcache to read nothing (INFRQ_NONE) by default. Anything requiring package data should now check the infolevel of each package and attempt to update it. This could be ironed out a bit more later (by using the front-end get_info function * Switched to libfetch. Drastic changes to the download code and the callback progress bar functions. Also fixed the return value of _alpm_downloadfiles_forreal. Downloading now supports http, ftp, https, and files urls, along with 'mtime's and numerous other fancy features from libfetch.
2006-10-20A handful of minor changes:Aaron Griffin1-29/+29
* Removed the PMList typedef, in favor of the same naming scheme other structs use 'pmlist_t' * Added a time stamp on debug output, to make it more informational * Moved alpm_db_register to _alpm_db_register, making the public function not take a callback parameter
2006-02-22improved _alpm_list_free handlingAurelien Foret1-2/+4
2006-02-17prepend library function names with _alpm (helped with the patch from ↵Aurelien Foret1-11/+11
VMiklos <vmiklos@frugalware.org>) added log and event callbacks to sync_commit internal transactions
2006-02-16- db_write: add support to write both local and sync entriesAurelien Foret1-3/+3
- code cleanup
2006-01-05- started to rename list_XXX calls to _alpm_list_XXXAurelien Foret1-33/+8
- fixed 2 compilation warnings
2006-01-02patch from VMiklos - use PACKAGE_VERSION instead of PACMAN_VERSIONJudd Vinet1-1/+1
2005-10-08Merging in recent fixes/additions from 2.9.7Judd Vinet1-0/+18
2005-05-03reimplemented list_remove to deal with lists of any kind of dataAurelien Foret1-44/+47
2005-04-23renamed list_is_ptrin() in list_is_in()Aurelien Foret1-1/+1
2005-04-20- fixed args order in list_is_ptrin()Aurelien Foret1-1/+13
2005-03-26rewrote list_free to not be recursive anymoreAurelien Foret1-11/+7
(it can trigger segmentation faults when freeing long lists)
2005-03-26More backport from pacman 2.9.5 (mainly for resolvedeps)Aurelien Foret1-1/+1
2005-03-26Backport from pacman 2.9.5Aurelien Foret1-0/+3
2005-03-25Backport from pacman 2.9.5Aurelien Foret1-41/+107
- list_remove, list_check and list_reverse - sortbydeps(mode)
2005-03-15Initial revisionJudd Vinet1-0/+210