Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packaging process does not work correctly for RPMs, when dist = all #854

Closed
steelhead31 opened this issue Apr 16, 2024 · 0 comments
Closed
Assignees
Labels

Comments

@steelhead31
Copy link
Contributor

Packaging process does not work correctly for RPMs, when dist = all

When running the linux packaging process for RPMS, the VERSION field ends up being set to null, due to a comparison with version < 21.

As shown in this debug output

Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 16ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:null] (self time 33ms)
Print Message -- SF02 - Entry = riscv64=null (self time 2ms)
Print Message -- SF03 - Entry = null (self time 2ms)
 

Whereas it should look more like this ( from my fixed code )

Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 11ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:riscv64] (self time 24ms)
Print Message -- SF02 - Entry = riscv64=riscv64 (self time 3ms)
Print Message -- SF03 - Entry.value = riscv64 (self time 1ms)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Status: Done
Development

No branches or pull requests

1 participant