Initial commit to add equery keywords support for executing eshowkw.
authorscarabeus <scarabeus@gentoo.org>
Thu, 28 Oct 2010 21:18:06 +0000 (21:18 -0000)
committerscarabeus <scarabeus@gentoo.org>
Thu, 28 Oct 2010 21:18:06 +0000 (21:18 -0000)
svn path=/trunk/gentoolkit/; revision=837

pym/gentoolkit/equery/__init__.py
pym/gentoolkit/equery/keywords.py [new file with mode: 0644]

index be30ed814658f81932b1602a9f163175bdffa0ea..6fcdd02805cf0a91c63ba279e950ffdd073b67d4 100644 (file)
@@ -54,6 +54,7 @@ NAME_MAP = {
        'f': 'files',
        'h': 'hasuse',
        'l': 'list_',
+       'k': 'keywords',
        'a': 'has',
        'm': 'meta',
        's': 'size',
@@ -94,6 +95,7 @@ def print_help(with_description=True):
                (" (f)iles", "list all files installed by PKG"),
                (" h(a)s", "list all packages for matching ENVIRONMENT data stored in /var/db/pkg"),
                (" (h)asuse", "list all packages that have USE flag"),
+               (" (k)keywords", "display keywords for specified PKG"),
                (" (l)ist", "list package matching PKG"),
                (" (m)eta", "display metadata about PKG"),
                (" (s)ize", "display total size of all files owned by PKG"),
diff --git a/pym/gentoolkit/equery/keywords.py b/pym/gentoolkit/equery/keywords.py
new file mode 100644 (file)
index 0000000..f876510
--- /dev/null
@@ -0,0 +1,7 @@
+# Copyright 2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+import sys
+from ...gentoolkit.eshowkw import main as emain
+
+emain(sys.argv)