1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#!/usr/bin/env python3
import os.path
import sys
scripts_path = os.path.dirname(os.path.realpath(__file__))
bb_lib_path = os.path.abspath(scripts_path + '/../../poky/bitbake/lib')
sys.path = sys.path + [bb_lib_path]
import bb.fetch2
import bb.tinfoil
def print_deps(tinfoil, abcd_file, rn):
try:
info = tinfoil.get_recipe_info(rn)
except:
# fails on hostperl-runtime-native, virtual/libintl-native, grep-native, virtual/libiconv-native
print('Failed to get recipe info for: %s' % rn)
return []
if not info:
# fails on the above and virtual/crypt-native
print('No recipe info found for: %s' % rn)
return []
append_files = tinfoil.get_file_appends(info.fn)
appends = True
data = tinfoil.parse_recipe_file(info.fn, appends, append_files)
src_uri = data.getVar('SRC_URI').split()
lic = data.getVar('LICENSE')
summary = data.getVar('SUMMARY')
description = data.getVar('DESCRIPTION')
homepage = data.getVar('HOMEPAGE')
srcrev = data.getVar('SRCREV')
branch = data.getVar('BRANCH')
depends = data.getVar('DEPENDS').split()
abcd_file.write('- id:\n')
abcd_file.write(' package_manager: "Yocto"\n')
abcd_file.write(' name: "%s"\n' % info.pn)
abcd_file.write(' version: "%s"\n' % info.pv)
abcd_file.write(' declared_lics:\n')
abcd_file.write(' - "%s"\n' % lic)
if summary:
abcd_file.write(' description: "%s"\n' % summary)
else:
abcd_file.write(' description: "%s"\n' % description)
abcd_file.write(' homepage_url: "%s"\n' % homepage)
abcd_file.write(' source_artifact:\n')
repos = []
for src in src_uri:
# Strip options.
# TODO: ignore files with apply=false?
semi_pos = src.find(';')
if semi_pos > 0:
src = src[:semi_pos]
if src[0:7] == 'file://':
# TODO: Get full path of patches and other files within the source
# repo, not just the filesystem?
fetch = bb.fetch2.Fetch([], data)
local = fetch.localpath(src)
abcd_file.write(' - "%s"\n' % local)
else:
abcd_file.write(' - "%s"\n' % src)
if src[0:7] != 'http://' and src[0:8] != 'https://' and src[0:6] != 'ftp://' and src[0:6] != 'ssh://':
repos.append(src)
if len(repos) > 1:
print('Multiple repos not fully supported yet. Pacakge: %s' % info.pn)
for repo in repos:
colon_pos = repo.find(':')
abcd_file.write(' vcs:\n')
vcs_type = repo[:colon_pos]
if vcs_type == 'gitsm':
vcs_type = 'git'
abcd_file.write(' type: "%s"\n' % vcs_type)
abcd_file.write(' url: "%s"\n' % repo[colon_pos + 3:])
# TODO: Actually support multiple repos here:
abcd_file.write(' revision: "%s"\n' % srcrev)
abcd_file.write(' branch: "%s"\n' % branch)
abcd_file.write(' dependencies:\n')
for dep in depends:
abcd_file.write(' - "%s"\n' % dep)
# TODO: search for transitive dependencies here? Each dependency will
# get checked for its own dependencies sooner or later.
return depends
def main():
abcd_manifest = 'manifest.abcd'
with open(abcd_manifest, "w") as abcd_file, bb.tinfoil.Tinfoil() as tinfoil:
tinfoil.prepare()
abcd_file.write('packages:\n')
# Does NOT include garage-sign, anything used only for testing (i.e.
# strace and gtest), any of the git submodules, all of which are also
# only used for testing (tuf-test-vectors, isotp-c, ostreesysroot,
# and HdrHistogram_c), or any other third party modules included
# directly into the source tree (jsoncpp, open62541, picojson)
recipes_to_check = ['aktualizr',
'aktualizr-native',
'aktualizr-auto-prov',
'aktualizr-implicit-prov',
'aktualizr-ca-implicit-prov',
'aktualizr-hsm-prov',
'aktualizr-disable-send-ip',
'aktualizr-example-interface',
'aktualizr-log-debug',
'libp11', # BUILD_P11 (HSM) only
'dpkg', # BUILD_DEB only
'systemd'] # BUILD_SYSTEMD only
# Iterate through the list of recipes to check. Append any dependencies
# found that aren't already in the list. As long as we only add to the
# list, it should be safe.
for recipe in recipes_to_check:
depends = print_deps(tinfoil, abcd_file, recipe)
for dep in depends:
if dep not in recipes_to_check:
recipes_to_check.append(dep)
if __name__ == "__main__":
main()
|