[pacman-dev] [PATCH v3] Treat packages to be printed as non-ignored

Connor Behan connor.behan at gmail.com
Thu Mar 14 02:37:10 EDT 2013


Calling pacman -Sp and pacman -Sup are guaranteed not to install a
package. So the user's IgnorePkg pref is respected regardless of whether
or not we print the mirror location. Therefore we do so in the case of
-Sp as this gives the full information requested by the user. We avoid
doing so in the case of -Sup as this would mislead the user into
thinking that the upgrade is bigger than it really is. This fixes an
edge case with devtools.

Signed-off-by: Connor Behan <connor.behan at gmail.com>
---
 src/pacman/conf.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/pacman/conf.c b/src/pacman/conf.c
index 3f1b1c3..99e6af1 100644
--- a/src/pacman/conf.c
+++ b/src/pacman/conf.c
@@ -1010,6 +1010,13 @@ int parseconfig(const char *file)
 	if((ret = _parseconfig(file, &section, 1, 0))) {
 		return ret;
 	}
+	
+	/* #FS#34066 - Querying URLs for packages specified on the command line (even ignored ones) should succeed */
+	if(config->print && !config->op_s_upgrade) {
+		config->ignorepkg = NULL;
+		config->ignoregrp = NULL;
+	}
+
 	if((ret = setup_libalpm())) {
 		return ret;
 	}
-- 
1.8.1.5



More information about the pacman-dev mailing list