37 lines
899 B
YAML
37 lines
899 B
YAML
actions:
|
|
- replace:
|
|
- target: "spec"
|
|
find: |
|
|
# btrfs is not available on RHEL
|
|
%if 0%{?rhel}
|
|
%define with_btrfs 0
|
|
%endif
|
|
replace: |
|
|
# btrfs is not available on RHEL
|
|
%if 0%{?rhel}
|
|
%define with_btrfs 0
|
|
%endif
|
|
|
|
# ... but AlmaLinux restores Btrfs support
|
|
%if 0%{?almalinux}
|
|
%define with_btrfs 1
|
|
%ifarch i686
|
|
%define with_lsm 0
|
|
%endif
|
|
%endif
|
|
count: 1
|
|
|
|
- modify_release:
|
|
- suffix: ".alma.1"
|
|
enabled: true
|
|
|
|
- changelog_entry:
|
|
- name: "Neal Gompa"
|
|
email: "eabdullin@almalinux.org"
|
|
line:
|
|
- "AlmaLinux changes: Enable Btrfs support"
|
|
- name: "Eduard Abdullin"
|
|
email: "ngompa@almalinux.org"
|
|
line:
|
|
- "Disable LSM module for i686 architecture"
|