Project Configuration of Base
87
1
# Enable "same result" package dropping.
2
Support: build-compare
3
4
%if 0%{?sle_version} == 150000
5
%if 0%{?is_opensuse}
6
%define amu_release amu150
7
Release: amu15.0_<CI_CNT>.<B_CNT>
8
%else
9
%define amu_release amusle150
10
Release: amusle15.0_<CI_CNT>.<B_CNT>
11
%endif # opensuse
12
%endif # 150000
13
14
%if 0%{?sle_version} == 150100
15
%if 0%{?is_opensuse}
16
%define amu_release amu151
17
Release: amu15.1_<CI_CNT>.<B_CNT>
18
%else
19
%define amu_release amusle151
20
Release: amusle15.1_<CI_CNT>.<B_CNT>
21
%endif # opensuse
22
%endif # 150100
23
24
%if 0%{?sle_version} == 150200
25
%if 0%{?is_opensuse}
26
%define amu_release amu152
27
Release: amu15.2_<CI_CNT>.<B_CNT>
28
%else
29
%define amu_release amusle152
30
# Allow source archives compressed with zstd, for speed.
31
#Preinstall: zstd (though since decompression doesn’t seem to work, there is little point)
32
Release: amusle15.2_<CI_CNT>.<B_CNT>
33
%endif # opensuse
34
%endif # 150200
35
36
%if 0%{?sle_version} == 150300
37
%if 0%{?is_opensuse}
38
%define amu_release amu153
39
Release: amu15.3_<CI_CNT>.<B_CNT>
40
%else
41
%define amu_release amusle153
42
Release: amusle15.3_<CI_CNT>.<B_CNT>
43
%endif # opensuse
44
%endif # 150300
45
46
%if 0%{?sle_version} == 150400
47
%if 0%{?is_opensuse}
48
%define amu_release amu154
49
Release: <CI_CNT>.<B_CNT> spec:amu154.<CI_CNT>.<B_CNT>
50
%else
51
%define amu_release amusle154
52
Release: <CI_CNT>.<B_CNT> spec:amusle154.<CI_CNT>.<B_CNT>
53
%endif # opensuse
54
%endif # 150400
55
56
%if 0%{?sle_version} == 150500
57
# NOTE: If openSUSE:Backports:SLE-15-SP<num> is included,
58
# first form (amu15<num>) is used, because it defines
59
# is_opensuse. This is intentional.
60
%if 0%{?is_opensuse}
61
%define amu_release amu155
62
Release: <CI_CNT>.<B_CNT> spec:amu155.<CI_CNT>.<B_CNT>
63
%else
64
%define amu_release amusle155
65
Release: <CI_CNT>.<B_CNT> spec:amusle155.<CI_CNT>.<B_CNT>
66
%endif # opensuse
67
%endif # 150500
68
69
%if 0%{?sle_version} == 150600
70
# NOTE: If openSUSE:Backports:SLE-15-SP<num> is included,
71
# first form (amu15<num>) is used, because it defines
72
# is_opensuse. This is intentional.
73
%if 0%{?is_opensuse}
74
%define amu_release amu156
75
Release: <CI_CNT>.<B_CNT> spec:amu156.<CI_CNT>.<B_CNT>
76
%else
77
%define amu_release amusle156
78
Release: <CI_CNT>.<B_CNT> spec:amusle156.<CI_CNT>.<B_CNT>
79
%endif # opensuse
80
%endif # 150600
81
82
# This ensures correct lisence, which is not necessary really here. Also the package the package is missing on SLE15.
83
%if 0%{?sle_version} >= 150000
84
%if !0%{?is_opensuse}
85
Support: !rpmlint-Factory-strict
86
%endif
87
%endif