Initial commit

This commit is contained in:
eabdullin 2025-08-25 15:42:46 +03:00
commit bb6a2f8877

30
config.yaml Normal file
View File

@ -0,0 +1,30 @@
actions:
- replace:
- target: "spec"
find: |
%if 0%{?centos} >= 8
%configure CFLAGS="$RPM_OPT_FLAGS" --enable-debuginfod-urls=https://debuginfod.centos.org/
replace: |
%if 0%{?centos} >= 8 && !0%{?almalinux}
%configure CFLAGS="$RPM_OPT_FLAGS" --enable-debuginfod-urls=https://debuginfod.centos.org/
count: 1
- target: "spec"
find: |
%{_sysconfdir}/debuginfod/*.urls
%endif
replace: |
%if !0%{?almalinux}
%{_sysconfdir}/debuginfod/*.urls
%endif
%endif
count: 1
- modify_release:
- suffix: ".alma.1"
enabled: true
- changelog_entry:
- name: "Takuya Wakazono"
email: "pastalian@almalinux.org"
line:
- "Disable debuginfod-urls"