summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-10-10 18:03:17 +0200
committerAurelien Foret <aurelien@archlinux.org>2005-10-10 18:03:17 +0200
commitb817883cddb8817f49e234d321af289c1e4f68b8 (patch)
treeae1c65d565df3ad6162e056979789b6731c6945c /src
parenta7af06ce86ba1086428c3687d73a7e28e5c0e37a (diff)
downloadpacman-b817883cddb8817f49e234d321af289c1e4f68b8.tar.gz
pacman-b817883cddb8817f49e234d321af289c1e4f68b8.tar.xz
pacman update to cope with the CACHEDIR option from the library
Diffstat (limited to 'src')
-rw-r--r--src/pacman/pacman.h3
-rw-r--r--src/pacman/sync.c25
2 files changed, 12 insertions, 16 deletions
diff --git a/src/pacman/pacman.h b/src/pacman/pacman.h
index fd8a5cfb..77d5240b 100644
--- a/src/pacman/pacman.h
+++ b/src/pacman/pacman.h
@@ -24,9 +24,6 @@
#ifndef PACCONF
#define PACCONF "/etc/pacman.conf"
#endif
-#ifndef CACHEDIR
-#define CACHEDIR "var/cache/pacman/pkg"
-#endif
/* Operations */
#define PM_OP_MAIN 1
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 0e6d77d9..1a6ee9fe 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -62,9 +62,13 @@ extern int maxcols;
static int sync_cleancache(int level)
{
- char *root;
+ char *root, *cachedir;
+ char dirpath[PATH_MAX];
alpm_get_option(PM_OPT_ROOT, (long *)&root);
+ alpm_get_option(PM_OPT_CACHEDIR, (long *)&cachedir);
+
+ snprintf(dirpath, PATH_MAX, "%s%s", root, cachedir);
if(level == 1) {
/* incomplete cleanup: we keep latest packages and partial downloads */
@@ -73,9 +77,6 @@ static int sync_cleancache(int level)
list_t *cache = NULL;
list_t *clean = NULL;
list_t *i, *j;
- char dirpath[PATH_MAX];
-
- snprintf(dirpath, PATH_MAX, "%s" CACHEDIR, root);
MSG(NL, "removing old packages from cache... ");
dir = opendir(dirpath);
@@ -134,23 +135,20 @@ static int sync_cleancache(int level)
for(i = clean; i; i = i->next) {
char path[PATH_MAX];
- snprintf(path, PATH_MAX, "%s" CACHEDIR "/%s", root, (char *)i->data);
+ snprintf(path, PATH_MAX, "%s/%s", dirpath, (char *)i->data);
unlink(path);
}
FREELIST(clean);
} else {
/* full cleanup */
- char path[PATH_MAX];
-
- snprintf(path, PATH_MAX, "%s" CACHEDIR, root);
-
MSG(NL, "removing all packages from cache... ");
- if(rmrf(path)) {
+
+ if(rmrf(dirpath)) {
ERR(NL, "could not remove cache directory\n");
return(1);
}
- if(makepath(path)) {
+ if(makepath(dirpath)) {
ERR(NL, "could not create new cache directory\n");
return(1);
}
@@ -373,7 +371,7 @@ int pacman_sync(list_t *targets)
int retval = 0;
list_t *i;
PM_LIST *packages, *data, *lp;
- char *root;
+ char *root, *cachedir;
char ldir[PATH_MAX];
int varcache = 1;
list_t *files = NULL;
@@ -602,7 +600,8 @@ int pacman_sync(list_t *targets)
/* group sync records by repository and download */
alpm_get_option(PM_OPT_ROOT, (long *)&root);
- snprintf(ldir, PATH_MAX, "%s" CACHEDIR, root);
+ alpm_get_option(PM_OPT_CACHEDIR, (long *)&cachedir);
+ snprintf(ldir, PATH_MAX, "%s%s", root, cachedir);
for(i = pmc_syncs; i; i = i->next) {
sync_t *current = i->data;