Change "Deprecated" to "unavailable" to reflect term used in portage.
authorPaul Varner <fuzzyray@gentoo.org>
Tue, 12 Jul 2011 14:03:52 +0000 (09:03 -0500)
committerPaul Varner <fuzzyray@gentoo.org>
Tue, 12 Jul 2011 14:03:52 +0000 (09:03 -0500)
Unavailable packages are packages that are installed, but do not have a
corresponding ebuild available for installation.

pym/gentoolkit/eclean/cli.py

index 9e4bfd98a5bd00f60d712f8e892b5fca7d9f4a9c..8d47cfb7032a45cd2c0989cd902ef0524ac45432 100644 (file)
@@ -421,14 +421,14 @@ def doAction(action,options,exclude={}, output=None):
                output.einfo("Your "+action+" directory was already clean.")
        if saved and not options['quiet']:
                print()
-               print( (pp.emph("   The following ") + yellow("Deprecated") +
+               print( (pp.emph("   The following ") + yellow("unavailable") +
                        pp.emph(" files were saved from cleaning due to exclusion file entries")))
                output.set_colors('deprecated')
                clean_size = cleaner.pretend_clean(saved)
                output.total('deprecated', clean_size, len(saved), verb, action)
        if deprecated and not options['quiet']:
                print()
-               print( (pp.emph("   The following ") + yellow("Deprecated") +
+               print( (pp.emph("   The following ") + yellow("unavailable") +
                        pp.emph(" installed packages were found")))
                output.set_colors('deprecated')
                output.list_pkgs(deprecated)