Don't remove fedora-thirdparty

This commit is contained in:
2025-10-11 14:48:35 -04:00
parent 730b498ab2
commit 751a290b95
2 changed files with 11 additions and 4 deletions

View File

@@ -4,16 +4,24 @@ export BB_GENISO_SECURE_BOOT_URL := "https://gitlab.com/wunker-bunker/wunker-os/
export BB_GENISO_ENROLLMENT_PASSWORD := "wunker" export BB_GENISO_ENROLLMENT_PASSWORD := "wunker"
export BB_GENISO_VARIANT := "kinoite" export BB_GENISO_VARIANT := "kinoite"
generate-iso recipe tag="latest": generate-iso recipe:
#!/usr/bin/env nu #!/usr/bin/env nu
let name = open {{ recipe }} | get name let recipe = open {{ recipe }}
| default [] alt-tags
| select name alt-tags
let tag = if ($recipe.alt-tags | is-empty) {
'latest'
} else {
$recipe.alt-tags | first
}
let name = $recipe.name
let image = $'( let image = $'(
$env.BB_REGISTRY $env.BB_REGISTRY
)/( )/(
$env.BB_REGISTRY_NAMESPACE $env.BB_REGISTRY_NAMESPACE
)/( )/(
$name $name
):{{ tag }}' ):($tag)'
(^bluebuild (^bluebuild
generate-iso generate-iso
--iso-name $'($name).iso' --iso-name $'($name).iso'

View File

@@ -99,7 +99,6 @@ modules:
auto-remove: false auto-remove: false
packages: packages:
- fedora-flathub-remote - fedora-flathub-remote
- fedora-third-party
replace: replace:
# mitigate upstream packaging bug: https://bugzilla.redhat.com/show_bug.cgi?id=2332429 # mitigate upstream packaging bug: https://bugzilla.redhat.com/show_bug.cgi?id=2332429
# swap the incorrectly installed OpenCL-ICD-Loader for ocl-icd, the expected package # swap the incorrectly installed OpenCL-ICD-Loader for ocl-icd, the expected package