mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-07 20:36:50 +02:00
f9f9876f2c
1. `origin-url` was introduced in the past when there was no good
framework support to detect current host url
* It is not needed anymore
* Removing it makes the code clearer
2. Separate template helper functions for different templates (web
page/mail)
3. The "AppURL" info is removed from admin config page: it doesn't
really help.
* We already have various app url checks at many places
63 lines
2.6 KiB
Go HTML Template
63 lines
2.6 KiB
Go HTML Template
{{if eq .PackageDescriptor.Package.Type "rpm"}}
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.installation"}}</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.rpm.registry"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>{{- if gt (len .Groups) 1 -}}
|
|
# {{ctx.Locale.Tr "packages.rpm.repository.multiple_groups"}}
|
|
|
|
{{end -}}
|
|
# {{ctx.Locale.Tr "packages.rpm.distros.redhat"}}
|
|
{{- range $group := .Groups}}
|
|
{{- if $group}}{{$group = print "/" $group}}{{end}}
|
|
dnf config-manager --add-repo {{ctx.AppFullLink}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo
|
|
{{- end}}
|
|
|
|
# Fedora 41+ (DNF5)
|
|
{{- range $group := .Groups}}
|
|
{{- if $group}}{{$group = print "/" $group}}{{end}}
|
|
dnf config-manager addrepo --from-repofile={{ctx.AppFullLink}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo
|
|
{{- end}}
|
|
|
|
# {{ctx.Locale.Tr "packages.rpm.distros.suse"}}
|
|
{{- range $group := .Groups}}
|
|
{{- if $group}}{{$group = print "/" $group}}{{end}}
|
|
zypper addrepo {{ctx.AppFullLink}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo
|
|
{{- end}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.rpm.install"}}</label>
|
|
<div class="markup">
|
|
<pre class="code-block"><code># {{ctx.Locale.Tr "packages.rpm.distros.redhat"}}
|
|
dnf install {{$.PackageDescriptor.Package.Name}}
|
|
|
|
# {{ctx.Locale.Tr "packages.rpm.distros.suse"}}
|
|
zypper install {{$.PackageDescriptor.Package.Name}}</code></pre>
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{ctx.Locale.Tr "packages.registry.documentation" "RPM" "https://docs.gitea.com/usage/packages/rpm/"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.rpm.repository"}}</h4>
|
|
<div class="ui attached segment">
|
|
<table class="ui single line very basic table">
|
|
<tbody>
|
|
<tr>
|
|
<td class="collapsing"><h5>{{ctx.Locale.Tr "packages.rpm.repository.architectures"}}</h5></td>
|
|
<td>{{StringUtils.Join .Architectures ", "}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{{if or .PackageDescriptor.Metadata.Summary .PackageDescriptor.Metadata.Description}}
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.about"}}</h4>
|
|
{{if .PackageDescriptor.Metadata.Summary}}<div class="ui attached segment">{{.PackageDescriptor.Metadata.Summary}}</div>{{end}}
|
|
{{if .PackageDescriptor.Metadata.Description}}<div class="ui attached segment">{{.PackageDescriptor.Metadata.Description}}</div>{{end}}
|
|
{{end}}
|
|
{{end}}
|