[GITEA] Generate install if condition for Alpine

- If the APKINFO contains an install if condition, write it in the APKINDEX.
- No integration testing, as I don't have the files to regenerate the
hardcoded compressed(?) APKINFO in the test.
- Resolves #2174

(cherry picked from commit 11da776bef)
This commit is contained in:
Gusted 2024-01-18 18:50:03 +01:00 committed by Earl Warren
parent a99c17729c
commit 2824ae4cf2
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -230,6 +230,9 @@ func buildPackagesIndex(ctx context.Context, ownerID int64, repoVersion *package
if len(pd.FileMetadata.Provides) > 0 {
fmt.Fprintf(&buf, "p:%s\n", strings.Join(pd.FileMetadata.Provides, " "))
}
if pd.FileMetadata.InstallIf != "" {
fmt.Fprintf(&buf, "i:%s\n", pd.FileMetadata.InstallIf)
}
fmt.Fprint(&buf, "\n")
}