diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-07-09 14:15:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-29 10:16:14 +0100 |
commit | fa5640d143beea4be101d6622d3fa133d04272f2 (patch) | |
tree | 7ca77430c1531399bdde6caec441bae40ac69568 /scripts/opkg-query-helper.py | |
parent | a73c25d2ded3a72159f2ce527e7307808c734686 (diff) | |
download | poky-fa5640d143beea4be101d6622d3fa133d04272f2.tar.gz |
Rework installation of dev, dbg, doc, and locale packages
Use a similar mechanism that was previously used to install locales at
rootfs generation time to install other "complementary" packages (e.g.
*-dev packages) - i.e. install all of the explicitly requested packages
and their dependencies, then get a list of the packages that were
installed, and use that list to install the complementary packages. This
has been implemented by using a list of globs which should make it
easier to extend in future.
The previous locale package installation code assumed that the locale
packages did not have any dependencies that were not already installed;
now that we are installing non-locale packages this is no longer
correct. In practice only the rpm backend actually made use of this
assumption, so it needed to be changed to call into the existing package
backend code to do the complementary package installation rather than
calling rpm directly.
This fixes the doc-pkgs IMAGE_FEATURES feature to work correctly, and
also ensures that all dev/dbg packages get installed for
dev-pkgs/dbg-pkgs respectively even if the dependency chains between
those packages was not ensuring that already.
The code has also been adapted to work correctly with the new
SDK-from-image functionality. To that end, an SDKIMAGE_FEATURES variable
has been added to allow specifying what extra image features should go
into the SDK (extra, because by virtue of installing all of the packages
in the image into the target part of the SDK, we already include all of
IMAGE_FEATURES) with a default value of "dev-pkgs dbg-pkgs".
Fixes [YOCTO #2614].
(From OE-Core rev: 72d1048a8381fa4a8c4c0d082047536727b4be47)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/opkg-query-helper.py')
-rwxr-xr-x | scripts/opkg-query-helper.py | 76 |
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 | |||
25 | import sys | ||
26 | import fileinput | ||
27 | import re | ||
28 | |||
29 | archmode = False | ||
30 | filemode = False | ||
31 | |||
32 | args = [] | ||
33 | for 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 | ||
42 | verregex = re.compile(' \([=<>]* [^ )]*\)') | ||
43 | |||
44 | pkg = "" | ||
45 | ver = "" | ||
46 | for 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 | |||