Disable portage-utils support until it is able to handle categories without a hyphen...
authorfuzzyray <fuzzyray@gentoo.org>
Wed, 5 Mar 2008 18:25:54 +0000 (18:25 -0000)
committerfuzzyray <fuzzyray@gentoo.org>
Wed, 5 Mar 2008 18:25:54 +0000 (18:25 -0000)
svn path=/; revision=478

trunk/src/revdep-rebuild/revdep-rebuild

index 4496d595f20318e8586fc382196791b92ba42b0b..8c65e262774ecffa9bb97d958afd1466aae7f7d2 100755 (executable)
@@ -196,9 +196,11 @@ clean_exit() {
 ##
 # Check if various portage utils are allowed and installed
 setup_get_file_owner() {
-       if [[ $avoid_utils != *portage-utils* ]] && hash qfile 2> /dev/null; then
-               get_file_owner() { qfile -qvC "$@"; }
-       elif [[ $avoid_utils != *pkgcore* ]] && hash pquery 2> /dev/null; then
+       # portage-utils disabled until it is able to handle category names without
+       # a hyphen.  See Bug #210386
+       # if [[ $avoid_utils != *portage-utils* ]] && hash qfile 2> /dev/null; then
+       #       get_file_owner() { qfile -qvC "$@"; }
+       if [[ $avoid_utils != *pkgcore* ]] && hash pquery 2> /dev/null; then
                get_file_owner() { local IFS=,; pquery --nocolor --owns="$*"; }
        # equery disabled for incompatibility with modern portage.
        # elif [[ $avoid_utils != *equery* ]] && hash equery 2> /dev/null; then