summaryrefslogtreecommitdiffstats
path: root/scripts/opkg-query-helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/opkg-query-helper.py')
-rwxr-xr-xscripts/opkg-query-helper.py76
1 files changed, 76 insertions, 0 deletions
diff --git a/scripts/opkg-query-helper.py b/scripts/opkg-query-helper.py
new file mode 100755
index 0000000000..b52284b325
--- /dev/null
+++ b/scripts/opkg-query-helper.py
@@ -0,0 +1,76 @@
1#!/usr/bin/env python
2
3# OpenEmbedded opkg query helper utility
4#
5# Written by: Paul Eggleton <paul.eggleton@linux.intel.com>
6#
7# Copyright 2012 Intel Corporation
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License version 2 as
11# published by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program; if not, write to the Free Software Foundation, Inc.,
20# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21#
22#
23
24
25import sys
26import fileinput
27import re
28
29archmode = False
30filemode = False
31
32args = []
33for arg in sys.argv[1:]:
34 if arg == '-a':
35 archmode = True
36 elif arg == '-f':
37 filemode = True
38 else:
39 args.append(arg)
40
41# Regex for removing version specs after dependency items
42verregex = re.compile(' \([=<>]* [^ )]*\)')
43
44pkg = ""
45ver = ""
46for line in fileinput.input(args):
47 line = line.rstrip()
48 if ': ' in line:
49 if line.startswith("Package:"):
50 pkg = line.split(": ")[1]
51 ver = ""
52 else:
53 if archmode:
54 if line.startswith("Architecture:"):
55 arch = line.split(": ")[1]
56 print("%s %s" % (pkg,arch))
57 elif filemode:
58 if line.startswith("Version:"):
59 ver = line.split(": ")[1]
60 elif line.startswith("Architecture:"):
61 arch = line.split(": ")[1]
62 print("%s %s_%s_%s.ipk" % (pkg,pkg,ver,arch))
63 else:
64 if line.startswith("Depends:"):
65 depval = line.split(": ")[1]
66 deps = depval.split(", ")
67 for dep in deps:
68 dep = verregex.sub('', dep)
69 print("%s|%s" % (pkg,dep))
70 elif line.startswith("Recommends:"):
71 recval = line.split(": ")[1]
72 recs = recval.split(", ")
73 for rec in recs:
74 rec = verregex.sub('', rec)
75 print("%s|%s [REC]" % (pkg, rec))
76