Hello community,
here is the log from the commit of package skelcd-fallbackrepo for
openSUSE:Factory checked in at 2019-02-01 11:45:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/skelcd-fallbackrepo (Old)
and /work/SRC/openSUSE:Factory/.skelcd-fallbackrepo.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "skelcd-fallbackrepo"
Fri Feb 1 11:45:17 2019 rev:3 rq:669805 version:1.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/skelcd-fallbackrepo/skelcd-fallbackrepo.changes
2019-01-28 20:50:45.137759176 +0100
+++
/work/SRC/openSUSE:Factory/.skelcd-fallbackrepo.new.28833/skelcd-fallbackrepo.changes
2019-02-01 11:45:18.152561290 +0100
@@ -1,0 +2,5 @@
+Tue Jan 29 10:58:16 UTC 2019 - [email protected]
+
+- ignore setting of %is_susesap and rework build conditions
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ skelcd-fallbackrepo.spec ++++++
--- /var/tmp/diff_new_pack.LrVzh2/_old 2019-02-01 11:45:18.856560566 +0100
+++ /var/tmp/diff_new_pack.LrVzh2/_new 2019-02-01 11:45:18.856560566 +0100
@@ -23,6 +23,13 @@
%global flavor @BUILD_FLAVOR@%nil
+# SLE but not Leap
+%if 0%{?sle_version} && !0%{?is_opensuse}
+%define sle_only 1
+%else
+%define sle_only 0
+%endif
+
# === sort out which flavor to build ===
%if "%flavor" == "openSUSE"
@@ -42,13 +49,13 @@
%if "%flavor" == "SLED"
# build SLED only on x86_64
-%if "%{_target_cpu}" == "x86_64" && 0%{?sle_version} && !0%{?is_opensuse}
+%if %sle_only && "%{_target_cpu}" == "x86_64"
%define theme SLED
%endif
%endif
%if "%flavor" == "SLES"
-%if 0%{?sle_version} && !0%{?is_opensuse}
+%if %sle_only
%ifnarch %ix86
%define theme SLES
%endif
@@ -56,19 +63,19 @@
%endif
%if "%flavor" == "SLES_SAP"
-%if 0%{?sle_version} && 0%{?is_susesap} && ( "%{_target_cpu}" == "x86_64" ||
"%{_target_cpu}" == "ppc64le" )
+%if %sle_only && ( "%{_target_cpu}" == "x86_64" || "%{_target_cpu}" ==
"ppc64le" )
%define theme SLES_SAP
%endif
%endif
%if "%flavor" == "SLE_HPC"
-%if 0%{?sle_version} && ( "%{_target_cpu}" == "x86_64" || "%{_target_cpu}" ==
"aarch64" )
+%if %sle_only && ( "%{_target_cpu}" == "x86_64" || "%{_target_cpu}" ==
"aarch64" )
%define theme SLE_HPC
%endif
%endif
%if "%flavor" == "SLE_RT"
-%if 0%{?sle_version} && ( "%{_target_cpu}" == "x86_64" )
+%if %sle_only && ( "%{_target_cpu}" == "x86_64" )
%define theme SLE_RT
%endif
%endif