mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Introduces: - aurweb.testing.alpm.AlpmDatabase - Used to mock up and manage a remote repository. - templates/testing/alpm_package.j2 - Used to generate a single ALPM package desc. - Removed aurblup sharness test Signed-off-by: Kevin Morris <kevr@0cost.org>
16 lines
197 B
Django/Jinja
16 lines
197 B
Django/Jinja
%FILENAME%
|
|
{{ pkgname }}-{{ pkgver }}-{{ arch }}.pkg.tar.xz
|
|
|
|
%NAME%
|
|
{{ pkgname }}
|
|
|
|
%VERSION%
|
|
{{ pkgver }}-1
|
|
|
|
%ARCH%
|
|
{{ arch }}
|
|
|
|
{% if provides %}
|
|
%PROVIDES%
|
|
{{ provides | join("\n") }}
|
|
{% endif %}
|