[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:
parent
faafccbcc7
commit
7afbc62057
1 changed files with 3 additions and 0 deletions
|
@ -230,6 +230,9 @@ func buildPackagesIndex(ctx context.Context, ownerID int64, repoVersion *package
|
||||||
if len(pd.FileMetadata.Provides) > 0 {
|
if len(pd.FileMetadata.Provides) > 0 {
|
||||||
fmt.Fprintf(&buf, "p:%s\n", strings.Join(pd.FileMetadata.Provides, " "))
|
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")
|
fmt.Fprint(&buf, "\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue