Accepting request 348388 from home:pluskalm:branches:filesystems
- Update to 1.2.2 * Improved reliability in case of a sudden unplug: FS will be in a clean state after closing all files and performing sync(1). * Fixed compilation on Debian GNU/kFreeBSD and GNU/Hurd platforms. * Updated mount.exfat-fuse man page. OBS-URL: https://build.opensuse.org/request/show/348388 OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse-exfat?expand=0&rev=3
This commit is contained in:
parent
f1d51324b5
commit
920b714fff
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f444cd2849295b8de7fc61022fbf02f5bb1a84790c43f0c75ba3bf96f4619dd4
|
|
||||||
size 134723
|
|
3
fuse-exfat-1.2.2.tar.gz
Normal file
3
fuse-exfat-1.2.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c93b4d10bd548db205b7c491c43cabf510e4817716460322f5f645739c54cdca
|
||||||
|
size 135181
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 11 12:27:44 UTC 2015 - mpluskal@suse.com
|
||||||
|
|
||||||
|
- Update to 1.2.2
|
||||||
|
* Improved reliability in case of a sudden unplug: FS will be in
|
||||||
|
a clean state after closing all files and performing sync(1).
|
||||||
|
* Fixed compilation on Debian GNU/kFreeBSD and GNU/Hurd
|
||||||
|
platforms.
|
||||||
|
* Updated mount.exfat-fuse man page.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 2 14:18:30 UTC 2015 - malcolmlewis@opensuse.org
|
Fri Oct 2 14:18:30 UTC 2015 - malcolmlewis@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package fuse-exfat
|
# spec file for package fuse-exfat
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2013 Sidlovsky, Yaroslav <zawertun@gmail.com>
|
# Copyright (c) 2013 Sidlovsky, Yaroslav <zawertun@gmail.com>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: fuse-exfat
|
Name: fuse-exfat
|
||||||
Version: 1.2.1
|
Version: 1.2.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Free exFAT file system implementation
|
Summary: Free exFAT file system implementation
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
@ -28,6 +28,7 @@ Source0: https://github.com/relan/exfat/releases/download/v%{version}/%{n
|
|||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: fuse-devel >= 2.6
|
BuildRequires: fuse-devel >= 2.6
|
||||||
|
BuildRequires: libtool
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
Requires: fuse >= 2.6
|
Requires: fuse >= 2.6
|
||||||
Recommends: exfat-utils
|
Recommends: exfat-utils
|
||||||
@ -45,28 +46,28 @@ for SDXC memory cards.
|
|||||||
%build
|
%build
|
||||||
# force installation of manual pages
|
# force installation of manual pages
|
||||||
sed -i -e 's/no-installman//' configure.ac
|
sed -i -e 's/no-installman//' configure.ac
|
||||||
autoreconf -vfi
|
autoreconf -fiv
|
||||||
%configure
|
%configure
|
||||||
make V=1 %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install install
|
%make_install install
|
||||||
|
|
||||||
%post
|
%post
|
||||||
if ! grep -q -e '^exfat$' /etc/filesystems ; then
|
if ! grep -q -e '^exfat$' %{_sysconfdir}/filesystems ; then
|
||||||
sed -i 's/*/exfat\n*/g' /etc/filesystems
|
sed -i 's/*/exfat\n*/g' %{_sysconfdir}/filesystems
|
||||||
echo "Added 'exfat' to the file /etc/filesystems"
|
echo "Added 'exfat' to the file %{_sysconfdir}/filesystems"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! grep -q exfat_fuse /etc/filesystems ; then
|
if ! grep -q exfat_fuse %{_sysconfdir}/filesystems ; then
|
||||||
sed -i 's/*/exfat_fuse\n*/g' /etc/filesystems
|
sed -i 's/*/exfat_fuse\n*/g' %{_sysconfdir}/filesystems
|
||||||
echo "Added 'exfat_fuse' to the file /etc/filesystems"
|
echo "Added 'exfat_fuse' to the file %{_sysconfdir}/filesystems"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
if [ "$1" == "0" ]; then
|
if [ "$1" == "0" ]; then
|
||||||
sed -i -e '/exfat_fuse/d' -e '/^exfat$/d' /etc/filesystems
|
sed -i -e '/exfat_fuse/d' -e '/^exfat$/d' %{_sysconfdir}/filesystems
|
||||||
echo "Deleted 'exfat' and 'exfat_fuse' from the file /etc/filesystems"
|
echo "Deleted 'exfat' and 'exfat_fuse' from the file %{_sysconfdir}/filesystems"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
Loading…
Reference in New Issue
Block a user