summaryrefslogtreecommitdiff
path: root/meta/packages/yum/files/yum-install-recommends.py
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-10-02 14:26:24 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-10-02 14:26:24 +0000
commit94fa2b90c53ced5d6b720a57edcd290123d812d2 (patch)
treeab95598ac4bc64a9121c74598117060dd8083f46 /meta/packages/yum/files/yum-install-recommends.py
parent8626cf563c9b0b46f0e04de09250fc5cc1be816d (diff)
downloadopenembedded-core-94fa2b90c53ced5d6b720a57edcd290123d812d2.tar.gz
openembedded-core-94fa2b90c53ced5d6b720a57edcd290123d812d2.tar.bz2
openembedded-core-94fa2b90c53ced5d6b720a57edcd290123d812d2.zip
yum: added 3.2.18
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5379 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/yum/files/yum-install-recommends.py')
-rwxr-xr-xmeta/packages/yum/files/yum-install-recommends.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/packages/yum/files/yum-install-recommends.py b/meta/packages/yum/files/yum-install-recommends.py
new file mode 100755
index 0000000000..64716f2c3e
--- /dev/null
+++ b/meta/packages/yum/files/yum-install-recommends.py
@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+import os, sys
+
+root = sys.argv[1]
+installcmd = sys.argv[2]
+
+#
+# Take an rpm image and look through for Recommends:. For each recommends
+# found, try and install any matching packages including any Recommends for
+# packages installed by us.
+#
+
+
+def get_recommends():
+ deps = []
+ output = os.popen("rpm --root %s -aq --recommends" % (root))
+ lines = output.readlines()
+ for line in lines:
+ line = line.replace("(none)","")
+ if line:
+ deps.append(line.split()[0])
+ return deps
+
+processed = []
+
+while True:
+ toinstall = []
+ recommends = set(get_recommends())
+ for item in recommends:
+ if item not in processed:
+ toinstall.append(item)
+ if len(toinstall) != 0:
+ print "Installing %s" % " ".join(toinstall)
+ os.system("%s %s" % (installcmd, " ".join(toinstall)))
+ else:
+ break
+ processed.extend(toinstall)
+
+