diff --git a/fuse-exfat-1.2.1.tar.gz b/fuse-exfat-1.2.1.tar.gz deleted file mode 100644 index 7a0a8ba..0000000 --- a/fuse-exfat-1.2.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f444cd2849295b8de7fc61022fbf02f5bb1a84790c43f0c75ba3bf96f4619dd4 -size 134723 diff --git a/fuse-exfat-1.2.2.tar.gz b/fuse-exfat-1.2.2.tar.gz new file mode 100644 index 0000000..8112ae0 --- /dev/null +++ b/fuse-exfat-1.2.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93b4d10bd548db205b7c491c43cabf510e4817716460322f5f645739c54cdca +size 135181 diff --git a/fuse-exfat.changes b/fuse-exfat.changes index 5890847..2df2a04 100644 --- a/fuse-exfat.changes +++ b/fuse-exfat.changes @@ -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 diff --git a/fuse-exfat.spec b/fuse-exfat.spec index ad1d923..e2b1fbd 100644 --- a/fuse-exfat.spec +++ b/fuse-exfat.spec @@ -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 # # 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