xbps-bin(8): added -R option to recursively remove pkgs that were instaled automatically.

This commit is contained in:
Juan RP 2011-01-30 08:08:34 +01:00
parent bb897da7b4
commit 7da33469cc
7 changed files with 141 additions and 40 deletions

4
NEWS
View File

@ -1,5 +1,9 @@
xbps-0.8.0 (???): xbps-0.8.0 (???):
* xbps-bin(8): added -R option for the "remove" target, to recursively
remove packages that were installed automatically by the package(s)
that we want to remove, and no other package currently depends on.
* xbps-bin(8): added -D option to only show the URLs to download the binary * xbps-bin(8): added -D option to only show the URLs to download the binary
packages required by the "install", "update" and "autoupdate" targets. packages required by the "install", "update" and "autoupdate" targets.

View File

@ -37,7 +37,7 @@ int xbps_update_pkg(const char *);
int xbps_autoupdate_pkgs(bool, bool); int xbps_autoupdate_pkgs(bool, bool);
int xbps_autoremove_pkgs(bool, bool); int xbps_autoremove_pkgs(bool, bool);
int xbps_exec_transaction(bool, bool); int xbps_exec_transaction(bool, bool);
int xbps_remove_installed_pkgs(int, char **, bool, bool, bool); int xbps_remove_installed_pkgs(int, char **, bool, bool, bool, bool);
int xbps_check_pkg_integrity(const char *); int xbps_check_pkg_integrity(const char *);
int xbps_check_pkg_integrity_all(void); int xbps_check_pkg_integrity_all(void);
int xbps_show_pkg_deps(const char *); int xbps_show_pkg_deps(const char *);

View File

@ -121,7 +121,7 @@ show_orphans(void)
prop_object_t obj; prop_object_t obj;
const char *pkgver; const char *pkgver;
orphans = xbps_find_pkg_orphans(); orphans = xbps_find_pkg_orphans(NULL);
if (orphans == NULL) if (orphans == NULL)
return EINVAL; return EINVAL;
@ -155,13 +155,13 @@ main(int argc, char **argv)
struct list_pkgver_cb lpc; struct list_pkgver_cb lpc;
struct sigaction sa; struct sigaction sa;
int i , c, flags, rv; int i , c, flags, rv;
bool yes, purge, with_debug, force_rm_with_deps; bool yes, purge, with_debug, force_rm_with_deps, recursive_rm;
bool show_download_pkglist_url = false; bool show_download_pkglist_url = false;
i = c = flags = rv = 0; i = c = flags = rv = 0;
yes = purge = force_rm_with_deps = with_debug = false; yes = purge = force_rm_with_deps = recursive_rm = with_debug = false;
while ((c = getopt(argc, argv, "VcdDFfpr:vy")) != -1) { while ((c = getopt(argc, argv, "VcdDFfpRr:vy")) != -1) {
switch (c) { switch (c) {
case 'c': case 'c':
xbps_set_cachedir(optarg); xbps_set_cachedir(optarg);
@ -181,6 +181,9 @@ main(int argc, char **argv)
case 'p': case 'p':
purge = true; purge = true;
break; break;
case 'R':
recursive_rm = true;
break;
case 'r': case 'r':
/* To specify the root directory */ /* To specify the root directory */
xbps_set_rootdir(optarg); xbps_set_rootdir(optarg);
@ -304,7 +307,7 @@ main(int argc, char **argv)
usage(); usage();
rv = xbps_remove_installed_pkgs(argc, argv, yes, purge, rv = xbps_remove_installed_pkgs(argc, argv, yes, purge,
force_rm_with_deps); force_rm_with_deps, recursive_rm);
} else if (strcasecmp(argv[0], "show") == 0) { } else if (strcasecmp(argv[0], "show") == 0) {
/* Shows info about an installed binary package. */ /* Shows info about an installed binary package. */

View File

@ -1,5 +1,5 @@
/*- /*-
* Copyright (c) 2008-2010 Juan Romero Pardines. * Copyright (c) 2008-2011 Juan Romero Pardines.
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -74,7 +74,7 @@ xbps_autoremove_pkgs(bool yes, bool purge)
* as dependency and any installed package does not depend * as dependency and any installed package does not depend
* on it currently. * on it currently.
*/ */
orphans = xbps_find_pkg_orphans(); orphans = xbps_find_pkg_orphans(NULL);
if (orphans == NULL) if (orphans == NULL)
return errno; return errno;
@ -120,11 +120,14 @@ out:
} }
int int
xbps_remove_installed_pkgs(int argc, char **argv, bool yes, bool purge, xbps_remove_installed_pkgs(int argc,
bool force_rm_with_deps) char **argv,
bool yes,
bool purge,
bool force_rm_with_deps,
bool recursive_rm)
{ {
prop_array_t sorted_pkgs; prop_array_t sorted_pkgs, orphans, reqby, orphans_user = NULL;
prop_array_t reqby;
prop_dictionary_t dict; prop_dictionary_t dict;
size_t x; size_t x;
const char *version, *pkgver, *pkgname; const char *version, *pkgver, *pkgname;
@ -135,6 +138,32 @@ xbps_remove_installed_pkgs(int argc, char **argv, bool yes, bool purge,
if (sorted_pkgs == NULL) if (sorted_pkgs == NULL)
return -1; return -1;
/*
* If recursively removing packages, find out which packages
* would be orphans if the supplied package names were removed.
*/
if (recursive_rm) {
orphans_user = prop_array_create();
if (orphans_user == NULL) {
xbps_error_printf("NULL orphans_user array\n");
return ENOMEM;
}
for (x = 0, i = 1; i < argc; i++, x++)
prop_array_set_cstring_nocopy(orphans_user, x, argv[i]);
orphans = xbps_find_pkg_orphans(orphans_user);
prop_object_release(orphans_user);
if (orphans == NULL) {
xbps_error_printf("NULL orphans array\n");
return EINVAL;
}
/* in reverse order */
x = prop_array_count(orphans);
while (x--)
prop_array_add(sorted_pkgs, prop_array_get(orphans, x));
prop_object_release(orphans);
}
/* /*
* First check if package is required by other packages. * First check if package is required by other packages.
*/ */
@ -144,13 +173,18 @@ xbps_remove_installed_pkgs(int argc, char **argv, bool yes, bool purge,
printf("Package %s is not installed.\n", argv[i]); printf("Package %s is not installed.\n", argv[i]);
continue; continue;
} }
/*
* Check that current package is not required by
* other installed packages.
*/
prop_array_add(sorted_pkgs, dict); prop_array_add(sorted_pkgs, dict);
prop_dictionary_get_cstring_nocopy(dict, "pkgver", &pkgver); prop_dictionary_get_cstring_nocopy(dict, "pkgver", &pkgver);
found = true; found = true;
reqby = prop_dictionary_get(dict, "requiredby"); reqby = prop_dictionary_get(dict, "requiredby");
if (reqby != NULL && prop_array_count(reqby) > 0) { if (reqby != NULL && prop_array_count(reqby) > 0) {
xbps_warn_printf("%s IS REQUIRED BY %u PACKAGES!\n", xbps_printf("WARNING: %s IS REQUIRED BY %u "
pkgver, prop_array_count(reqby)); "PACKAGE%s!\n", pkgver, prop_array_count(reqby),
prop_array_count(reqby) > 1 ? "S" : "");
reqby_force = true; reqby_force = true;
} }
prop_object_release(dict); prop_object_release(dict);
@ -159,8 +193,6 @@ xbps_remove_installed_pkgs(int argc, char **argv, bool yes, bool purge,
prop_object_release(sorted_pkgs); prop_object_release(sorted_pkgs);
return 0; return 0;
} }
/* /*
* Show the list of going-to-be removed packages. * Show the list of going-to-be removed packages.
*/ */

View File

@ -1,4 +1,4 @@
.TH "XBPS\-BIN" "8" "27/01/2011" "\ \&" "\ \&" .TH "XBPS\-BIN" "8" "30/01/2011" "\ \&" "\ \&"
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
.\" * set default formatting .\" * set default formatting
.\" ----------------------------------------------------------------- .\" -----------------------------------------------------------------
@ -77,6 +77,14 @@ and
targets, if enabled after removing a package it is also purged\&. targets, if enabled after removing a package it is also purged\&.
.RE .RE
.PP .PP
\fB\-R\fR
.RS 4
Used currently in the
\fIremove\fR
target, to recursively remove packages that aren\(cqt required by other installed
packages and that were installed by the package that we want to remove\&.
.RE
.PP
\fB\-r\fR \fIrootdir\fR \fB\-r\fR \fIrootdir\fR
.RS 4 .RS 4
Sets the Sets the
@ -222,7 +230,7 @@ state, it must be
\fBpurged\fR \fBpurged\fR
with the with the
\fBpurge\fR \fBpurge\fR
command\&. If command or alternatively use the \fI\-p\fR flag \&. If
\fB\-f\fR \fB\-f\fR
option is used, package files will be removed even if its SHA256 hash doesn\(cqt match\&. option is used, package files will be removed even if its SHA256 hash doesn\(cqt match\&.
.RE .RE
@ -329,35 +337,41 @@ directory for downloaded binary packages\&.
.RE .RE
.SH "EXAMPLES" .SH "EXAMPLES"
.PP .PP
\fBInstall a package by specifying its name:\fR Install a package by specifying its name:
.RS 4 .RS 4
$ xbps\-bin install foo $ xbps\-bin install foo
.RE .RE
.PP .PP
\fBInstall a package by specifying a package pattern:\fR Install a package by specifying a package pattern:
.RS 4 .RS 4
$ xbps\-bin install "\fBfoo>=3\&.0\fR" $ xbps\-bin install "\fBfoo>=3\&.0\fR"
.RE .RE
.PP .PP
\fBInstall multiple packages by specifying names and package patterns:\fR Install multiple packages by specifying names and package patterns:
.RS 4 .RS 4
$ xbps\-bin install foo "\fBblah⇐4\&.0\fR" baz\-2\&.0 "\fBblob>4\&.[0\-9]\fR" $ xbps\-bin install foo "\fBblah⇐4\&.0\fR" baz\-2\&.0 "\fBblob>4\&.[0\-9]\fR"
.RE .RE
.PP .PP
\fBFind the package that owns the file \fB/bin/mount\fR:\fR Find the package that owns the file \fB/bin/mount\fR:
.RS 4 .RS 4
$ xbps\-bin find\-files /bin/mount $ xbps\-bin find\-files /bin/mount
.RE .RE
.PP .PP
\fBFind the packages that match the pattern "\fB/usr/lib/libav\&*\fR": Find the packages that match the pattern "\fB/usr/lib/libav\&*\fR":
.RS 4 .RS 4
$ xbps\-bin find\-files "/usr/lib/libav\&*" $ xbps\-bin find\-files "/usr/lib/libav\&*"
.RE .RE
.PP .PP
\fBRemove and purge the package \fBproplib-devel\fR:\fR Remove and purge the package \fBproplib-devel\fR:
.RS 4 .RS 4
$ xbps\-bin -yp remove proplib\-devel $ xbps\-bin -yp remove proplib\-devel
.RE
.PP .PP
Remove and purge the package \fBbsdtar\fR and recursively all packages that
were installed automatically by it:
.RS 4
$ xbps\-bin -Rp remove bsdtar
.RE
.SH "BUGS" .SH "BUGS"
.sp .sp
Probably, but I try to make this not happen\&. Use it under your own responsability and enjoy your life\&. Probably, but I try to make this not happen\&. Use it under your own responsability and enjoy your life\&.

View File

@ -53,7 +53,7 @@
* @def XBPS_RELVER * @def XBPS_RELVER
* Current library release date. * Current library release date.
*/ */
#define XBPS_RELVER "20110129" #define XBPS_RELVER "20110130"
/** /**
* @def XBPS_META_PATH * @def XBPS_META_PATH
@ -294,16 +294,18 @@ const char *xbps_fetch_error_string(void);
/*@}*/ /*@}*/
/** /**
* @ingroup pkg_orphans * @ingroup pkg_orphans
* *
* Finds all package orphans currently installed. * Finds all package orphans currently installed.
* *
* @param[in] orphans Proplib array of strings with package names of
* packages that should be treated as they were already removed (optional).
*
* @return A proplib array of dictionaries with all orphans found, * @return A proplib array of dictionaries with all orphans found,
* on error NULL is returned and errno is set appropiately. * on error NULL is returned and errno is set appropiately.
*/ */
prop_array_t xbps_find_pkg_orphans(void); prop_array_t xbps_find_pkg_orphans(prop_array_t orphans);
/** /**
* @ingroup vermatch * @ingroup vermatch

View File

@ -60,15 +60,23 @@
* dictionary. * dictionary.
*/ */
struct orphan_data {
prop_array_t array;
prop_array_t orphans_user;
};
static int static int
find_orphan_pkg(prop_object_t obj, void *arg, bool *loop_done) find_orphan_pkg(prop_object_t obj, void *arg, bool *loop_done)
{ {
prop_array_t reqby, orphans = arg; struct orphan_data *od = arg;
prop_array_t reqby;
prop_object_t obj2; prop_object_t obj2;
prop_object_iterator_t iter; prop_object_iterator_t iter;
const char *pkgdep; const char *pkgdep, *curpkgname;
char *pkgdepname;
unsigned int ndep = 0, cnt = 0; unsigned int ndep = 0, cnt = 0;
bool automatic = false; bool automatic = false;
size_t i;
int rv = 0; int rv = 0;
pkg_state_t state; pkg_state_t state;
@ -82,7 +90,6 @@ find_orphan_pkg(prop_object_t obj, void *arg, bool *loop_done)
if ((rv = xbps_get_pkg_state_dictionary(obj, &state)) != 0) if ((rv = xbps_get_pkg_state_dictionary(obj, &state)) != 0)
return rv; return rv;
/* /*
* Skip packages that aren't fully installed. * Skip packages that aren't fully installed.
*/ */
@ -92,39 +99,75 @@ find_orphan_pkg(prop_object_t obj, void *arg, bool *loop_done)
reqby = prop_dictionary_get(obj, "requiredby"); reqby = prop_dictionary_get(obj, "requiredby");
if (prop_object_type(reqby) != PROP_TYPE_ARRAY) if (prop_object_type(reqby) != PROP_TYPE_ARRAY)
return EINVAL; return EINVAL;
/*
if ((cnt = prop_array_count(reqby)) == 0) { * Add packages with empty "requiredby" arrays.
prop_array_add(orphans, obj); */
cnt = prop_array_count(reqby);
if (cnt == 0) {
prop_array_add(od->array, obj);
return 0; return 0;
} }
/*
* Add packages that only have 1 entry matching any pkgname
* object in the user supplied array of strings.
*/
if (od->orphans_user != NULL && cnt == 1) {
for (i = 0; i < prop_array_count(od->orphans_user); i++) {
prop_array_get_cstring_nocopy(od->orphans_user,
i, &curpkgname);
if (xbps_find_pkgname_in_array(reqby, curpkgname)) {
prop_array_add(od->array, obj);
return 0;
}
}
}
iter = prop_array_iterator(reqby); iter = prop_array_iterator(reqby);
if (iter == NULL) if (iter == NULL)
return ENOMEM; return ENOMEM;
/*
* Iterate over the requiredby array and add current pkg
* when all pkg dependencies are already in requiredby
* or any pkgname object in the user supplied array of
* strings match.
*/
while ((obj2 = prop_object_iterator_next(iter)) != NULL) { while ((obj2 = prop_object_iterator_next(iter)) != NULL) {
pkgdep = prop_string_cstring_nocopy(obj2); pkgdep = prop_string_cstring_nocopy(obj2);
if (pkgdep == NULL) { if (pkgdep == NULL) {
prop_object_iterator_release(iter); prop_object_iterator_release(iter);
return EINVAL; return EINVAL;
} }
if (xbps_find_pkg_in_array_by_pattern(orphans, pkgdep)) if (xbps_find_pkg_in_array_by_pattern(od->array, pkgdep))
ndep++; ndep++;
if (od->orphans_user == NULL)
continue;
pkgdepname = xbps_get_pkg_name(pkgdep);
assert(pkgdepname != NULL);
for (i = 0; i < prop_array_count(od->orphans_user); i++) {
prop_array_get_cstring_nocopy(od->orphans_user,
i, &curpkgname);
if (strcmp(curpkgname, pkgdepname) == 0) {
ndep++;
break;
}
}
} }
prop_object_iterator_release(iter); prop_object_iterator_release(iter);
if (ndep != cnt) if (ndep != cnt)
return 0; return 0;
if (!prop_array_add(orphans, obj)) if (!prop_array_add(od->array, obj))
return EINVAL; return EINVAL;
return 0; return 0;
} }
prop_array_t prop_array_t
xbps_find_pkg_orphans(void) xbps_find_pkg_orphans(prop_array_t orphans_user)
{ {
prop_array_t array = NULL; prop_array_t array = NULL;
prop_dictionary_t dict; prop_dictionary_t dict;
struct orphan_data od;
int rv = 0; int rv = 0;
if ((dict = xbps_regpkgdb_dictionary_get()) == NULL) if ((dict = xbps_regpkgdb_dictionary_get()) == NULL)
@ -132,20 +175,23 @@ xbps_find_pkg_orphans(void)
/* /*
* Prepare an array with all packages previously found. * Prepare an array with all packages previously found.
*/ */
if ((array = prop_array_create()) == NULL) if ((od.array = prop_array_create()) == NULL)
goto out; goto out;
/* /*
* Find out all orphans by looking at the * Find out all orphans by looking at the
* regpkgdb dictionary and iterate in reverse order * regpkgdb dictionary and iterate in reverse order
* in which packages were installed. * in which packages were installed.
*/ */
od.orphans_user = orphans_user;
rv = xbps_callback_array_iter_reverse_in_dict(dict, "packages", rv = xbps_callback_array_iter_reverse_in_dict(dict, "packages",
find_orphan_pkg, array); find_orphan_pkg, &od);
if (rv != 0) { if (rv != 0) {
errno = rv; errno = rv;
prop_object_release(array); prop_object_release(od.array);
array = NULL; array = NULL;
goto out;
} }
array = prop_array_copy(od.array);
out: out:
xbps_regpkgdb_dictionary_release(); xbps_regpkgdb_dictionary_release();