From a7de4cce1e28921c722fdccf2f24511ec678495b Mon Sep 17 00:00:00 2001 From: sobomax Date: Mon, 22 Jan 2001 12:01:55 +0000 Subject: - Add ability to handle bzip2-compressed packages; - fix cosmetics to shut-up compiler in -pedantic mode (axe several unused vars and provide default clause in several switch() statements). No response from: -ports --- usr.sbin/pkg_install/lib/file.c | 42 +++++++++++++++++++++++----------------- usr.sbin/pkg_install/lib/plist.c | 3 +++ 2 files changed, 27 insertions(+), 18 deletions(-) (limited to 'usr.sbin/pkg_install/lib') diff --git a/usr.sbin/pkg_install/lib/file.c b/usr.sbin/pkg_install/lib/file.c index 4c4e9c2..7817fc8 100644 --- a/usr.sbin/pkg_install/lib/file.c +++ b/usr.sbin/pkg_install/lib/file.c @@ -142,16 +142,13 @@ isURL(char *fname) char * fileGetURL(char *base, char *spec) { - char host[HOSTNAME_MAX], file[FILENAME_MAX]; - char pword[HOSTNAME_MAX + 40], *uname, *cp, *rp; + char *cp, *rp; char fname[FILENAME_MAX]; char pen[FILENAME_MAX]; char buf[8192]; - struct passwd *pw; FILE *ftp; pid_t tpid; int pfd[2], pstat; - int i, status; size_t r, w; char *hint; @@ -248,6 +245,8 @@ fileFindByPath(char *base, char *fname) { static char tmp[FILENAME_MAX]; char *cp; + char *suffixes[] = {".tgz", ".tar", ".tbz2", NULL}; + int i; if (fexists(fname) && isfile(fname)) { strcpy(tmp, fname); @@ -261,23 +260,26 @@ fileFindByPath(char *base, char *fname) *cp = '\0'; /* chop name */ cp = strrchr(tmp, '/'); } - if (cp) { - *(cp + 1) = '\0'; - strcat(cp, "All/"); - strcat(cp, fname); - strcat(cp, ".tgz"); - if (fexists(tmp)) - return tmp; - } + if (cp) + for (i = 0; suffixes[i] != NULL; i++) { + *(cp + 1) = '\0'; + strcat(cp, "All/"); + strcat(cp, fname); + strcat(cp, suffixes[i]); + if (fexists(tmp)) + return tmp; + } } cp = getenv("PKG_PATH"); while (cp) { char *cp2 = strsep(&cp, ":"); - snprintf(tmp, FILENAME_MAX, "%s/%s.tgz", cp2 ? cp2 : cp, fname); - if (fexists(tmp) && isfile(tmp)) - return tmp; + for (i = 0; suffixes[i] != NULL; i++) { + snprintf(tmp, FILENAME_MAX, "%s/%s%s", cp2 ? cp2 : cp, fname, suffixes[i]); + if (fexists(tmp) && isfile(tmp)) + return tmp; + } } return NULL; } @@ -438,14 +440,18 @@ unpack(char *pkg, char *flist) args[0] = '\0'; /* * Figure out by a crude heuristic whether this or not this is probably - * compressed. + * compressed and whichever compression utility was used (gzip or bzip2). */ if (strcmp(pkg, "-")) { cp = strrchr(pkg, '.'); if (cp) { strcpy(suffix, cp + 1); - if (strchr(suffix, 'z') || strchr(suffix, 'Z')) - strcpy(args, "-z"); + if (strchr(suffix, 'z') || strchr(suffix, 'Z')) { + if (strchr(suffix, 'b')) + strcpy(args, "-y"); + else + strcpy(args, "-z"); + } } } else diff --git a/usr.sbin/pkg_install/lib/plist.c b/usr.sbin/pkg_install/lib/plist.c index 0e6da6e..5beacd2 100644 --- a/usr.sbin/pkg_install/lib/plist.c +++ b/usr.sbin/pkg_install/lib/plist.c @@ -447,6 +447,9 @@ delete_package(Boolean ign_err, Boolean nukedirs, Package *pkg) } last_file = p->name; break; + + default: + break; } } return fail; -- cgit v1.1