summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package.py
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2017-08-15 16:41:56 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-18 10:40:26 +0100
commit1b5d1b36bbb802a95483d8712849ee8deb823e54 (patch)
tree653f1279cad2193983d8a438d2489c2740f3e07b /meta/lib/oe/package.py
parent8c01d5ccb8d5d70226d8a6707a35a27a93e15f89 (diff)
downloadpoky-1b5d1b36bbb802a95483d8712849ee8deb823e54.tar.gz
package.bbclass: Restore functionality to detect RPM dependencies
During the transition to dnf and rpm4, the functionality to automatically make RPM determine dependencies was lost. Before the transition, an OE specific tool called rpmdeps-oecore had been added to the rpm suit. It was based on the rpmdeps tool that is part of rpm. For each file specified on its command line, it would output the provides and requires that RPM could determine. During the transition to rpm4, rpmdeps-oecore was replaced with the standard rpmdeps. However, what no one noticed was that unless rpmdeps is given options, e.g., -P or -R, to tell it what it should output, it will not output anything. Thus, it would do all the work to determine the requirements, but would keep silent about it. And since no output from rpmdeps is expected unless there are requirements, there were no warnings indicating that everything was not working as expected. Porting the old rpmdeps-oecore to work with rpm4 is not really possible since it relied on being able to access internals of RPM that are no longer available. However, it turned out that rpmdeps had a debug option, --rpmfcdebug, that would output exactly the information that we need, albeit in a different format and to stderr. To make this usable, rpmdeps has now received a new option, --alldeps, which sends the information we need to stdout. (From OE-Core rev: 958501b3d9201aaabb81ec644c6049e0c9b737e7) (From OE-Core rev: bf017930036f19b3d6df8e5b50d9979ee7045c5c) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/package.py')
-rw-r--r--meta/lib/oe/package.py60
1 files changed, 42 insertions, 18 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py
index 43748b277c..a79c668eaf 100644
--- a/meta/lib/oe/package.py
+++ b/meta/lib/oe/package.py
@@ -162,44 +162,68 @@ def file_translate(file):
162def filedeprunner(arg): 162def filedeprunner(arg):
163 import re, subprocess, shlex 163 import re, subprocess, shlex
164 164
165 (pkg, pkgfiles, rpmdeps, pkgdest, magic) = arg 165 (pkg, pkgfiles, rpmdeps, pkgdest) = arg
166 provides = {} 166 provides = {}
167 requires = {} 167 requires = {}
168 168
169 r = re.compile(r'[<>=]+ +[^ ]*') 169 file_re = re.compile(r'\s+\d+\s(.*)')
170 dep_re = re.compile(r'\s+(\S)\s+(.*)')
171 r = re.compile(r'[<>=]+\s+\S*')
170 172
171 def process_deps(pipe, pkg, pkgdest, provides, requires): 173 def process_deps(pipe, pkg, pkgdest, provides, requires):
174 file = None
172 for line in pipe: 175 for line in pipe:
173 f = line.decode("utf-8").split(" ", 1)[0].strip() 176 line = line.decode("utf-8")
174 line = line.decode("utf-8").split(" ", 1)[1].strip()
175 177
176 if line.startswith("Requires:"): 178 m = file_re.match(line)
179 if m:
180 file = m.group(1)
181 file = file.replace(pkgdest + "/" + pkg, "")
182 file = file_translate(file)
183 continue
184
185 m = dep_re.match(line)
186 if not m or not file:
187 continue
188
189 type, dep = m.groups()
190
191 if type == 'R':
177 i = requires 192 i = requires
178 elif line.startswith("Provides:"): 193 elif type == 'P':
179 i = provides 194 i = provides
180 else: 195 else:
181 continue 196 continue
182 197
183 file = f.replace(pkgdest + "/" + pkg, "") 198 if dep.startswith("python("):
184 file = file_translate(file) 199 continue
185 value = line.split(":", 1)[1].strip()
186 value = r.sub(r'(\g<0>)', value)
187 200
188 if value.startswith("rpmlib("): 201 # Ignore all perl(VMS::...) and perl(Mac::...) dependencies. These
202 # are typically used conditionally from the Perl code, but are
203 # generated as unconditional dependencies.
204 if dep.startswith('perl(VMS::') or dep.startswith('perl(Mac::'):
189 continue 205 continue
190 if value == "python": 206
207 # Ignore perl dependencies on .pl files.
208 if dep.startswith('perl(') and dep.endswith('.pl)'):
191 continue 209 continue
210
211 # Remove perl versions and perl module versions since they typically
212 # do not make sense when used as package versions.
213 if dep.startswith('perl') and r.search(dep):
214 dep = dep.split()[0]
215
216 # Put parentheses around any version specifications.
217 dep = r.sub(r'(\g<0>)',dep)
218
192 if file not in i: 219 if file not in i:
193 i[file] = [] 220 i[file] = []
194 i[file].append(value) 221 i[file].append(dep)
195 222
196 return provides, requires 223 return provides, requires
197 224
198 env = os.environ.copy()
199 env["MAGIC"] = magic
200
201 try: 225 try:
202 dep_popen = subprocess.Popen(shlex.split(rpmdeps) + pkgfiles, stdout=subprocess.PIPE, env=env) 226 dep_popen = subprocess.Popen(shlex.split(rpmdeps) + pkgfiles, stdout=subprocess.PIPE)
203 provides, requires = process_deps(dep_popen.stdout, pkg, pkgdest, provides, requires) 227 provides, requires = process_deps(dep_popen.stdout, pkg, pkgdest, provides, requires)
204 except OSError as e: 228 except OSError as e:
205 bb.error("rpmdeps: '%s' command failed, '%s'" % (shlex.split(rpmdeps) + pkgfiles, e)) 229 bb.error("rpmdeps: '%s' command failed, '%s'" % (shlex.split(rpmdeps) + pkgfiles, e))