diff options
author | Michael Wood <michael.g.wood@intel.com> | 2015-05-12 15:29:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 18:04:09 +0100 |
commit | ec8bd70b27efe7875f0c536c4eaf185eae9f7670 (patch) | |
tree | 5c1be53dab9e1e8daa0f49f184d0ff7e8423fbbf /bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html | |
parent | c5a16235b8b56102703bc264768ba386ebe90611 (diff) | |
download | poky-ec8bd70b27efe7875f0c536c4eaf185eae9f7670.tar.gz |
bitbake: toaster: Remove old bldviewer application
The SimpleUI is obsolete and not maintained. It should be deleted as
there is no use to it.
[YOCTO #7709]
(Bitbake rev: 10b7c359613629bf6e3465234512990ba4742c48)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html')
-rw-r--r-- | bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html b/bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html deleted file mode 100644 index b7892f860a..0000000000 --- a/bitbake/lib/toaster/bldviewer/templates/simple_bpackage.html +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | {% extends "simple_basebuildpage.html" %} | ||
2 | |||
3 | {% block pagetitle %}Packages{% endblock %} | ||
4 | {% block pagetable %} | ||
5 | {% if not objects %} | ||
6 | <p>No packages were recorded for this target!</p> | ||
7 | {% else %} | ||
8 | |||
9 | <tr> | ||
10 | <th>Name</th> | ||
11 | <th>Version</th> | ||
12 | <th>Recipe</th> | ||
13 | <th>Summary</th> | ||
14 | <th>Section</th> | ||
15 | <th>Description</th> | ||
16 | <th>Size on host disk (Bytes)</th> | ||
17 | <th>License</th> | ||
18 | <th>Dependencies List (all)</th> | ||
19 | </tr> | ||
20 | |||
21 | {% for package in objects %} | ||
22 | |||
23 | <tr class="data"> | ||
24 | <td><a name="#{{package.name}}" href="{% url "simple-bfile" build.pk package.pk %}">{{package.name}} ({{package.filelist_bpackage.count}} files)</a></td> | ||
25 | <td>{{package.version}}-{{package.revision}}</td> | ||
26 | <td>{%if package.recipe%}<a href="{% url "simple-layer_versions_recipes" package.recipe.layer_version_id %}#{{package.recipe.name}}">{{package.recipe.name}}</a>{{package.package_name}}</a>{%endif%}</td> | ||
27 | |||
28 | <td>{{package.summary}}</td> | ||
29 | <td>{{package.section}}</td> | ||
30 | <td>{{package.description}}</td> | ||
31 | <td>{{package.size}}</td> | ||
32 | <td>{{package.license}}</td> | ||
33 | <td> | ||
34 | <div style="height: 3em; overflow:auto"> | ||
35 | {% for bpd in package.package_dependencies_source.all %} | ||
36 | {{bpd.dep_type}}: {{bpd.depends_on.name}} <br/> | ||
37 | {% endfor %} | ||
38 | </div> | ||
39 | </td> | ||
40 | {% endfor %} | ||
41 | |||
42 | {% endif %} | ||
43 | |||
44 | {% endblock %} | ||