commit d48a68b475ba6dfb47331b2a0b3da88ffbc0a5e1 Author: Andrew Lukoshko Date: Thu Aug 21 16:13:47 2025 +0000 Add riscv64 support diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..d659ed7 --- /dev/null +++ b/config.yaml @@ -0,0 +1,36 @@ +actions: + - replace: + - target: "spec" + find: | + %ifnarch aarch64 s390x + BuildRequires: numactl-devel + replace: | + %ifnarch aarch64 s390x riscv64 + BuildRequires: numactl-devel + count: 1 + - target: "spec" + find: | + %ifnarch aarch64 s390x + -DWITH_NUMA=ON \ + replace: | + %ifnarch aarch64 s390x riscv64 + -DWITH_NUMA=ON \ + count: 1 + - target: "spec" + find: | + %ifarch s390x + -DUSE_LD_GOLD=OFF \ + replace: | + %ifarch s390x riscv64 + -DUSE_LD_GOLD=OFF \ + count: 1 + + - modify_release: + - suffix: ".alma.1" + enabled: true + + - changelog_entry: + - name: "Andrew Lukoshko" + email: "alukoshko@almalinux.org" + line: + - "Add riscv64 support"