mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-07-25 02:48:05 +00:00
The provided instructions for how to add RPM package repo fail on Fedora 43: ``` Unknown argument "--add-repo" for command "config-manager". Add "--help" for more information about the arguments. ``` The [docs](https://forgejo.org/docs/latest/user/packages/rpm/#configuring-the-package-registry-using-dnf5) contain a different command, which does work. This changes instructions to match docs. Co-authored-by: sarge <ephemeralsarge@example.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11478 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: sarge <sarge@noreply.codeberg.org> Co-committed-by: sarge <sarge@noreply.codeberg.org>
56 lines
2.4 KiB
Go HTML Template
56 lines
2.4 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.common.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 addrepo --from-repofile="<origin-url data-url="{{AppSubUrl}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo"></origin-url>"
|
|
{{- end}}
|
|
|
|
# {{ctx.Locale.Tr "packages.rpm.distros.suse"}}
|
|
{{- range $group := .Groups}}
|
|
{{- if $group}}{{$group = print "/" $group}}{{end}}
|
|
zypper addrepo <origin-url data-url="{{AppSubUrl}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo"></origin-url>
|
|
{{- end}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.common.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://forgejo.org/docs/latest/user/packages/rpm/"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.common.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}}
|