mesa/config.yaml
root 2421315696 fix(autopatch): auto-fix for mesa on c10
Added replace action to convert 'Version: %{gsub %ver - ~}' to 'Version: %{ver}'; added LLVM 21 gallivm patch (Patch1001) and its add_files action adapted from a10s reference; added corresponding chan
2026-05-20 00:10:48 +00:00

41 lines
1.1 KiB
YAML

actions:
- replace:
- target: "spec"
find: |
Version: %{gsub %ver - ~}
replace: |
Version: %{ver}
count: 1
- replace:
- target: "spec"
find: |
%ifarch aarch64 x86_64 %{ix86}
%if !0%{?rhel}
replace: |
%ifarch aarch64
# RHEL doesn't ship vc4 and v3d but we do for RPi
%if 0%{?almalinux}
%global with_vc4 1
%global with_v3d 1
%endif
%endif
%ifarch aarch64 x86_64 %{ix86}
%if !0%{?rhel}
count: 1
- add_files:
- type: "patch"
name: "cd129dbf8af2d16b1243f2ce287ff69c6a5dc557.patch"
number: 1001
- modify_release:
- suffix: ".alma.1"
enabled: true
- changelog_entry:
- name: "Koichiro Iwao"
email: "meta@almalinux.org"
line:
- "Enable vc4 and v3d for Raspberry Pi graphics in AlmaLinux (Resolves: https://github.com/AlmaLinux/raspberry-pi/issues/32)"
- "Add LLVM 21 support for gallivm (riscv64)"