blob: af77bccaeb113360297e621a7e6e973b241a5f7a (
plain)
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
|
{{this.filename}}
{{'-' * this.filename|length}}
{%- if this.is_pkg %}
Name : {{this.name}}
Version : {{this.version}}
Release : {{this.release}}
Architecture: {{this.arch}}
Size : {{this.size}}
{%- if this.source %}
Source RPM : {{this.source}}
{%- endif %}
Build Date : {{this.datetime.strftime('%Y-%m-%dT%H:%M')}}
Summary : {{this.summary}}
Description :
{{this.description}}
Provides :
{%- for provides in this.provides %}
{{provides}}
{%- endfor %}
Requires :
{%- for requires in this.requires %}
{{requires}}
{%- endfor %}
{%- else %}
Size : {{this.size}}
Modified : {{this.mtime}}
{%- endif %}
|