Conflicts: builder/kojid cli/koji hub/kojihub.py www/kojiweb/buildinfo.chtml www/kojiweb/builds.chtml www/kojiweb/index.py
56 lines
2.1 KiB
Text
56 lines
2.1 KiB
Text
#import koji
|
|
#from kojiweb import util
|
|
|
|
#include "includes/header.chtml"
|
|
|
|
<h4>Information for buildroot <a href="buildrootinfo?buildrootID=$buildroot.id">$buildroot.tag_name-$buildroot.id-$buildroot.repo_id</a></h4>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Host</th><td><a href="hostinfo?hostID=$buildroot.host_id">$buildroot.host_name</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Arch</th><td>$buildroot.arch</td>
|
|
</tr>
|
|
<tr>
|
|
<th>ID</th><td>$buildroot.id</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Task</th><td><a href="taskinfo?taskID=$task.id" class="task$util.taskState($task.state)">$koji.taskLabel($task)</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th>State</th><td>$util.imageTag($util.brStateName($buildroot.state))</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Created</th><td>$util.formatTimeLong($buildroot.create_event_time)</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Retired</th><td>$util.formatTimeLong($buildroot.retire_event_time)</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Repo ID</th><td>$buildroot.repo_id</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Repo Tag</th><td><a href="taginfo?tagID=$buildroot.tag_id">$buildroot.tag_name</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Repo State</th><td>$util.imageTag($util.repoStateName($buildroot.repo_state))</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Repo Created</th><td>$util.formatTimeLong($buildroot.repo_create_event_time)</td>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><a href="rpmlist?buildrootID=$buildroot.id&type=component" title="RPMs that are installed into this buildroot when building packages">Component RPMs</a></th>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><a href="rpmlist?buildrootID=$buildroot.id&type=built" title="RPMs that have been built in this buildroot">Built RPMs</a></th>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><a href="archivelist?buildrootID=$buildroot.id&type=component" title="Archives that are installed into this buildroot when building packages">Component Archives</a></th>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><a href="archivelist?buildrootID=$buildroot.id&type=built" title="Archives that have been built in this buildroot">Built Archives</a></th>
|
|
</tr>
|
|
</table>
|
|
|
|
#include "includes/footer.chtml"
|