summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/deps.c
AgeCommit message (Collapse)AuthorFilesLines
2006-02-17prepend library function names with _alpm (helped with the patch from ↵Aurelien Foret1-57/+57
VMiklos <vmiklos@frugalware.org>) added log and event callbacks to sync_commit internal transactions
2006-02-07code cleanupAurelien Foret1-8/+0
2006-01-21resolvedeps: return the depmiss info to the frontend in case of failureAurelien Foret1-4/+23
2006-01-18more code cleanup yetAurelien Foret1-89/+53
2006-01-17fixed detection for duplicate entries in list of deps/conflictsAurelien Foret1-3/+18
2006-01-15pulled out conflict checkings from checkdeps() in its own function: ↵Aurelien Foret1-232/+102
checkconflicts()
2006-01-14checkdeps:Aurelien Foret1-9/+50
- merged missing chunks of code from pacman 2.9.7 - more debug logs
2006-01-09- merged pkg_new and pkg_dummy functionsAurelien Foret1-2/+2
- renamed _alpm_log_action to _alpm_logaction
2006-01-08cleanupJudd Vinet1-3/+0
2006-01-08removed old/disable provides-conflict checking codeJudd Vinet1-29/+1
2006-01-08In the database-against-targets conflict checks, scan db packages' providesJudd Vinet1-3/+52
fields and look for packages that want to exclusively provide a provisio that the target package also provides.
2006-01-07added more debug logs in the sync conflict/replace codeAurelien Foret1-4/+10
2006-01-05- started to rename list_XXX calls to _alpm_list_XXXAurelien Foret1-1/+0
- fixed 2 compilation warnings
2006-01-03fixed a segfault in removdepsAurelien Foret1-5/+31
updated removedeps to keep in sync with pacman 2.9.x
2006-01-02patch from VMiklos - use PACKAGE_VERSION instead of PACMAN_VERSIONJudd Vinet1-1/+1
2005-12-28Fixed a typo (spelling) fix (patch from VMiklos <vmiklos@frugalware.org>)Aurelien Foret1-1/+1
2005-12-26renamed rpmvercmp to versioncmp, added some fixes from isteve@bofh.czJudd Vinet1-5/+5
2005-10-21bugfix: before searching databases for a dependency, make sure one of the ↵Judd Vinet1-1/+17
packages in the final list doesn't already provide that dependency
2005-10-09added conversation callback support for transactionsJudd Vinet1-5/+5
2005-05-04fixed a memory leak and avoided to modify a read-only parameterAurelien Foret1-30/+25
2005-04-24got ride of an ORE tag in resolvedeps()Aurelien Foret1-6/+3
2005-04-24use the cache instead of calling db_scan()Aurelien Foret1-13/+8
2005-04-23renamed list_is_ptrin() in list_is_in()Aurelien Foret1-6/+6
2005-04-20avoided two calls to db_scan() in checkdeps()Aurelien Foret1-9/+5
2005-04-20- fixed args order in list_is_ptrin()Aurelien Foret1-6/+18
- fixed several memory leaks
2005-04-08removed a leftover commentAurelien Foret1-4/+0
2005-04-06updated structure names (PM_SYNCPKG), and added transaction queues (install ↵Aurelien Foret1-1/+1
& remove)
2005-04-03fixed a log levelAurelien Foret1-1/+1
2005-04-02reworked resolvedeps:Aurelien Foret1-18/+11
- used the cache instead of db_scan() calls - improved log messages - more sanity checks
2005-03-31started the work on "pacman_sync"Aurelien Foret1-69/+42
2005-03-29Turned pmdepmissing_t into an opaque structureAurelien Foret1-36/+35
2005-03-29Replaced snprintf calls by the SNPRINTF macro to avoid buffer overflows when ↵Aurelien Foret1-20/+20
copying strings
2005-03-28replaced occ of list_free() by FREELIST/FREELISTPTR macrosAurelien Foret1-19/+7
2005-03-28improved logs (use _alpm_log instead of fprintf)Aurelien Foret1-7/+5
2005-03-28added a FREELISTPTR macro to free a PMList without freeing its dataAurelien Foret1-8/+2
2005-03-26backport from pacman 2.9.5 (splitdep returns an int)Aurelien Foret1-4/+4
2005-03-26More backport from pacman 2.9.5 (mainly for resolvedeps)Aurelien Foret1-5/+34
2005-03-26updated commentsAurelien Foret1-1/+5
2005-03-25Backport from pacman 2.9.5Aurelien Foret1-3/+17
- list_remove, list_check and list_reverse - sortbydeps(mode)
2005-03-25added a missing goto!Aurelien Foret1-2/+1
2005-03-15Initial revisionJudd Vinet1-0/+685