test: update fedora repos
Update Fedora 37, 38, and 39 repositories for the test case generator. Changes are only package versions and dependencies. For Fedora 39, a package (lklug-fonts) had to be removed from the Anaconda package set since it is no longer available. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
1757e5473d
commit
78931c0f05
2 changed files with 19 additions and 13 deletions
|
|
@ -309,7 +309,6 @@ func anacondaPackageSet(t *imageType) rpmmd.PackageSet {
|
|||
"libreport-plugin-reportuploader",
|
||||
"librsvg2",
|
||||
"linux-firmware",
|
||||
"lklug-fonts",
|
||||
"lldpad",
|
||||
"lohit-assamese-fonts",
|
||||
"lohit-bengali-fonts",
|
||||
|
|
@ -374,6 +373,13 @@ func anacondaPackageSet(t *imageType) rpmmd.PackageSet {
|
|||
},
|
||||
})
|
||||
|
||||
if common.VersionLessThan(t.arch.distro.osVersion, "39") {
|
||||
ps = ps.Append(rpmmd.PackageSet{
|
||||
Include: []string{
|
||||
"lklug-fonts", // orphaned, unavailable in F39
|
||||
},
|
||||
})
|
||||
}
|
||||
if common.VersionLessThan(t.arch.distro.osVersion, "37") {
|
||||
ps = ps.Append(rpmmd.PackageSet{
|
||||
Include: []string{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue