 461d8b53c2
			
		
	
	
	
	
	461d8b53c2Related #26984 (https://github.com/go-gitea/gitea/pull/26984#issuecomment-1889588912) Fix admin cleanup message. Fix models `Get` not respecting default values. Rebuild RPM repository files after cleanup. Do not add RPM group to package version name. Force stable sorting of Alpine/Debian/RPM repository data. Fix missing deferred `Close`. Add tests for multiple RPM groups. Removed non-cached `ReplaceAllStringRegex`. If there are multiple groups available, it's stated in the package installation screen: 
		
			
				
	
	
		
			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.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 <gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo"></gitea-origin-url>
 | |
| {{- end}}
 | |
| 
 | |
| # {{ctx.Locale.Tr "packages.rpm.distros.suse"}}
 | |
| {{- range $group := .Groups}}
 | |
| 	{{- if $group}}{{$group = print "/" $group}}{{end}}
 | |
| zypper addrepo <gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{$.PackageDescriptor.Owner.Name}}/rpm{{$group}}.repo"></gitea-origin-url>
 | |
| {{- 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/" | Safe}}</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}}
 |