SHA256
1
0
forked from pool/fuse-exfat

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:
David Sterba 2015-12-11 14:03:44 +00:00 committed by Git OBS Bridge
parent 3e8bf2eb10
commit 96166e714a
4 changed files with 26 additions and 15 deletions

View File

@ -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
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c93b4d10bd548db205b7c491c43cabf510e4817716460322f5f645739c54cdca
size 135181

View File

@ -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

View File

@ -1,7 +1,7 @@
#
# 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>
#
# All modifications and additions to the file contributed by third parties
@ -18,7 +18,7 @@
Name: fuse-exfat
Version: 1.2.1
Version: 1.2.2
Release: 0
Summary: Free exFAT file system implementation
License: GPL-2.0+
@ -28,6 +28,7 @@ Source0: https://github.com/relan/exfat/releases/download/v%{version}/%{n
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: fuse-devel >= 2.6
BuildRequires: libtool
BuildRequires: pkg-config
Requires: fuse >= 2.6
Recommends: exfat-utils
@ -45,28 +46,28 @@ for SDXC memory cards.
%build
# force installation of manual pages
sed -i -e 's/no-installman//' configure.ac
autoreconf -vfi
autoreconf -fiv
%configure
make V=1 %{?_smp_mflags}
make %{?_smp_mflags}
%install
%make_install install
%post
if ! grep -q -e '^exfat$' /etc/filesystems ; then
sed -i 's/*/exfat\n*/g' /etc/filesystems
echo "Added 'exfat' to the file /etc/filesystems"
if ! grep -q -e '^exfat$' %{_sysconfdir}/filesystems ; then
sed -i 's/*/exfat\n*/g' %{_sysconfdir}/filesystems
echo "Added 'exfat' to the file %{_sysconfdir}/filesystems"
fi
if ! grep -q exfat_fuse /etc/filesystems ; then
sed -i 's/*/exfat_fuse\n*/g' /etc/filesystems
echo "Added 'exfat_fuse' to the file /etc/filesystems"
if ! grep -q exfat_fuse %{_sysconfdir}/filesystems ; then
sed -i 's/*/exfat_fuse\n*/g' %{_sysconfdir}/filesystems
echo "Added 'exfat_fuse' to the file %{_sysconfdir}/filesystems"
fi
%postun
if [ "$1" == "0" ]; then
sed -i -e '/exfat_fuse/d' -e '/^exfat$/d' /etc/filesystems
echo "Deleted 'exfat' and 'exfat_fuse' from the file /etc/filesystems"
sed -i -e '/exfat_fuse/d' -e '/^exfat$/d' %{_sysconfdir}/filesystems
echo "Deleted 'exfat' and 'exfat_fuse' from the file %{_sysconfdir}/filesystems"
fi
%files