]> granicus.if.org Git - strace/commitdiff
strace.spec: lower CentOS version requirement for pkgconfig(bluez)
authorEugene Syromyatnikov <evgsyr@gmail.com>
Thu, 29 Aug 2019 12:13:08 +0000 (14:13 +0200)
committerEugene Syromyatnikov <evgsyr@gmail.com>
Thu, 29 Aug 2019 23:04:05 +0000 (01:04 +0200)
bluez-libs-devel provides pkgconfig(bluez) and the actual headers both
in RHEL 6 and RHEL 7, so the version condition for enablement
of pkgconfig(bluez) in spec file can be lowered.  However, the package
in question is in the "optional" repository in RHEL, and there seems to be
no easy way to enable it in OBS (where this spec file is mainly used)
so only %centos check is actually changed for now.

* strace.spec.in: Change "0%{?centos} >= 8" to "0%{?centos} >= 6"
for "BuildRequires: pkgconfig(bluez)" enablement.

References: https://bugzilla.redhat.com/show_bug.cgi?id=1746885

strace.spec.in

index 5437bbd9b76321e9f1043159d03ad03cef2df9b9..d8302165e0dc5bd7bf31ffca40c1a5876796356c 100644 (file)
@@ -16,7 +16,7 @@ Source: https://strace.io/files/%{version}/strace-%{version}.tar.xz
 BuildRequires: gcc gzip
 
 # Install Bluetooth headers for AF_BLUETOOTH sockets decoding.
-%if 0%{?fedora} >= 18 || 0%{?centos} >= 8 || 0%{?rhel} >= 8 || 0%{?suse_version} >= 1200
+%if 0%{?fedora} >= 18 || 0%{?centos} >= 6 || 0%{?rhel} >= 8 || 0%{?suse_version} >= 1200
 BuildRequires: pkgconfig(bluez)
 %endif