[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 11da776befde7ec5d893d4f0579502b891bdd014)
(cherry picked from commit 2824ae4cf25a174004ff78ffa176330782e85821)
This commit is contained in:
Gusted 2024-01-18 18:50:03 +01:00 committed by Earl Warren
parent faafccbcc7
commit 7afbc62057
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")
}