summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPang Yan Han <pangyanhan@gmail.com>2011-03-19 09:09:27 +0100
committerDan McGee <dan@archlinux.org>2011-03-20 17:17:41 +0100
commit58df372be6758cfe00069ac7279cd92e3b61edef (patch)
tree0b005726472f6a1d19c0a3d53d512d226b79bf70 /src
parentf6716ae94a5f299569b35bebb4d0aae23cd9af97 (diff)
downloadpacman-58df372be6758cfe00069ac7279cd92e3b61edef.tar.gz
pacman-58df372be6758cfe00069ac7279cd92e3b61edef.tar.xz
Fix handling of ignored packages
Noted in FS#23342. When the user attempts to install an ignored package and answers no when asked whether to install it, pacman bails out with: "error: target not found: packagename" This is because satisfiers are not found for the package and execution continues to process_group(), where the package is treated as a group (which does not exist). In addition, test ignore006.py is updated with PACMAN_RETCODE=0 since saying no to installing an ignored package should not be considered an error. Signed-off-by: Pang Yan Han <pangyanhan@gmail.com> Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 26f6f824..29bcf540 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -663,6 +663,13 @@ static int process_targname(alpm_list_t *dblist, char *targname)
{
pmpkg_t *pkg = alpm_find_dbs_satisfier(dblist, targname);
+ /* #FS23342 - skip ignored packages when user says no */
+ if(pm_errno == PM_ERR_PKG_IGNORED) {
+ pm_printf(PM_LOG_WARNING, _("skipping target: %s\n"), targname);
+ pm_errno = 0;
+ return(0);
+ }
+
if(pkg) {
return(process_pkg(pkg));
}