Don't remove fedora-thirdparty
This commit is contained in:
14
justfile
14
justfile
@@ -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'
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user