Allow local and sync db to be treated separately
commitd1126db1281596ba8ea960bfa963e86731d28b5e
authorDan McGee <dan@archlinux.org>
Sun, 11 May 2008 17:00:18 +0000 (11 12:00 -0500)
committerAllan McRae <allan@archlinux.org>
Wed, 13 Oct 2010 13:53:18 +0000 (13 23:53 +1000)
tree4201eb0da47075c27b65e38eea4f4046a25861f4
parent49176461a6b476e673e232075c95f07963750f74
Allow local and sync db to be treated separately

Implement this seemingly simple change in package.h:

 typedef enum _pmpkgfrom_t {
-       PKG_FROM_CACHE = 1,
-       PKG_FROM_FILE
+       PKG_FROM_FILE = 1,
+       PKG_FROM_LOCALDB,
+       PKG_FROM_SYNCDB
 } pmpkgfrom_t;

which requires flushing out several assumptions from around the codebase
with regards to usage of the PKG_FROM_CACHE value. Make some changes where
required to allow the switch, and now the correct value should be set (via a
crude hack) depending on whether a package was loaded as an entry in a local
db or a sync db.

This patch underwent some big rebasing from Allan and Dan.

Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
lib/libalpm/be_files.c
lib/libalpm/cache.c
lib/libalpm/package.c
lib/libalpm/package.h
lib/libalpm/sync.c