Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Berteaud 2cb077f754 Automatic commit of package [seadrive-daemon] minor release [2.0.28-2].
Created by command:

/usr/bin/tito tag
2023-10-23 09:31:37 +02:00
Daniel Berteaud 1e86605b62 Only enable ws starting with EL9 2023-10-23 09:27:30 +02:00
2 changed files with 13 additions and 3 deletions

View File

@ -1 +1 @@
2.0.28-1 ./
2.0.28-2 ./

View File

@ -3,7 +3,7 @@
%global gh_name seadrive-fuse
Name: seadrive-daemon
Version: 2.0.28
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Daemon part of Seafile Drive client
License: GPLv3
@ -16,7 +16,9 @@ BuildRequires: gcc
BuildRequires: intltool
BuildRequires: libtool
BuildRequires: make
%if 0%{?rhel} >= 9
BuildRequires: libwebsockets-devel
%endif
BuildRequires: pkgconfig(fuse)
BuildRequires: pkgconfig(glib-2.0)
@ -58,7 +60,12 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%build
./autogen.sh
%configure --disable-static PYTHON=%{__python3}
%configure \
--disable-static \
%if 0%{?rhel} < 9
--disable-ws \
%endif
PYTHON=%{__python3}
%make_build
@ -73,6 +80,9 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%{python3_sitearch}/seadrive/
%changelog
* Mon Oct 23 2023 Daniel Berteaud <dbd@ehtrace.com> 2.0.28-2
- Only enable ws starting with EL9 (dbd@ehtrace.com)
* Mon Oct 23 2023 Daniel Berteaud <dbd@ehtrace.com> 2.0.28-1
- Update to 2.0.28 (dbd@ehtrace.com)