|
|
@ -2,22 +2,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: fuse-sshfs
|
|
|
|
Name: fuse-sshfs
|
|
|
|
Version: 2.10
|
|
|
|
Version: 3.4.0
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: FUSE-Filesystem to access remote filesystems via SSH
|
|
|
|
Summary: FUSE-Filesystem to access remote filesystems via SSH
|
|
|
|
License: GPLv2
|
|
|
|
License: GPLv2
|
|
|
|
URL: https://github.com/libfuse/sshfs
|
|
|
|
URL: https://github.com/libfuse/sshfs
|
|
|
|
Source0: https://github.com/libfuse/sshfs/releases/download/sshfs-%{version}/sshfs-%{version}.tar.gz
|
|
|
|
Source0: https://github.com/libfuse/sshfs/releases/download/sshfs-%{version}/sshfs-%{version}.tar.xz
|
|
|
|
Source1: https://github.com/libfuse/sshfs/releases/download/sshfs-%{version}/sshfs-%{version}.tar.gz.asc
|
|
|
|
Source1: https://github.com/libfuse/sshfs/releases/download/sshfs-%{version}/sshfs-%{version}.tar.xz.asc
|
|
|
|
|
|
|
|
|
|
|
|
Provides: sshfs = %{version}-%{release}
|
|
|
|
Provides: sshfs = %{version}-%{release}
|
|
|
|
Requires: fuse >= 2.2
|
|
|
|
Requires: fuse3 >= 3.1.0
|
|
|
|
Requires: openssh-clients
|
|
|
|
Requires: openssh-clients
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: fuse-devel >= 2.2
|
|
|
|
BuildRequires: meson
|
|
|
|
|
|
|
|
BuildRequires: fuse3-devel >= 3.1.0
|
|
|
|
BuildRequires: glib2-devel >= 2.0
|
|
|
|
BuildRequires: glib2-devel >= 2.0
|
|
|
|
BuildRequires: openssh-clients
|
|
|
|
BuildRequires: openssh-clients
|
|
|
|
|
|
|
|
# for man page
|
|
|
|
|
|
|
|
BuildRequires: python3-docutils
|
|
|
|
|
|
|
|
# for tests
|
|
|
|
|
|
|
|
BuildRequires: fuse3
|
|
|
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
@ -29,25 +35,37 @@ mounting the filesystem is as easy as logging into the server with ssh.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n sshfs-%{version}
|
|
|
|
%setup -q -n sshfs-%{version}
|
|
|
|
|
|
|
|
# fix tests
|
|
|
|
|
|
|
|
sed -i "s/'fusermount/'fusermount3/g" test/util.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
%meson
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%meson_build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
%meson_install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
cd %{_vpath_builddir}
|
|
|
|
|
|
|
|
python3 -m pytest test/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
%doc AUTHORS
|
|
|
|
%doc AUTHORS README.rst ChangeLog.rst
|
|
|
|
%license COPYING
|
|
|
|
%license COPYING
|
|
|
|
%{_bindir}/sshfs
|
|
|
|
%{_bindir}/sshfs
|
|
|
|
|
|
|
|
%{_sbindir}/mount.sshfs
|
|
|
|
|
|
|
|
%{_sbindir}/mount.fuse.sshfs
|
|
|
|
%{_mandir}/man1/sshfs.1.gz
|
|
|
|
%{_mandir}/man1/sshfs.1.gz
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Sat Aug 18 2018 Michael Cronenworth <mike@cchtml.com> - 3.4.0-1
|
|
|
|
|
|
|
|
- Ver. 3.4.0
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Aug 15 2018 Michael Cronenworth <mike@cchtml.com> - 2.10-1
|
|
|
|
* Wed Aug 15 2018 Michael Cronenworth <mike@cchtml.com> - 2.10-1
|
|
|
|
- Ver. 2.10 - last 2.x release
|
|
|
|
- Ver. 2.10 - last 2.x release
|
|
|
|
|
|
|
|
|
|
|
|