mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-17 16:21:07 +00:00
700893ecac
* migrate to hatch * reorder tests * generic fixtures * straight forward conftest * fix docs generation * fix tox environments * reformat tomls * cleanup pyproject * some play with renaming * move root conftest into pytest plugins * fix setup script * move fixtures to __init__.py * remove duplicate fixtures * disable pylint warning * simplify configuration fixture * remove empty conftest * remove crap from local pyprojects
28 lines
1.1 KiB
Django/Jinja
28 lines
1.1 KiB
Django/Jinja
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ repository }}: Recent package updates</title>
|
|
{% if homepage is not none %}
|
|
<link>{{ homepage }}</link>
|
|
{% endif %}
|
|
<description>Recently updated packages in the {{ repository }}.</description>
|
|
{% if rss_url is not none %}
|
|
<atom:link href="{{ rss_url }}" rel="self"/>
|
|
{% endif %}
|
|
<language>en-us</language>
|
|
<lastBuildDate>{{ last_update }}</lastBuildDate>
|
|
|
|
{% for package in packages %}
|
|
<item>
|
|
<title>{{ package.name }} {{ package.version }} {{ package.architecture }}</title>
|
|
<link>{{ link_path }}/{{ package.filename }}</link>
|
|
<description>{{ package.description }}</description>
|
|
<pubDate>{{ package.build_date }}</pubDate>
|
|
<guid isPermaLink="false">{{ package.tag }}</guid>
|
|
<category>{{ repository }}</category>
|
|
<category>{{ package.architecture }}</category>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|