98f44a
%global fuse2ver 2.9.7
98f44a
%global fuse2sver 2
408dce
%global fuse3ver 3.3.0
98f44a
98f44a
Name:		fuse
98f44a
Version:	%{fuse2ver}
f3781e
Release:	16%{?dist}
98f44a
Summary:	File System in Userspace (FUSE) v2 utilities
98f44a
License:	GPL+
98f44a
URL:		http://fuse.sf.net
98f44a
#fuse2 sources
98f44a
Source0:	https://github.com/libfuse/libfuse/archive/%{name}-%{fuse2ver}.tar.gz
98f44a
#fuse3 sources
98f44a
Source1:	https://github.com/libfuse/libfuse/archive/%{name}-%{fuse3ver}.tar.gz
98f44a
Source2:	%{name}.conf
98f44a
98f44a
Patch1:		fuse-3.0.0-More-parentheses.patch
98f44a
Patch2:		fuse-0001-More-parentheses.patch
98f44a
# https://bugzilla.redhat.com/show_bug.cgi?id=970768
98f44a
Patch3:		fuse-2.9.2-namespace-conflict-fix.patch
98f44a
Patch4:		fuse-3.2.1-no-dev.patch
98f44a
Patch5:		fusermount-don-t-feed-escaped-commas-into-mount-opti.patch
98f44a
Patch6:		buffer_size.patch
408dce
Patch7:		fuse-3.10.4-fix-test-failure.patch
f3781e
Patch8:		0001-Synchronize-fuse_kernel.h.patch
f3781e
Patch9:		0002-fuse_lowlevel-Add-max_pages-support-384.patch
f3781e
Patch10:	0003-Allow-caching-symlinks-in-kernel-page-cache.-551.patch
f3781e
Patch11:	0004-Add-support-for-in-kernel-readdir-caching.patch
98f44a
98f44a
Requires:	which
98f44a
Conflicts:	filesystem < 3
98f44a
BuildRequires:	libselinux-devel
98f44a
BuildRequires:	autoconf, automake, libtool, gettext-devel
98f44a
BuildRequires:	meson, ninja-build, systemd-udev
98f44a
Requires:	fuse-common = %{fuse3ver}
98f44a
98f44a
%description
98f44a
With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains the FUSE v2 userspace tools to
98f44a
mount a FUSE filesystem.
98f44a
98f44a
%package -n fuse3
98f44a
Version:	%{fuse3ver}
98f44a
Summary:	File System in Userspace (FUSE) v3 utilitie
98f44a
Requires:	fuse-common = %{fuse3ver}
408dce
Requires:	fuse3-libs = %{fuse3ver}-%{release}
98f44a
98f44a
%description -n fuse3
98f44a
With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains the FUSE v3 userspace tools to
98f44a
mount a FUSE filesystem.
98f44a
98f44a
%package libs
98f44a
Version:	%{fuse2ver}
98f44a
Summary:	File System in Userspace (FUSE) v2 libraries
98f44a
Group:		System Environment/Libraries
98f44a
License:	LGPLv2+
98f44a
Conflicts:	filesystem < 3
98f44a
98f44a
%description libs
98f44a
Devel With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains the FUSE v2 libraries.
98f44a
98f44a
%package -n fuse3-libs
98f44a
Version:	%{fuse3ver}
98f44a
Summary:	File System in Userspace (FUSE) v3 libraries
98f44a
Group:		System Environment/Libraries
98f44a
License:	LGPLv2+
98f44a
Conflicts:	filesystem < 3
98f44a
98f44a
%description -n fuse3-libs
98f44a
Devel With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains the FUSE v3 libraries.
98f44a
98f44a
%package devel
98f44a
Version:	%{fuse2ver}
98f44a
Summary:	File System in Userspace (FUSE) v2 devel files
98f44a
Group:		Development/Libraries
98f44a
Requires:	%{name}-libs = %{fuse2ver}-%{release}
98f44a
Requires:	pkgconfig
98f44a
License:	LGPLv2+
98f44a
Conflicts:	filesystem < 3
98f44a
98f44a
%description devel
98f44a
With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains development files (headers,
98f44a
pgk-config) to develop FUSE v2 based applications/filesystems.
98f44a
98f44a
%package -n fuse3-devel
98f44a
Version:	%{fuse3ver}
98f44a
Summary:	File System in Userspace (FUSE) v3 devel files
98f44a
Group:		Development/Libraries
98f44a
Requires:	%{name}3-libs = %{fuse3ver}-%{release}
98f44a
Requires:	pkgconfig
98f44a
License:	LGPLv2+
98f44a
Conflicts:	filesystem < 3
98f44a
98f44a
%description -n fuse3-devel
98f44a
With FUSE it is possible to implement a fully functional filesystem in a
98f44a
userspace program. This package contains development files (headers,
98f44a
pgk-config) to develop FUSE v3 based applications/filesystems.
98f44a
98f44a
%package common
98f44a
Version:	%{fuse3ver}
98f44a
Summary:	Common files for File System in Userspace (FUSE) v2 and v3
98f44a
License:	GPL+
98f44a
98f44a
%description common
98f44a
Common files for FUSE v2 and FUSE v3.
98f44a
98f44a
%prep
98f44a
%setup -q -T -c -n fuse2and3 -a0 -a1 
98f44a
98f44a
# fuse 3
98f44a
pushd lib%{name}-%{name}-%{fuse3ver}
98f44a
%patch1 -p1 -b .add_parentheses
98f44a
%patch4 -p1 -b .nodev
408dce
%patch7 -p1 -b .test_fail
f3781e
%patch8 -p1
f3781e
%patch9 -p1
f3781e
%patch10 -p1
f3781e
%patch11 -p1
f3781e
98f44a
popd
98f44a
98f44a
# fuse 2
98f44a
pushd lib%{name}-%{name}-%{fuse2ver}
98f44a
./makeconf.sh
98f44a
#disable device creation during build/install
98f44a
sed -i 's|mknod|echo Disabled: mknod |g' util/Makefile.in
98f44a
%patch2 -p1 -b .add_parentheses
98f44a
%patch3 -p1 -b .conflictfix
98f44a
%patch5 -p1 -b .escaped_commas
98f44a
%patch6 -p1 -b .buffer_size
98f44a
popd
98f44a
98f44a
%build
98f44a
# fuse 3
98f44a
pushd lib%{name}-%{name}-%{fuse3ver}
98f44a
%meson
98f44a
%meson_build
98f44a
%if 0
98f44a
# Can't pass --disable-static here, or else the utils don't build
98f44a
export MOUNT_FUSE_PATH="%{_sbindir}"
98f44a
CFLAGS="%{optflags} -D_GNU_SOURCE" %configure
98f44a
make %{?_smp_mflags} V=1
98f44a
%endif
98f44a
popd
98f44a
98f44a
# fuse 2
98f44a
pushd lib%{name}-%{name}-%{fuse2ver}
98f44a
# Can't pass --disable-static here, or else the utils don't build
98f44a
export MOUNT_FUSE_PATH="%{_sbindir}"
98f44a
CFLAGS="%{optflags} -D_GNU_SOURCE" %configure
98f44a
make %{?_smp_mflags}
98f44a
popd
98f44a
98f44a
%install
98f44a
# fuse 3
98f44a
pushd lib%{name}-%{name}-%{fuse3ver}
98f44a
export MESON_INSTALL_DESTDIR_PREFIX=%{buildroot}/usr %meson_install
98f44a
popd
98f44a
find %{buildroot} .
98f44a
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
98f44a
# change from 4755 to 0755 to allow stripping -- fixed later in files
98f44a
chmod 0755 %{buildroot}/%{_bindir}/fusermount3
98f44a
98f44a
# fuse 2
98f44a
pushd lib%{name}-%{name}-%{fuse2ver}
98f44a
install -m 0755 lib/.libs/libfuse.so.%{fuse2ver} %{buildroot}/%{_libdir}
98f44a
install -m 0755 lib/.libs/libulockmgr.so.1.0.1 %{buildroot}/%{_libdir}
98f44a
install -p fuse.pc %{buildroot}/%{_libdir}/pkgconfig/
98f44a
install -m 0755 util/fusermount %{buildroot}/%{_bindir}
98f44a
install -m 0755 util/mount.fuse %{buildroot}/%{_sbindir}
98f44a
install -m 0755 util/ulockmgr_server %{buildroot}/%{_bindir}
98f44a
mkdir -p %{buildroot}/%{_includedir}/fuse
98f44a
install -p include/old/fuse.h %{buildroot}/%{_includedir}/
98f44a
install -p include/ulockmgr.h %{buildroot}/%{_includedir}/
98f44a
for i in cuse_lowlevel.h fuse_common_compat.h fuse_common.h fuse_compat.h fuse.h fuse_lowlevel_compat.h fuse_lowlevel.h fuse_opt.h; do
98f44a
	install -p include/$i %{buildroot}/%{_includedir}/fuse/
98f44a
done
98f44a
popd
98f44a
pushd %{buildroot}/%{_libdir}
98f44a
ln -s libfuse.so.%{fuse2ver} libfuse.so.%{fuse2sver}
98f44a
ln -s libfuse.so.%{fuse2ver} libfuse.so
98f44a
ln -s libulockmgr.so.1.0.1 libulockmgr.so.1
98f44a
ln -s libulockmgr.so.1.0.1 libulockmgr.so
98f44a
popd
408dce
pushd %{buildroot}/%{_mandir}/man8
408dce
ln -s mount.fuse3.8 mount.fuse.8
408dce
popd
98f44a
98f44a
# Get rid of static libs
98f44a
rm -f %{buildroot}/%{_libdir}/*.a
98f44a
# No need to create init-script
98f44a
rm -f %{buildroot}%{_sysconfdir}/init.d/fuse3
98f44a
98f44a
# Install config-file
98f44a
install -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}
98f44a
98f44a
# Delete pointless udev rules, which do not belong in /etc (brc#748204)
98f44a
rm -f %{buildroot}/usr/lib/udev/rules.d/99-fuse3.rules
98f44a
98f44a
%post libs -p /sbin/ldconfig
98f44a
98f44a
%post -n fuse3-libs -p /sbin/ldconfig
98f44a
98f44a
%postun libs -p /sbin/ldconfig
98f44a
98f44a
%postun -n fuse3-libs -p /sbin/ldconfig
98f44a
98f44a
%files
98f44a
%license libfuse-fuse-%{fuse2ver}/COPYING
98f44a
%doc libfuse-fuse-%{fuse2ver}/AUTHORS libfuse-fuse-%{fuse2ver}/ChangeLog libfuse-fuse-%{fuse2ver}/NEWS libfuse-fuse-%{fuse2ver}/README.md libfuse-fuse-%{fuse2ver}/README.NFS
98f44a
%{_sbindir}/mount.fuse
98f44a
%attr(4755,root,root) %{_bindir}/fusermount
98f44a
%{_bindir}/ulockmgr_server
98f44a
98f44a
%files -n fuse3
408dce
%license libfuse-fuse-%{fuse3ver}/GPL2.txt libfuse-fuse-%{fuse3ver}/LICENSE
408dce
98f44a
%doc libfuse-fuse-%{fuse3ver}/AUTHORS libfuse-fuse-%{fuse3ver}/ChangeLog.rst libfuse-fuse-%{fuse3ver}/README.md
98f44a
%{_sbindir}/mount.fuse3
98f44a
%attr(4755,root,root) %{_bindir}/fusermount3
98f44a
98f44a
%files common
98f44a
%config(noreplace) %{_sysconfdir}/%{name}.conf
98f44a
%{_mandir}/man1/*
98f44a
%{_mandir}/man8/*
98f44a
98f44a
%files libs
98f44a
%license libfuse-fuse-%{fuse2ver}/COPYING.LIB
98f44a
%{_libdir}/libfuse.so.*
98f44a
%{_libdir}/libulockmgr.so.*
98f44a
98f44a
%files -n fuse3-libs
408dce
%license libfuse-fuse-%{fuse3ver}/LGPL2.txt
98f44a
%{_libdir}/libfuse3.so.*
98f44a
98f44a
%files devel
98f44a
%{_libdir}/libfuse.so
98f44a
%{_libdir}/libulockmgr.so
98f44a
%{_libdir}/pkgconfig/fuse.pc
98f44a
%{_includedir}/fuse.h
98f44a
%{_includedir}/ulockmgr.h
98f44a
%{_includedir}/fuse
98f44a
98f44a
%files -n fuse3-devel
98f44a
%{_libdir}/libfuse3.so
98f44a
%{_libdir}/pkgconfig/fuse3.pc
98f44a
%{_includedir}/fuse3/
98f44a
98f44a
%changelog
f3781e
* Mon May 30 2022 Pavel Reichl <preichl@redhat.com> - 2.9.7-16
f3781e
- Back-port max_pages support,
f3781e
- caching symlinks in kernel page cache,
f3781e
- and in-kernel readdir caching
f3781e
- Fixed rhbz#2080000
f3781e
408dce
* Wed Feb 23 2022 Pavel Reichl <preichl@redhat.com> - 2.9.7-15
408dce
- Fix missing dependency of fuse3 on fuse3-libs
408dce
- Make symlink for mount.fuse to mount.fuse3
408dce
408dce
* Mon Feb 07 2022 Pavel Reichl <preichl@redhat.com> - 2.9.7-14
408dce
- Fix failing test for fuse-3
408dce
408dce
* Mon Jan 31 2022 Pavel Reichl <preichl@redhat.com> - 2.9.7-13
408dce
- update to 3.3.0
408dce
- patch #5 is part of fuse-3 upstream now
408dce
98f44a
* Thu Nov 08 2018 Miklos Szeredi <mszeredi@redhat.com> - 2.9.7-12
98f44a
- Fixed CVE-2018-10906 (rhbz#1607855)
98f44a
- Fix regression from RHEL7 (rhbz#1648280)
98f44a
98f44a
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.7-11
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
98f44a
98f44a
* Thu Nov 16 2017 Tom Callaway <spot@fedoraproject.org> 2.9.7-10
98f44a
- update fuse3 to 3.2.1
98f44a
98f44a
* Mon Aug  7 2017 Tom Callaway <spot@fedoraproject.org> 2.9.7-9
98f44a
- update fuse3 to 3.1.1
98f44a
98f44a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.7-8
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
98f44a
98f44a
* Fri Jul 28 2017 Tom Callaway <spot@fedoraproject.org> - 2.9.7-7
98f44a
- use -D_FILE_OFFSET_BITS=64 to force off_t to be 64bit on 32bit arches
98f44a
98f44a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.7-6
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
98f44a
98f44a
* Mon Jul 17 2017 Tom Callaway <spot@fedoraproject.org> - 3.1.0-5
98f44a
- update to 3.1.0
98f44a
98f44a
* Thu Jun  1 2017 Tom Callaway <spot@fedoraproject.org> - 3.0.2-4
98f44a
- update to 3.0.2
98f44a
98f44a
* Sun Mar 26 2017 Tom Callaway <spot@fedoraproject.org> - 3.0.0-3
98f44a
- update release to 3 to make clean upgrade
98f44a
98f44a
* Tue Mar 21 2017 Tom Callaway <spot@fedoraproject.org> - 3.0.0-1
98f44a
- update to 3.0.0
98f44a
- split out fuse3 packages
98f44a
98f44a
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.7-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
98f44a
98f44a
* Wed Jul  6 2016 Tom Callaway <spot@fedoraproject.org> - 2.9.7-1
98f44a
- update to 2.9.7
98f44a
98f44a
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-4
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
98f44a
98f44a
* Thu Oct 08 2015 Adam Williamson <awilliam@redhat.com> - 2.9.4-3
98f44a
- backport patch allowing setting SELinux context on FUSE mounts
98f44a
98f44a
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.4-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
98f44a
98f44a
* Fri May 22 2015 Tom Callaway <spot@fedoraproject.org> 2.9.4-1
98f44a
- update to 2.9.4
98f44a
- fixes CVE-2015-3202
98f44a
98f44a
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-4
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
98f44a
98f44a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-3
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
98f44a
98f44a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
98f44a
98f44a
* Sat Jul  6 2013 Tom Callaway <spot@fedoraproject.org> - 2.9.3-1
98f44a
- update to 2.9.3
98f44a
98f44a
* Wed Jun 26 2013 Tom Callaway <spot@fedoraproject.org> - 2.9.2-4
98f44a
- add fix for namespace conflict in fuse_kernel.h
98f44a
98f44a
* Sat May 18 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.9.2-3
98f44a
- Removed pre-F12 stuff
98f44a
- Dropped ancient dependency on initscripts and chkconfig
98f44a
98f44a
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.2-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
98f44a
98f44a
* Thu Dec 06 2012 Adam Jackson <ajax@redhat.com>
98f44a
- Remove ancient Requires: kernel >= 2.6.14, FC6 was 2.6.18.
98f44a
98f44a
* Tue Oct 23 2012 Tom Callaway <spot@fedoraproject.org> - 2.9.2-1
98f44a
- update to 2.9.2
98f44a
98f44a
* Tue Aug 28 2012 Tom Callaway <spot@fedoraproject.org> - 2.9.1-1
98f44a
- update to 2.9.1
98f44a
98f44a
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
98f44a
98f44a
* Mon Apr 16 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.8.7-1
98f44a
- Ver. 2.8.7
98f44a
98f44a
* Sun Apr 15 2012 Kay Sievers <kay@redhat.com> - 2.8.6-4
98f44a
- remove needless udev rule
98f44a
98f44a
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 2.8.6-3
98f44a
- install everything in /usr
98f44a
  https://fedoraproject.org/wiki/Features/UsrMove
98f44a
98f44a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.6-2
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
98f44a
98f44a
* Thu Sep 22 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.8.6-1
98f44a
- Ver. 2.8.6
98f44a
- Dropped patch 3 - fixed upstream
98f44a
98f44a
* Thu Mar 03 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.8.5-5
98f44a
- Use noreplace for /etc/fuse.conf
98f44a
98f44a
* Tue Feb 15 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.8.5-4
98f44a
- Provide /etc/fuse.conf (see rhbz #292811)
98f44a
98f44a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.5-3
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
98f44a
98f44a
* Wed Oct 27 2010 Peter Lemenkov <lemenkov@gmail.com> 2.8.5-2
98f44a
- Fixed rhbz #622255
98f44a
98f44a
* Tue Oct 26 2010 Peter Lemenkov <lemenkov@gmail.com> 2.8.5-1
98f44a
- Ver. 2.8.5
98f44a
98f44a
* Tue Jun  8 2010 Peter Lemenkov <lemenkov@gmail.com> 2.8.4-1
98f44a
- Ver. 2.8.4
98f44a
- CVE-2009-3297 patch dropped (merged upstream)
98f44a
98f44a
* Tue Jan 26 2010 Peter Lemenkov <lemenkov@gmail.com> 2.8.1-4
98f44a
- Fixed CVE-2009-3297 (rhbz #558833)
98f44a
98f44a
* Thu Nov 19 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.1-3
98f44a
- Fixed udev rules (bz# 538606)
98f44a
98f44a
* Thu Nov 19 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.1-2
98f44a
- Removed support for MAKEDEV (bz# 511220)
98f44a
98f44a
* Thu Sep 17 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.1-1
98f44a
- Ver. 2.8.1
98f44a
98f44a
* Wed Aug 19 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.0-1
98f44a
- Ver. 2.8.0
98f44a
98f44a
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.4-4
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
98f44a
98f44a
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.4-3
98f44a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
98f44a
98f44a
* Wed Jan 28 2009 Peter Lemenkov <lemenkov@gmail.com> 2.7.4-2
98f44a
- Fixed BZ#479581
98f44a
98f44a
* Sat Aug 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.4-1
98f44a
- Ver. 2.7.4
98f44a
98f44a
* Sat Jul 12 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-3
98f44a
- Fixed initscripts (BZ#441284)
98f44a
98f44a
* Thu Feb 28 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-2
98f44a
- Fixed BZ#434881
98f44a
98f44a
* Wed Feb 20 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-1
98f44a
- Ver. 2.7.3
98f44a
- Removed usergroup fuse
98f44a
- Added chkconfig support (BZ#228088)
98f44a
98f44a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.7.2-2
98f44a
- Autorebuild for GCC 4.3
98f44a
98f44a
* Mon Jan 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.2-1
98f44a
- bump to 2.7.2
98f44a
- fix license tag
98f44a
98f44a
* Sun Nov  4 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-9
98f44a
- fix initscript to work with chkconfig
98f44a
98f44a
* Mon Oct  1 2007 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-8
98f44a
- Added Require: which (BZ#312511)
98f44a
98f44a
* Fri Sep 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-7
98f44a
- revert udev rules change
98f44a
98f44a
* Thu Sep 20 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-6
98f44a
- change udev rules so that /dev/fuse is chmod 666 (bz 298651)
98f44a
98f44a
* Wed Aug 29 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-5
98f44a
- fix open issue (bz 265321)
98f44a
98f44a
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.0-4
98f44a
- Rebuild for selinux ppc32 issue.
98f44a
98f44a
* Sun Jul 22 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-3
98f44a
- put pkgconfig file in correct place
98f44a
- enable compat symlinks for files in /bin
98f44a
98f44a
* Sat Jul 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-2
98f44a
- redefine exec_prefix to /
98f44a
- redefine bindir to /bin
98f44a
- redefine libdir to %%{_lib}
98f44a
- don't pass --disable-static to configure
98f44a
- manually rm generated static libs
98f44a
98f44a
* Wed Jul 18 2007 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-1
98f44a
- Version 2.7.0
98f44a
- Redefined exec_prefix due to demands from NTFS-3G
98f44a
98f44a
* Wed Jun  6 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.5-2
98f44a
- Add BR libselinux-devel (bug #235145)
98f44a
- Config files properly marked as config (bug #211122)
98f44a
98f44a
* Sat May 12 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.5-1
98f44a
- Version 2.6.5
98f44a
98f44a
* Thu Feb 22 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.3-2
98f44a
- Fixed bug #229642
98f44a
98f44a
* Wed Feb  7 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.3-1
98f44a
* Ver. 2.6.3
98f44a
98f44a
* Tue Dec 26 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.1-1
98f44a
- Ver. 2.6.1
98f44a
98f44a
* Sat Nov 25 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-2
98f44a
- fixed nasty typo (see bug #217075)
98f44a
98f44a
* Fri Nov  3 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-1
98f44a
- Ver. 2.6.0
98f44a
98f44a
* Sun Oct 29 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-5
98f44a
- Fixed udev-rule again
98f44a
98f44a
* Sat Oct  7 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-4
98f44a
- Fixed udev-rule
98f44a
98f44a
* Tue Sep 12 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-3%{?dist}
98f44a
- Rebuild for FC6
98f44a
98f44a
* Wed May 03 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.3-1%{?dist}
98f44a
- Update to 2.5.3
98f44a
98f44a
* Thu Mar 30 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.2-4%{?dist}
98f44a
- rebuild
98f44a
98f44a
* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-3
98f44a
- Proper udev rule
98f44a
98f44a
* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-2
98f44a
- Added missing requires
98f44a
98f44a
* Tue Feb 07 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-1
98f44a
- Update to 2.5.2
98f44a
- Dropped fuse-mount.fuse.patch
98f44a
98f44a
* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
98f44a
- Use dist
98f44a
98f44a
* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
98f44a
- Update to 2.4.2 (solves CVE-2005-3531)
98f44a
- Update README.fedora
98f44a
98f44a
* Sat Nov 12 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-3
98f44a
- Add README.fedora
98f44a
- Add hint to README.fedora and that you have to be member of the group "fuse"
98f44a
  in the description
98f44a
- Use groupadd instead of fedora-groupadd
98f44a
98f44a
* Fri Nov 04 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-2
98f44a
- Rename packages a bit
98f44a
- use makedev.d/40-fuse.nodes
98f44a
- fix /sbin/mount.fuse
98f44a
- Use a fuse group to restict access to fuse-filesystems
98f44a
98f44a
* Fri Oct 28 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-1
98f44a
- Initial RPM release.