summaryrefslogtreecommitdiffstats
path: root/src/pacman/conf.h
AgeCommit message (Collapse)AuthorFilesLines
2007-03-06* Added missing header include guards in md5.h and sha1.h.Dan McGee1-1/+1
* Some header cleanup on the pacman side of things - we had alpm.h instead alpm_list.h in a few headers. * removed an extra slash in path-building snprintf in server.c.
2007-02-12* Removed the 'vercmp' op from pacman. The standalone 'vercmp' binary should beAaron Griffin1-1/+0
used instead * Allow -T/--deptest to work without root privileges
2007-02-04Implemented a crappy version of -Qu (query upgrades). This simply outputs theAaron Griffin1-0/+1
packages to be upgraded in a -Su operation. Much of the code is duplicated from sync.c. TODO: move the implementation to upgrades.c, and reimplement the sync_sysupgrade function in terms of this: trans->packages = alpm_get_upgrades();
2007-01-31Debug logging changes:Aaron Griffin1-5/+0
* The --debug params were goofy. New setup allows --debug without params, --debug=<level> where level 1=debug output, 2=debug and download output, 3=debug, download, and function tracing output. This seems more sane to me. * Removed PM_LOG_FLOW1 and PM_LOG_FLOW2. They were just confusing. When adding new functions, it is near impossible to determin if your output should be "flow1" or "flow2" without tracking all the way up the call chain. Rarely would one ever say "ok, lets just show "flow2" output. These have both been replaced with PM_LOG_DEBUG * Removed the need for the root parameter on alpm_initialize. it is now defaulted to PM_ROOT just like dbpath and cachedir. This allows alpm to be initialized BEFORE option parsing in the front end, saving us some duplicate variables in the frontend. * Cleaned up front end variables due to early alpm_initialize call.
2007-01-19Preliminary checkin for alpm_list conversionAaron Griffin1-2/+3
* renamed pmlist_t -> alpm_list_t * made alpm_list_t a public type (alpm_list.h header) * removed additional storage for registered DBs in pacman source * some code cleanup * removed duplicate (pm)list_display functions from pacman source * misc code cleanup
2006-12-08A few minor updates so --root works again.Aaron Griffin1-1/+1
2006-11-20* repo-add script - to add entries to a db file directly from package data ↵Aaron Griffin1-4/+4
(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-15Merged frugalware changes. Added a few other minor things too, but there's alotAaron Griffin1-9/+5
to list. The diff should show you 8)
2006-03-04- changed flags type from char to intAurelien Foret1-1/+1
- downloadonly implies FLAG_NOCONFLICTS
2006-01-28added a --noprogressbar switch for scripts to useJudd Vinet1-0/+1
2006-01-02patch from VMiklos - use PACKAGE_VERSION instead of PACMAN_VERSIONJudd Vinet1-1/+1
2005-12-14added Frugalware patch: -Q --foreign to display packages not found in sync reposJudd Vinet1-0/+1
2005-11-07fixed compilation warningsAurelien Foret1-1/+1
2005-10-29fixed parseconfig usageAurelien Foret1-1/+2
2005-10-29renamed pmconfig_t to config_tAurelien Foret1-5/+5
2005-10-28added pmconfig_t structure to hold all the configurationAurelien Foret1-1/+44
(patch from VMiklos <vmiklos@frugalware.org>)
2005-03-15Initial revisionJudd Vinet1-0/+28