summaryrefslogtreecommitdiff
path: root/freefilesync
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-10-09 17:30:27 -0400
committerB Stack <bgstack15@gmail.com>2019-10-09 17:30:27 -0400
commit104b190970e7084cb0bc65adeebac2bb2bf7e64c (patch)
tree6fd30cdd3f98d62cb49f51da7ce9c7d2f16d33c2 /freefilesync
parentWIP: libssh2 again (diff)
downloadstackrpms-104b190970e7084cb0bc65adeebac2bb2bf7e64c.tar.gz
stackrpms-104b190970e7084cb0bc65adeebac2bb2bf7e64c.tar.bz2
stackrpms-104b190970e7084cb0bc65adeebac2bb2bf7e64c.zip
WIP: ffs for el8 rc1
Diffstat (limited to 'freefilesync')
-rw-r--r--freefilesync/freefilesync.spec13
1 files changed, 10 insertions, 3 deletions
diff --git a/freefilesync/freefilesync.spec b/freefilesync/freefilesync.spec
index 7ccfb22..7b7cc80 100644
--- a/freefilesync/freefilesync.spec
+++ b/freefilesync/freefilesync.spec
@@ -13,9 +13,13 @@
%define min_libssh2 >= 1.8.0
%define min_openssl >= 1.1.1c
%endif
+%define libssh2_name libssh2
+%if 0%{?rhel} >= 8
+%define libssh2_name libssh2-%{name}
+%endif
Name: freefilesync
Version: 10.16
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A file synchronization utility
Group: Applications/File
@@ -42,7 +46,7 @@ BuildRequires: desktop-file-utils
BuildRequires: gcc-c++
BuildRequires: ImageMagick
BuildRequires: libcurl-devel %{min_libcurl}
-BuildRequires: libssh2-devel %{min_libssh2}
+BuildRequires: %{libssh2_name}-devel %{min_libssh2}
BuildRequires: patch
BuildRequires: pkgconfig(gtk+-2.0)
BuildRequires: pkgconfig(libselinux)
@@ -52,7 +56,7 @@ BuildRequires: wxGTK-devel
BuildRequires: %{scl_buildreq}
BuildRequires: openssl-%{name}-devel %{min_openssl}
Requires: libcurl %{min_libcurl}
-Requires: libssh2 %{min_libssh2}
+Requires: %{libssh2_name} %{min_libssh2}
Requires: openssl-%{name}-libs %{min_openssl}
%else
BuildRequires: openssl-devel
@@ -190,6 +194,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%ghost %config %attr(666, -, -) %{_datadir}/%{name}/GlobalSettings.xml
%changelog
+* Wed Oct 09 2019 B Stack <bgstack15@gmail.com> - 10.16-2
+- include support for el8
+
* Tue Sep 17 2019 B Stack <bgstack15@gmail.com> - 10.16-1
- version bump
bgstack15